blob: 01d65c5dd0e22e3a354ac3a51e9478ff1797dc88 [file] [log] [blame]
dtucker@openbsd.org56965122019-04-18 07:32:56 +00001/* $OpenBSD: packet.c,v 1.284 2019/04/18 07:32:57 dtucker Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11004 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * This file contains code implementing the packet protocol and communication
7 * with the other side. This same code is used both on client and server side.
Damien Miller33b13562000-04-04 14:38:59 +10008 *
Damien Millere4340be2000-09-16 13:29:08 +11009 * As far as I am concerned, the code I have written for this software
10 * can be used freely for any purpose. Any derived versions of this
11 * software must be clearly marked as such, and if the derived work is
12 * incompatible with the protocol description in the RFC file, it must be
13 * called by a name other than "ssh" or "Secure Shell".
Damien Miller33b13562000-04-04 14:38:59 +100014 *
Damien Millere4340be2000-09-16 13:29:08 +110015 *
16 * SSH2 packet format added by Markus Friedl.
Ben Lindstrom44697232001-07-04 03:32:30 +000017 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110018 *
19 * Redistribution and use in source and binary forms, with or without
20 * modification, are permitted provided that the following conditions
21 * are met:
22 * 1. Redistributions of source code must retain the above copyright
23 * notice, this list of conditions and the following disclaimer.
24 * 2. Redistributions in binary form must reproduce the above copyright
25 * notice, this list of conditions and the following disclaimer in the
26 * documentation and/or other materials provided with the distribution.
27 *
28 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
29 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
30 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
31 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
32 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
33 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
34 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
35 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
36 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
37 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110038 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100039
40#include "includes.h"
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +000041
Damien Millere3b60b52006-07-10 21:08:03 +100042#include <sys/types.h>
Damien Millera0898b82003-04-09 21:05:52 +100043#include "openbsd-compat/sys-queue.h"
Damien Miller8ec8c3e2006-07-10 20:35:38 +100044#include <sys/socket.h>
Damien Miller9aec9192006-08-05 10:57:45 +100045#ifdef HAVE_SYS_TIME_H
46# include <sys/time.h>
47#endif
Damien Miller8ec8c3e2006-07-10 20:35:38 +100048
Damien Miller8ec8c3e2006-07-10 20:35:38 +100049#include <netinet/in.h>
Damien Miller68f8e992006-03-15 11:24:12 +110050#include <netinet/ip.h>
Darren Tuckerdace2332006-09-22 19:22:17 +100051#include <arpa/inet.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100052
Darren Tucker39972492006-07-12 22:22:46 +100053#include <errno.h>
djm@openbsd.org95767262016-03-07 19:02:43 +000054#include <netdb.h>
Darren Tucker5d196262006-07-12 22:15:16 +100055#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100056#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100057#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100058#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100059#include <unistd.h>
deraadt@openbsd.org087266e2015-01-20 23:14:00 +000060#include <limits.h>
djm@openbsd.org0a843d92018-12-27 03:25:24 +000061#include <poll.h>
Damien Millerd7834352006-08-05 12:39:39 +100062#include <signal.h>
Darren Tuckerc53c2af2013-05-16 20:28:16 +100063#include <time.h>
Darren Tucker5d196262006-07-12 22:15:16 +100064
Darren Tuckerc77bc732018-07-20 13:48:51 +100065/*
66 * Explicitly include OpenSSL before zlib as some versions of OpenSSL have
67 * "free_func" in their headers, which zlib typedefs.
68 */
69#ifdef WITH_OPENSSL
70# include <openssl/bn.h>
71# include <openssl/evp.h>
72# ifdef OPENSSL_HAS_ECC
73# include <openssl/ec.h>
74# endif
75#endif
76
markus@openbsd.org091c3022015-01-19 19:52:16 +000077#include <zlib.h>
78
Damien Millerd4a8b7e1999-10-27 13:42:43 +100079#include "xmalloc.h"
Damien Miller33b13562000-04-04 14:38:59 +100080#include "compat.h"
81#include "ssh2.h"
Damien Miller874d77b2000-10-14 16:23:11 +110082#include "cipher.h"
markus@openbsd.org091c3022015-01-19 19:52:16 +000083#include "sshkey.h"
Damien Miller33b13562000-04-04 14:38:59 +100084#include "kex.h"
markus@openbsd.org128343b2015-01-13 19:31:40 +000085#include "digest.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000086#include "mac.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000087#include "log.h"
88#include "canohost.h"
Damien Miller4d007762002-02-05 11:52:54 +110089#include "misc.h"
Damien Miller7acefbb2014-07-18 14:11:24 +100090#include "channels.h"
Ben Lindstrom402c6cc2002-06-21 00:43:42 +000091#include "ssh.h"
markus@openbsd.org091c3022015-01-19 19:52:16 +000092#include "packet.h"
markus@openbsd.org091c3022015-01-19 19:52:16 +000093#include "ssherr.h"
94#include "sshbuf.h"
Damien Miller33b13562000-04-04 14:38:59 +100095
96#ifdef PACKET_DEBUG
97#define DBG(x) x
98#else
99#define DBG(x)
100#endif
101
Damien Miller13ae44c2009-01-28 16:38:41 +1100102#define PACKET_MAX_SIZE (256 * 1024)
103
Darren Tuckerf7288d72009-06-21 18:12:20 +1000104struct packet_state {
Damien Millera5539d22003-04-09 20:50:06 +1000105 u_int32_t seqnr;
106 u_int32_t packets;
107 u_int64_t blocks;
Damien Millerb61f3fc2008-07-11 17:36:48 +1000108 u_int64_t bytes;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000109};
Damien Miller13ae44c2009-01-28 16:38:41 +1100110
Damien Millera5539d22003-04-09 20:50:06 +1000111struct packet {
112 TAILQ_ENTRY(packet) next;
113 u_char type;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000114 struct sshbuf *payload;
Damien Millera5539d22003-04-09 20:50:06 +1000115};
Darren Tuckerf7288d72009-06-21 18:12:20 +1000116
117struct session_state {
118 /*
119 * This variable contains the file descriptors used for
120 * communicating with the other side. connection_in is used for
121 * reading; connection_out for writing. These can be the same
122 * descriptor, in which case it is assumed to be a socket.
123 */
124 int connection_in;
125 int connection_out;
126
127 /* Protocol flags for the remote side. */
128 u_int remote_protocol_flags;
129
130 /* Encryption context for receiving data. Only used for decryption. */
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000131 struct sshcipher_ctx *receive_context;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000132
133 /* Encryption context for sending data. Only used for encryption. */
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000134 struct sshcipher_ctx *send_context;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000135
136 /* Buffer for raw input data from the socket. */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000137 struct sshbuf *input;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000138
139 /* Buffer for raw output data going to the socket. */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000140 struct sshbuf *output;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000141
142 /* Buffer for the partial outgoing packet being constructed. */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000143 struct sshbuf *outgoing_packet;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000144
145 /* Buffer for the incoming packet currently being processed. */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000146 struct sshbuf *incoming_packet;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000147
148 /* Scratch buffer for packet compression/decompression. */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000149 struct sshbuf *compression_buffer;
150
151 /* Incoming/outgoing compression dictionaries */
152 z_stream compression_in_stream;
153 z_stream compression_out_stream;
154 int compression_in_started;
155 int compression_out_started;
156 int compression_in_failures;
157 int compression_out_failures;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000158
Darren Tuckerf7288d72009-06-21 18:12:20 +1000159 /* default maximum packet size */
160 u_int max_packet_size;
161
162 /* Flag indicating whether this module has been initialized. */
163 int initialized;
164
165 /* Set to true if the connection is interactive. */
166 int interactive_mode;
167
168 /* Set to true if we are the server side. */
169 int server_side;
170
171 /* Set to true if we are authenticated. */
172 int after_authentication;
173
174 int keep_alive_timeouts;
175
176 /* The maximum time that we will wait to send or receive a packet */
177 int packet_timeout_ms;
178
179 /* Session key information for Encryption and MAC */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000180 struct newkeys *newkeys[MODE_MAX];
Darren Tuckerf7288d72009-06-21 18:12:20 +1000181 struct packet_state p_read, p_send;
182
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000183 /* Volume-based rekeying */
dtucker@openbsd.org921ff002016-01-29 02:54:45 +0000184 u_int64_t max_blocks_in, max_blocks_out, rekey_limit;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000185
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000186 /* Time-based rekeying */
markus@openbsd.org02db4682015-02-13 18:57:00 +0000187 u_int32_t rekey_interval; /* how often in seconds */
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000188 time_t rekey_time; /* time of last rekeying */
189
Darren Tuckerf7288d72009-06-21 18:12:20 +1000190 /* roundup current message to extra_pad bytes */
191 u_char extra_pad;
192
193 /* XXX discard incoming data after MAC error */
194 u_int packet_discard;
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +0000195 size_t packet_discard_mac_already;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000196 struct sshmac *packet_discard_mac;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000197
198 /* Used in packet_read_poll2() */
199 u_int packlen;
200
Darren Tucker7b935c72009-06-21 18:59:36 +1000201 /* Used in packet_send2 */
202 int rekeying;
203
markus@openbsd.org8d057842016-09-30 09:19:13 +0000204 /* Used in ssh_packet_send_mux() */
205 int mux;
206
Darren Tucker7b935c72009-06-21 18:59:36 +1000207 /* Used in packet_set_interactive */
208 int set_interactive_called;
209
210 /* Used in packet_set_maxsize */
211 int set_maxsize_called;
212
markus@openbsd.org091c3022015-01-19 19:52:16 +0000213 /* One-off warning about weak ciphers */
214 int cipher_warning_done;
215
djm@openbsd.org39af7b42016-10-11 21:47:45 +0000216 /* Hook for fuzzing inbound packets */
217 ssh_packet_hook_fn *hook_in;
218 void *hook_in_ctx;
219
Darren Tuckerf7288d72009-06-21 18:12:20 +1000220 TAILQ_HEAD(, packet) outgoing;
221};
222
markus@openbsd.org091c3022015-01-19 19:52:16 +0000223struct ssh *
224ssh_alloc_session_state(void)
Darren Tuckerf7288d72009-06-21 18:12:20 +1000225{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000226 struct ssh *ssh = NULL;
227 struct session_state *state = NULL;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000228
markus@openbsd.org091c3022015-01-19 19:52:16 +0000229 if ((ssh = calloc(1, sizeof(*ssh))) == NULL ||
230 (state = calloc(1, sizeof(*state))) == NULL ||
djm@openbsd.org0a843d92018-12-27 03:25:24 +0000231 (ssh->kex = kex_new()) == NULL ||
markus@openbsd.org091c3022015-01-19 19:52:16 +0000232 (state->input = sshbuf_new()) == NULL ||
233 (state->output = sshbuf_new()) == NULL ||
234 (state->outgoing_packet = sshbuf_new()) == NULL ||
235 (state->incoming_packet = sshbuf_new()) == NULL)
236 goto fail;
237 TAILQ_INIT(&state->outgoing);
markus@openbsd.orgf582f0e2015-01-19 20:30:23 +0000238 TAILQ_INIT(&ssh->private_keys);
239 TAILQ_INIT(&ssh->public_keys);
markus@openbsd.org091c3022015-01-19 19:52:16 +0000240 state->connection_in = -1;
241 state->connection_out = -1;
242 state->max_packet_size = 32768;
243 state->packet_timeout_ms = -1;
244 state->p_send.packets = state->p_read.packets = 0;
245 state->initialized = 1;
246 /*
247 * ssh_packet_send2() needs to queue packets until
248 * we've done the initial key exchange.
249 */
250 state->rekeying = 1;
251 ssh->state = state;
252 return ssh;
253 fail:
djm@openbsd.org0a843d92018-12-27 03:25:24 +0000254 if (ssh) {
255 kex_free(ssh->kex);
256 free(ssh);
257 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000258 if (state) {
259 sshbuf_free(state->input);
260 sshbuf_free(state->output);
261 sshbuf_free(state->incoming_packet);
262 sshbuf_free(state->outgoing_packet);
263 free(state);
264 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000265 return NULL;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000266}
Damien Millera5539d22003-04-09 20:50:06 +1000267
djm@openbsd.org39af7b42016-10-11 21:47:45 +0000268void
269ssh_packet_set_input_hook(struct ssh *ssh, ssh_packet_hook_fn *hook, void *ctx)
270{
271 ssh->state->hook_in = hook;
272 ssh->state->hook_in_ctx = ctx;
273}
274
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000275/* Returns nonzero if rekeying is in progress */
276int
277ssh_packet_is_rekeying(struct ssh *ssh)
278{
djm@openbsd.org0a843d92018-12-27 03:25:24 +0000279 return ssh->state->rekeying || ssh->kex->done == 0;
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000280}
281
Damien Miller5428f641999-11-25 11:54:57 +1100282/*
naddy@openbsd.org768405f2017-05-03 21:08:09 +0000283 * Sets the descriptors used for communication.
Damien Miller5428f641999-11-25 11:54:57 +1100284 */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000285struct ssh *
286ssh_packet_set_connection(struct ssh *ssh, int fd_in, int fd_out)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000287{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000288 struct session_state *state;
289 const struct sshcipher *none = cipher_by_name("none");
Damien Miller86687062014-07-02 15:28:02 +1000290 int r;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000291
djm@openbsd.org4509b5d2015-01-30 01:13:33 +0000292 if (none == NULL) {
293 error("%s: cannot load cipher 'none'", __func__);
294 return NULL;
295 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000296 if (ssh == NULL)
297 ssh = ssh_alloc_session_state();
djm@openbsd.org4509b5d2015-01-30 01:13:33 +0000298 if (ssh == NULL) {
299 error("%s: cound not allocate state", __func__);
300 return NULL;
301 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000302 state = ssh->state;
303 state->connection_in = fd_in;
304 state->connection_out = fd_out;
305 if ((r = cipher_init(&state->send_context, none,
Damien Miller86687062014-07-02 15:28:02 +1000306 (const u_char *)"", 0, NULL, 0, CIPHER_ENCRYPT)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +0000307 (r = cipher_init(&state->receive_context, none,
djm@openbsd.org4509b5d2015-01-30 01:13:33 +0000308 (const u_char *)"", 0, NULL, 0, CIPHER_DECRYPT)) != 0) {
309 error("%s: cipher_init failed: %s", __func__, ssh_err(r));
djm@openbsd.org95767262016-03-07 19:02:43 +0000310 free(ssh); /* XXX need ssh_free_session_state? */
djm@openbsd.org4509b5d2015-01-30 01:13:33 +0000311 return NULL;
312 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000313 state->newkeys[MODE_IN] = state->newkeys[MODE_OUT] = NULL;
djm@openbsd.orgd4c02952015-02-11 01:20:38 +0000314 /*
315 * Cache the IP address of the remote connection for use in error
316 * messages that might be generated after the connection has closed.
317 */
318 (void)ssh_remote_ipaddr(ssh);
markus@openbsd.org091c3022015-01-19 19:52:16 +0000319 return ssh;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000320}
321
Darren Tucker3fc464e2008-06-13 06:42:45 +1000322void
markus@openbsd.org091c3022015-01-19 19:52:16 +0000323ssh_packet_set_timeout(struct ssh *ssh, int timeout, int count)
Darren Tucker3fc464e2008-06-13 06:42:45 +1000324{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000325 struct session_state *state = ssh->state;
326
Damien Miller8ed4de82011-12-19 10:52:50 +1100327 if (timeout <= 0 || count <= 0) {
markus@openbsd.org091c3022015-01-19 19:52:16 +0000328 state->packet_timeout_ms = -1;
Darren Tucker3fc464e2008-06-13 06:42:45 +1000329 return;
330 }
331 if ((INT_MAX / 1000) / count < timeout)
markus@openbsd.org091c3022015-01-19 19:52:16 +0000332 state->packet_timeout_ms = INT_MAX;
Darren Tucker3fc464e2008-06-13 06:42:45 +1000333 else
markus@openbsd.org091c3022015-01-19 19:52:16 +0000334 state->packet_timeout_ms = timeout * count * 1000;
Darren Tucker3fc464e2008-06-13 06:42:45 +1000335}
336
markus@openbsd.org8d057842016-09-30 09:19:13 +0000337void
338ssh_packet_set_mux(struct ssh *ssh)
339{
340 ssh->state->mux = 1;
341 ssh->state->rekeying = 0;
342}
343
344int
345ssh_packet_get_mux(struct ssh *ssh)
346{
347 return ssh->state->mux;
348}
349
markus@openbsd.org091c3022015-01-19 19:52:16 +0000350int
djm@openbsd.org07edd7e2017-02-03 23:03:33 +0000351ssh_packet_set_log_preamble(struct ssh *ssh, const char *fmt, ...)
352{
353 va_list args;
354 int r;
355
356 free(ssh->log_preamble);
357 if (fmt == NULL)
358 ssh->log_preamble = NULL;
359 else {
360 va_start(args, fmt);
361 r = vasprintf(&ssh->log_preamble, fmt, args);
362 va_end(args);
363 if (r < 0 || ssh->log_preamble == NULL)
364 return SSH_ERR_ALLOC_FAIL;
365 }
366 return 0;
367}
368
369int
markus@openbsd.org091c3022015-01-19 19:52:16 +0000370ssh_packet_stop_discard(struct ssh *ssh)
Damien Miller13ae44c2009-01-28 16:38:41 +1100371{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000372 struct session_state *state = ssh->state;
373 int r;
374
375 if (state->packet_discard_mac) {
Damien Miller13ae44c2009-01-28 16:38:41 +1100376 char buf[1024];
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +0000377 size_t dlen = PACKET_MAX_SIZE;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000378
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +0000379 if (dlen > state->packet_discard_mac_already)
380 dlen -= state->packet_discard_mac_already;
Damien Miller13ae44c2009-01-28 16:38:41 +1100381 memset(buf, 'a', sizeof(buf));
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +0000382 while (sshbuf_len(state->incoming_packet) < dlen)
markus@openbsd.org091c3022015-01-19 19:52:16 +0000383 if ((r = sshbuf_put(state->incoming_packet, buf,
384 sizeof(buf))) != 0)
385 return r;
386 (void) mac_compute(state->packet_discard_mac,
387 state->p_read.seqnr,
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +0000388 sshbuf_ptr(state->incoming_packet), dlen,
markus@openbsd.org091c3022015-01-19 19:52:16 +0000389 NULL, 0);
Damien Miller13ae44c2009-01-28 16:38:41 +1100390 }
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +0000391 logit("Finished discarding for %.200s port %d",
392 ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
markus@openbsd.org091c3022015-01-19 19:52:16 +0000393 return SSH_ERR_MAC_INVALID;
Damien Miller13ae44c2009-01-28 16:38:41 +1100394}
395
markus@openbsd.org091c3022015-01-19 19:52:16 +0000396static int
397ssh_packet_start_discard(struct ssh *ssh, struct sshenc *enc,
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +0000398 struct sshmac *mac, size_t mac_already, u_int discard)
Damien Miller13ae44c2009-01-28 16:38:41 +1100399{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000400 struct session_state *state = ssh->state;
401 int r;
402
403 if (enc == NULL || !cipher_is_cbc(enc->cipher) || (mac && mac->etm)) {
404 if ((r = sshpkt_disconnect(ssh, "Packet corrupt")) != 0)
405 return r;
406 return SSH_ERR_MAC_INVALID;
407 }
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +0000408 /*
409 * Record number of bytes over which the mac has already
410 * been computed in order to minimize timing attacks.
411 */
412 if (mac && mac->enabled) {
markus@openbsd.org091c3022015-01-19 19:52:16 +0000413 state->packet_discard_mac = mac;
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +0000414 state->packet_discard_mac_already = mac_already;
415 }
416 if (sshbuf_len(state->input) >= discard)
417 return ssh_packet_stop_discard(ssh);
markus@openbsd.org091c3022015-01-19 19:52:16 +0000418 state->packet_discard = discard - sshbuf_len(state->input);
419 return 0;
Damien Miller13ae44c2009-01-28 16:38:41 +1100420}
421
Damien Miller34132e52000-01-14 15:45:46 +1100422/* Returns 1 if remote host is connected via socket, 0 if not. */
423
424int
markus@openbsd.org091c3022015-01-19 19:52:16 +0000425ssh_packet_connection_is_on_socket(struct ssh *ssh)
Damien Miller34132e52000-01-14 15:45:46 +1100426{
djm@openbsd.org854ae202018-06-01 04:05:29 +0000427 struct session_state *state;
Damien Miller34132e52000-01-14 15:45:46 +1100428 struct sockaddr_storage from, to;
429 socklen_t fromlen, tolen;
430
djm@openbsd.org854ae202018-06-01 04:05:29 +0000431 if (ssh == NULL || ssh->state == NULL)
djm@openbsd.org95767262016-03-07 19:02:43 +0000432 return 0;
433
djm@openbsd.org854ae202018-06-01 04:05:29 +0000434 state = ssh->state;
435 if (state->connection_in == -1 || state->connection_out == -1)
436 return 0;
Damien Miller34132e52000-01-14 15:45:46 +1100437 /* filedescriptors in and out are the same, so it's a socket */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000438 if (state->connection_in == state->connection_out)
Damien Miller34132e52000-01-14 15:45:46 +1100439 return 1;
440 fromlen = sizeof(from);
441 memset(&from, 0, sizeof(from));
markus@openbsd.org091c3022015-01-19 19:52:16 +0000442 if (getpeername(state->connection_in, (struct sockaddr *)&from,
Darren Tuckerf7288d72009-06-21 18:12:20 +1000443 &fromlen) < 0)
Damien Miller34132e52000-01-14 15:45:46 +1100444 return 0;
445 tolen = sizeof(to);
446 memset(&to, 0, sizeof(to));
markus@openbsd.org091c3022015-01-19 19:52:16 +0000447 if (getpeername(state->connection_out, (struct sockaddr *)&to,
Darren Tuckerf7288d72009-06-21 18:12:20 +1000448 &tolen) < 0)
Damien Miller34132e52000-01-14 15:45:46 +1100449 return 0;
450 if (fromlen != tolen || memcmp(&from, &to, fromlen) != 0)
451 return 0;
452 if (from.ss_family != AF_INET && from.ss_family != AF_INET6)
453 return 0;
454 return 1;
455}
456
Ben Lindstromf6027d32002-03-22 01:42:04 +0000457void
markus@openbsd.org091c3022015-01-19 19:52:16 +0000458ssh_packet_get_bytes(struct ssh *ssh, u_int64_t *ibytes, u_int64_t *obytes)
Ben Lindstromf6027d32002-03-22 01:42:04 +0000459{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000460 if (ibytes)
461 *ibytes = ssh->state->p_read.bytes;
462 if (obytes)
463 *obytes = ssh->state->p_send.bytes;
Ben Lindstromf6027d32002-03-22 01:42:04 +0000464}
465
466int
markus@openbsd.org091c3022015-01-19 19:52:16 +0000467ssh_packet_connection_af(struct ssh *ssh)
Damien Miller34132e52000-01-14 15:45:46 +1100468{
469 struct sockaddr_storage to;
Damien Miller6fe375d2000-01-23 09:38:00 +1100470 socklen_t tolen = sizeof(to);
Damien Miller34132e52000-01-14 15:45:46 +1100471
472 memset(&to, 0, sizeof(to));
markus@openbsd.org091c3022015-01-19 19:52:16 +0000473 if (getsockname(ssh->state->connection_out, (struct sockaddr *)&to,
Darren Tuckerf7288d72009-06-21 18:12:20 +1000474 &tolen) < 0)
Damien Miller34132e52000-01-14 15:45:46 +1100475 return 0;
Damien Milleraa100c52002-04-26 16:54:34 +1000476#ifdef IPV4_IN_IPV6
Damien Millera8e06ce2003-11-21 23:48:55 +1100477 if (to.ss_family == AF_INET6 &&
Damien Milleraa100c52002-04-26 16:54:34 +1000478 IN6_IS_ADDR_V4MAPPED(&((struct sockaddr_in6 *)&to)->sin6_addr))
Damien Millerd2ac5d72011-05-15 08:43:13 +1000479 return AF_INET;
Damien Milleraa100c52002-04-26 16:54:34 +1000480#endif
Damien Millerd2ac5d72011-05-15 08:43:13 +1000481 return to.ss_family;
Damien Miller34132e52000-01-14 15:45:46 +1100482}
483
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000484/* Sets the connection into non-blocking mode. */
485
486void
markus@openbsd.org091c3022015-01-19 19:52:16 +0000487ssh_packet_set_nonblocking(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000488{
Damien Miller95def091999-11-25 00:26:21 +1100489 /* Set the socket into non-blocking mode. */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000490 set_nonblock(ssh->state->connection_in);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000491
markus@openbsd.org091c3022015-01-19 19:52:16 +0000492 if (ssh->state->connection_out != ssh->state->connection_in)
493 set_nonblock(ssh->state->connection_out);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000494}
495
496/* Returns the socket used for reading. */
497
498int
markus@openbsd.org091c3022015-01-19 19:52:16 +0000499ssh_packet_get_connection_in(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000500{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000501 return ssh->state->connection_in;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000502}
503
504/* Returns the descriptor used for writing. */
505
506int
markus@openbsd.org091c3022015-01-19 19:52:16 +0000507ssh_packet_get_connection_out(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000508{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000509 return ssh->state->connection_out;
510}
511
512/*
513 * Returns the IP-address of the remote host as a string. The returned
514 * string must not be freed.
515 */
516
517const char *
518ssh_remote_ipaddr(struct ssh *ssh)
519{
djm@openbsd.org854ae202018-06-01 04:05:29 +0000520 int sock;
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +0000521
markus@openbsd.org091c3022015-01-19 19:52:16 +0000522 /* Check whether we have cached the ipaddr. */
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +0000523 if (ssh->remote_ipaddr == NULL) {
524 if (ssh_packet_connection_is_on_socket(ssh)) {
djm@openbsd.org854ae202018-06-01 04:05:29 +0000525 sock = ssh->state->connection_in;
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +0000526 ssh->remote_ipaddr = get_peer_ipaddr(sock);
djm@openbsd.org95767262016-03-07 19:02:43 +0000527 ssh->remote_port = get_peer_port(sock);
528 ssh->local_ipaddr = get_local_ipaddr(sock);
529 ssh->local_port = get_local_port(sock);
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +0000530 } else {
531 ssh->remote_ipaddr = strdup("UNKNOWN");
djm@openbsd.org95767262016-03-07 19:02:43 +0000532 ssh->remote_port = 65535;
533 ssh->local_ipaddr = strdup("UNKNOWN");
534 ssh->local_port = 65535;
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +0000535 }
536 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000537 return ssh->remote_ipaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000538}
539
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +0000540/* Returns the port number of the remote host. */
541
542int
543ssh_remote_port(struct ssh *ssh)
544{
545 (void)ssh_remote_ipaddr(ssh); /* Will lookup and cache. */
546 return ssh->remote_port;
547}
548
djm@openbsd.org95767262016-03-07 19:02:43 +0000549/*
550 * Returns the IP-address of the local host as a string. The returned
551 * string must not be freed.
552 */
553
554const char *
555ssh_local_ipaddr(struct ssh *ssh)
556{
557 (void)ssh_remote_ipaddr(ssh); /* Will lookup and cache. */
558 return ssh->local_ipaddr;
559}
560
561/* Returns the port number of the local host. */
562
563int
564ssh_local_port(struct ssh *ssh)
565{
566 (void)ssh_remote_ipaddr(ssh); /* Will lookup and cache. */
567 return ssh->local_port;
568}
569
djm@openbsd.org35eb33f2017-10-25 00:17:08 +0000570/* Returns the routing domain of the input socket, or NULL if unavailable */
571const char *
572ssh_packet_rdomain_in(struct ssh *ssh)
573{
574 if (ssh->rdomain_in != NULL)
575 return ssh->rdomain_in;
576 if (!ssh_packet_connection_is_on_socket(ssh))
577 return NULL;
578 ssh->rdomain_in = get_rdomain(ssh->state->connection_in);
579 return ssh->rdomain_in;
580}
581
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000582/* Closes the connection and clears and frees internal data structures. */
583
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000584static void
585ssh_packet_close_internal(struct ssh *ssh, int do_close)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000586{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000587 struct session_state *state = ssh->state;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000588 u_int mode;
589
590 if (!state->initialized)
Damien Miller95def091999-11-25 00:26:21 +1100591 return;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000592 state->initialized = 0;
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000593 if (do_close) {
594 if (state->connection_in == state->connection_out) {
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000595 close(state->connection_out);
596 } else {
597 close(state->connection_in);
598 close(state->connection_out);
599 }
Damien Miller95def091999-11-25 00:26:21 +1100600 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000601 sshbuf_free(state->input);
602 sshbuf_free(state->output);
603 sshbuf_free(state->outgoing_packet);
604 sshbuf_free(state->incoming_packet);
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000605 for (mode = 0; mode < MODE_MAX; mode++) {
606 kex_free_newkeys(state->newkeys[mode]); /* current keys */
607 state->newkeys[mode] = NULL;
608 ssh_clear_newkeys(ssh, mode); /* next keys */
609 }
Damien Miller10479cc2018-04-10 10:19:02 +1000610 /* compression state is in shared mem, so we can only release it once */
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000611 if (do_close && state->compression_buffer) {
markus@openbsd.org091c3022015-01-19 19:52:16 +0000612 sshbuf_free(state->compression_buffer);
613 if (state->compression_out_started) {
614 z_streamp stream = &state->compression_out_stream;
615 debug("compress outgoing: "
616 "raw data %llu, compressed %llu, factor %.2f",
617 (unsigned long long)stream->total_in,
618 (unsigned long long)stream->total_out,
619 stream->total_in == 0 ? 0.0 :
620 (double) stream->total_out / stream->total_in);
621 if (state->compression_out_failures == 0)
622 deflateEnd(stream);
623 }
624 if (state->compression_in_started) {
dtucker@openbsd.org550c0532017-06-06 09:12:17 +0000625 z_streamp stream = &state->compression_in_stream;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000626 debug("compress incoming: "
627 "raw data %llu, compressed %llu, factor %.2f",
628 (unsigned long long)stream->total_out,
629 (unsigned long long)stream->total_in,
630 stream->total_out == 0 ? 0.0 :
631 (double) stream->total_in / stream->total_out);
632 if (state->compression_in_failures == 0)
633 inflateEnd(stream);
634 }
Damien Miller95def091999-11-25 00:26:21 +1100635 }
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000636 cipher_free(state->send_context);
637 cipher_free(state->receive_context);
638 state->send_context = state->receive_context = NULL;
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000639 if (do_close) {
djm@openbsd.orgde2997a2018-07-16 03:09:13 +0000640 free(ssh->local_ipaddr);
641 ssh->local_ipaddr = NULL;
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000642 free(ssh->remote_ipaddr);
643 ssh->remote_ipaddr = NULL;
644 free(ssh->state);
645 ssh->state = NULL;
646 }
647}
648
649void
650ssh_packet_close(struct ssh *ssh)
651{
652 ssh_packet_close_internal(ssh, 1);
653}
654
655void
656ssh_packet_clear_keys(struct ssh *ssh)
657{
658 ssh_packet_close_internal(ssh, 0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000659}
660
661/* Sets remote side protocol flags. */
662
663void
markus@openbsd.org091c3022015-01-19 19:52:16 +0000664ssh_packet_set_protocol_flags(struct ssh *ssh, u_int protocol_flags)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000665{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000666 ssh->state->remote_protocol_flags = protocol_flags;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000667}
668
669/* Returns the remote protocol flags set earlier by the above function. */
670
Ben Lindstrom46c16222000-12-22 01:43:59 +0000671u_int
markus@openbsd.org091c3022015-01-19 19:52:16 +0000672ssh_packet_get_protocol_flags(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000673{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000674 return ssh->state->remote_protocol_flags;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000675}
676
Damien Miller5428f641999-11-25 11:54:57 +1100677/*
678 * Starts packet compression from the next packet on in both directions.
679 * Level is compression level 1 (fastest) - 9 (slow, best) as in gzip.
680 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000681
markus@openbsd.org091c3022015-01-19 19:52:16 +0000682static int
683ssh_packet_init_compression(struct ssh *ssh)
Ben Lindstromfb50cdf2001-04-05 23:20:46 +0000684{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000685 if (!ssh->state->compression_buffer &&
686 ((ssh->state->compression_buffer = sshbuf_new()) == NULL))
687 return SSH_ERR_ALLOC_FAIL;
688 return 0;
689}
690
691static int
692start_compression_out(struct ssh *ssh, int level)
693{
694 if (level < 1 || level > 9)
695 return SSH_ERR_INVALID_ARGUMENT;
696 debug("Enabling compression at level %d.", level);
697 if (ssh->state->compression_out_started == 1)
698 deflateEnd(&ssh->state->compression_out_stream);
699 switch (deflateInit(&ssh->state->compression_out_stream, level)) {
700 case Z_OK:
701 ssh->state->compression_out_started = 1;
702 break;
703 case Z_MEM_ERROR:
704 return SSH_ERR_ALLOC_FAIL;
705 default:
706 return SSH_ERR_INTERNAL_ERROR;
707 }
708 return 0;
709}
710
711static int
712start_compression_in(struct ssh *ssh)
713{
714 if (ssh->state->compression_in_started == 1)
715 inflateEnd(&ssh->state->compression_in_stream);
716 switch (inflateInit(&ssh->state->compression_in_stream)) {
717 case Z_OK:
718 ssh->state->compression_in_started = 1;
719 break;
720 case Z_MEM_ERROR:
721 return SSH_ERR_ALLOC_FAIL;
722 default:
723 return SSH_ERR_INTERNAL_ERROR;
724 }
725 return 0;
726}
727
markus@openbsd.org091c3022015-01-19 19:52:16 +0000728/* XXX remove need for separate compression buffer */
729static int
730compress_buffer(struct ssh *ssh, struct sshbuf *in, struct sshbuf *out)
731{
732 u_char buf[4096];
733 int r, status;
734
735 if (ssh->state->compression_out_started != 1)
736 return SSH_ERR_INTERNAL_ERROR;
737
738 /* This case is not handled below. */
739 if (sshbuf_len(in) == 0)
740 return 0;
741
742 /* Input is the contents of the input buffer. */
743 if ((ssh->state->compression_out_stream.next_in =
744 sshbuf_mutable_ptr(in)) == NULL)
745 return SSH_ERR_INTERNAL_ERROR;
746 ssh->state->compression_out_stream.avail_in = sshbuf_len(in);
747
748 /* Loop compressing until deflate() returns with avail_out != 0. */
749 do {
750 /* Set up fixed-size output buffer. */
751 ssh->state->compression_out_stream.next_out = buf;
752 ssh->state->compression_out_stream.avail_out = sizeof(buf);
753
754 /* Compress as much data into the buffer as possible. */
755 status = deflate(&ssh->state->compression_out_stream,
756 Z_PARTIAL_FLUSH);
757 switch (status) {
758 case Z_MEM_ERROR:
759 return SSH_ERR_ALLOC_FAIL;
760 case Z_OK:
761 /* Append compressed data to output_buffer. */
762 if ((r = sshbuf_put(out, buf, sizeof(buf) -
763 ssh->state->compression_out_stream.avail_out)) != 0)
764 return r;
765 break;
766 case Z_STREAM_ERROR:
767 default:
768 ssh->state->compression_out_failures++;
769 return SSH_ERR_INVALID_FORMAT;
770 }
771 } while (ssh->state->compression_out_stream.avail_out == 0);
772 return 0;
773}
774
775static int
776uncompress_buffer(struct ssh *ssh, struct sshbuf *in, struct sshbuf *out)
777{
778 u_char buf[4096];
779 int r, status;
780
781 if (ssh->state->compression_in_started != 1)
782 return SSH_ERR_INTERNAL_ERROR;
783
784 if ((ssh->state->compression_in_stream.next_in =
785 sshbuf_mutable_ptr(in)) == NULL)
786 return SSH_ERR_INTERNAL_ERROR;
787 ssh->state->compression_in_stream.avail_in = sshbuf_len(in);
788
789 for (;;) {
790 /* Set up fixed-size output buffer. */
791 ssh->state->compression_in_stream.next_out = buf;
792 ssh->state->compression_in_stream.avail_out = sizeof(buf);
793
794 status = inflate(&ssh->state->compression_in_stream,
795 Z_PARTIAL_FLUSH);
796 switch (status) {
797 case Z_OK:
798 if ((r = sshbuf_put(out, buf, sizeof(buf) -
799 ssh->state->compression_in_stream.avail_out)) != 0)
800 return r;
801 break;
802 case Z_BUF_ERROR:
803 /*
804 * Comments in zlib.h say that we should keep calling
805 * inflate() until we get an error. This appears to
806 * be the error that we get.
807 */
808 return 0;
809 case Z_DATA_ERROR:
810 return SSH_ERR_INVALID_FORMAT;
811 case Z_MEM_ERROR:
812 return SSH_ERR_ALLOC_FAIL;
813 case Z_STREAM_ERROR:
814 default:
815 ssh->state->compression_in_failures++;
816 return SSH_ERR_INTERNAL_ERROR;
817 }
818 }
819 /* NOTREACHED */
820}
821
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000822void
823ssh_clear_newkeys(struct ssh *ssh, int mode)
824{
djm@openbsd.org2d75d742017-06-01 06:16:43 +0000825 if (ssh->kex && ssh->kex->newkeys[mode]) {
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000826 kex_free_newkeys(ssh->kex->newkeys[mode]);
827 ssh->kex->newkeys[mode] = NULL;
828 }
829}
830
markus@openbsd.org091c3022015-01-19 19:52:16 +0000831int
832ssh_set_newkeys(struct ssh *ssh, int mode)
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000833{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000834 struct session_state *state = ssh->state;
835 struct sshenc *enc;
836 struct sshmac *mac;
837 struct sshcomp *comp;
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000838 struct sshcipher_ctx **ccp;
markus@openbsd.org06ce56b2016-09-06 09:22:56 +0000839 struct packet_state *ps;
Damien Millera5539d22003-04-09 20:50:06 +1000840 u_int64_t *max_blocks;
djm@openbsd.org2d75d742017-06-01 06:16:43 +0000841 const char *wmsg;
Damien Miller86687062014-07-02 15:28:02 +1000842 int r, crypt_type;
djm@openbsd.orge9552d62019-03-01 03:29:32 +0000843 const char *dir = mode == MODE_OUT ? "out" : "in";
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000844
Ben Lindstrom064496f2002-12-23 02:04:22 +0000845 debug2("set_newkeys: mode %d", mode);
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000846
Damien Miller963f6b22002-02-19 15:21:23 +1100847 if (mode == MODE_OUT) {
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000848 ccp = &state->send_context;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000849 crypt_type = CIPHER_ENCRYPT;
markus@openbsd.org06ce56b2016-09-06 09:22:56 +0000850 ps = &state->p_send;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000851 max_blocks = &state->max_blocks_out;
Damien Miller963f6b22002-02-19 15:21:23 +1100852 } else {
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000853 ccp = &state->receive_context;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000854 crypt_type = CIPHER_DECRYPT;
markus@openbsd.org06ce56b2016-09-06 09:22:56 +0000855 ps = &state->p_read;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000856 max_blocks = &state->max_blocks_in;
Damien Miller963f6b22002-02-19 15:21:23 +1100857 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000858 if (state->newkeys[mode] != NULL) {
djm@openbsd.orge9552d62019-03-01 03:29:32 +0000859 debug("%s: rekeying %s, input %llu bytes %llu blocks, "
860 "output %llu bytes %llu blocks", __func__, dir,
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000861 (unsigned long long)state->p_read.bytes,
862 (unsigned long long)state->p_read.blocks,
863 (unsigned long long)state->p_send.bytes,
864 (unsigned long long)state->p_send.blocks);
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000865 kex_free_newkeys(state->newkeys[mode]);
866 state->newkeys[mode] = NULL;
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000867 }
markus@openbsd.org06ce56b2016-09-06 09:22:56 +0000868 /* note that both bytes and the seqnr are not reset */
869 ps->packets = ps->blocks = 0;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000870 /* move newkeys from kex to state */
871 if ((state->newkeys[mode] = ssh->kex->newkeys[mode]) == NULL)
872 return SSH_ERR_INTERNAL_ERROR;
873 ssh->kex->newkeys[mode] = NULL;
874 enc = &state->newkeys[mode]->enc;
875 mac = &state->newkeys[mode]->mac;
876 comp = &state->newkeys[mode]->comp;
877 if (cipher_authlen(enc->cipher) == 0) {
878 if ((r = mac_init(mac)) != 0)
879 return r;
880 }
881 mac->enabled = 1;
djm@openbsd.orge9552d62019-03-01 03:29:32 +0000882 DBG(debug("%s: cipher_init_context: %s", __func__, dir));
djm@openbsd.org8a818342019-01-04 03:23:00 +0000883 cipher_free(*ccp);
884 *ccp = NULL;
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000885 if ((r = cipher_init(ccp, enc->cipher, enc->key, enc->key_len,
Damien Miller86687062014-07-02 15:28:02 +1000886 enc->iv, enc->iv_len, crypt_type)) != 0)
markus@openbsd.org091c3022015-01-19 19:52:16 +0000887 return r;
888 if (!state->cipher_warning_done &&
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000889 (wmsg = cipher_warning_message(*ccp)) != NULL) {
markus@openbsd.org091c3022015-01-19 19:52:16 +0000890 error("Warning: %s", wmsg);
891 state->cipher_warning_done = 1;
892 }
Ben Lindstromf6027d32002-03-22 01:42:04 +0000893 /* Deleting the keys does not gain extra security */
Damien Millera5103f42014-02-04 11:20:14 +1100894 /* explicit_bzero(enc->iv, enc->block_size);
895 explicit_bzero(enc->key, enc->key_len);
896 explicit_bzero(mac->key, mac->key_len); */
sf@openbsd.org168b46f2018-07-09 13:37:10 +0000897 if ((comp->type == COMP_ZLIB ||
898 (comp->type == COMP_DELAYED &&
899 state->after_authentication)) && comp->enabled == 0) {
markus@openbsd.org091c3022015-01-19 19:52:16 +0000900 if ((r = ssh_packet_init_compression(ssh)) < 0)
901 return r;
902 if (mode == MODE_OUT) {
903 if ((r = start_compression_out(ssh, 6)) != 0)
904 return r;
905 } else {
906 if ((r = start_compression_in(ssh)) != 0)
907 return r;
908 }
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000909 comp->enabled = 1;
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000910 }
Darren Tucker81a0b372003-07-14 17:31:06 +1000911 /*
912 * The 2^(blocksize*2) limit is too expensive for 3DES,
djm@openbsd.orgacaf34f2017-05-07 23:12:57 +0000913 * so enforce a 1GB limit for small blocksizes.
dtucker@openbsd.orgad053162017-06-09 04:40:04 +0000914 * See RFC4344 section 3.2.
Darren Tucker81a0b372003-07-14 17:31:06 +1000915 */
916 if (enc->block_size >= 16)
917 *max_blocks = (u_int64_t)1 << (enc->block_size*2);
918 else
919 *max_blocks = ((u_int64_t)1 << 30) / enc->block_size;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000920 if (state->rekey_limit)
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +0000921 *max_blocks = MINIMUM(*max_blocks,
markus@openbsd.org091c3022015-01-19 19:52:16 +0000922 state->rekey_limit / enc->block_size);
djm@openbsd.orge9552d62019-03-01 03:29:32 +0000923 debug("rekey %s after %llu blocks", dir,
924 (unsigned long long)*max_blocks);
markus@openbsd.org091c3022015-01-19 19:52:16 +0000925 return 0;
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000926}
927
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000928#define MAX_PACKETS (1U<<31)
929static int
930ssh_packet_need_rekeying(struct ssh *ssh, u_int outbound_packet_len)
931{
932 struct session_state *state = ssh->state;
933 u_int32_t out_blocks;
934
935 /* XXX client can't cope with rekeying pre-auth */
936 if (!state->after_authentication)
937 return 0;
938
939 /* Haven't keyed yet or KEX in progress. */
djm@openbsd.org0a843d92018-12-27 03:25:24 +0000940 if (ssh_packet_is_rekeying(ssh))
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000941 return 0;
942
943 /* Peer can't rekey */
944 if (ssh->compat & SSH_BUG_NOREKEY)
945 return 0;
946
947 /*
948 * Permit one packet in or out per rekey - this allows us to
949 * make progress when rekey limits are very small.
950 */
951 if (state->p_send.packets == 0 && state->p_read.packets == 0)
952 return 0;
953
954 /* Time-based rekeying */
955 if (state->rekey_interval != 0 &&
dtucker@openbsd.orgc998bf02017-02-03 02:56:00 +0000956 (int64_t)state->rekey_time + state->rekey_interval <= monotime())
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000957 return 1;
958
dtucker@openbsd.orgad053162017-06-09 04:40:04 +0000959 /*
960 * Always rekey when MAX_PACKETS sent in either direction
961 * As per RFC4344 section 3.1 we do this after 2^31 packets.
962 */
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000963 if (state->p_send.packets > MAX_PACKETS ||
964 state->p_read.packets > MAX_PACKETS)
965 return 1;
966
Damien Miller10479cc2018-04-10 10:19:02 +1000967 /* Rekey after (cipher-specific) maximum blocks */
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +0000968 out_blocks = ROUNDUP(outbound_packet_len,
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000969 state->newkeys[MODE_OUT]->enc.block_size);
970 return (state->max_blocks_out &&
971 (state->p_send.blocks + out_blocks > state->max_blocks_out)) ||
972 (state->max_blocks_in &&
973 (state->p_read.blocks > state->max_blocks_in));
974}
975
Damien Miller5428f641999-11-25 11:54:57 +1100976/*
Damien Miller9786e6e2005-07-26 21:54:56 +1000977 * Delayed compression for SSH2 is enabled after authentication:
Darren Tuckerf676c572006-08-05 18:51:08 +1000978 * This happens on the server side after a SSH2_MSG_USERAUTH_SUCCESS is sent,
Damien Miller9786e6e2005-07-26 21:54:56 +1000979 * and on the client side after a SSH2_MSG_USERAUTH_SUCCESS is received.
980 */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000981static int
982ssh_packet_enable_delayed_compress(struct ssh *ssh)
Damien Miller9786e6e2005-07-26 21:54:56 +1000983{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000984 struct session_state *state = ssh->state;
985 struct sshcomp *comp = NULL;
986 int r, mode;
Damien Miller9786e6e2005-07-26 21:54:56 +1000987
988 /*
989 * Remember that we are past the authentication step, so rekeying
sf@openbsd.org168b46f2018-07-09 13:37:10 +0000990 * with COMP_DELAYED will turn on compression immediately.
Damien Miller9786e6e2005-07-26 21:54:56 +1000991 */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000992 state->after_authentication = 1;
Damien Miller9786e6e2005-07-26 21:54:56 +1000993 for (mode = 0; mode < MODE_MAX; mode++) {
Darren Tucker4aa665b2006-09-21 13:00:25 +1000994 /* protocol error: USERAUTH_SUCCESS received before NEWKEYS */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000995 if (state->newkeys[mode] == NULL)
Darren Tucker4aa665b2006-09-21 13:00:25 +1000996 continue;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000997 comp = &state->newkeys[mode]->comp;
sf@openbsd.org168b46f2018-07-09 13:37:10 +0000998 if (comp && !comp->enabled && comp->type == COMP_DELAYED) {
markus@openbsd.org091c3022015-01-19 19:52:16 +0000999 if ((r = ssh_packet_init_compression(ssh)) != 0)
1000 return r;
1001 if (mode == MODE_OUT) {
1002 if ((r = start_compression_out(ssh, 6)) != 0)
1003 return r;
1004 } else {
1005 if ((r = start_compression_in(ssh)) != 0)
1006 return r;
1007 }
Damien Miller9786e6e2005-07-26 21:54:56 +10001008 comp->enabled = 1;
1009 }
1010 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001011 return 0;
Damien Miller9786e6e2005-07-26 21:54:56 +10001012}
1013
djm@openbsd.org28136472016-01-29 05:46:01 +00001014/* Used to mute debug logging for noisy packet types */
markus@openbsd.org8d057842016-09-30 09:19:13 +00001015int
djm@openbsd.org28136472016-01-29 05:46:01 +00001016ssh_packet_log_type(u_char type)
1017{
1018 switch (type) {
1019 case SSH2_MSG_CHANNEL_DATA:
1020 case SSH2_MSG_CHANNEL_EXTENDED_DATA:
1021 case SSH2_MSG_CHANNEL_WINDOW_ADJUST:
1022 return 0;
1023 default:
1024 return 1;
1025 }
1026}
1027
Damien Miller9786e6e2005-07-26 21:54:56 +10001028/*
Damien Miller33b13562000-04-04 14:38:59 +10001029 * Finalize packet in SSH2 format (compress, mac, encrypt, enqueue)
1030 */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001031int
1032ssh_packet_send2_wrapped(struct ssh *ssh)
Damien Miller33b13562000-04-04 14:38:59 +10001033{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001034 struct session_state *state = ssh->state;
markus@openbsd.org128343b2015-01-13 19:31:40 +00001035 u_char type, *cp, macbuf[SSH_DIGEST_MAX_LENGTH];
djm@openbsd.orgeb999a42016-07-18 06:08:01 +00001036 u_char tmp, padlen, pad = 0;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001037 u_int authlen = 0, aadlen = 0;
1038 u_int len;
1039 struct sshenc *enc = NULL;
1040 struct sshmac *mac = NULL;
1041 struct sshcomp *comp = NULL;
1042 int r, block_size;
Damien Miller33b13562000-04-04 14:38:59 +10001043
markus@openbsd.org091c3022015-01-19 19:52:16 +00001044 if (state->newkeys[MODE_OUT] != NULL) {
1045 enc = &state->newkeys[MODE_OUT]->enc;
1046 mac = &state->newkeys[MODE_OUT]->mac;
1047 comp = &state->newkeys[MODE_OUT]->comp;
Damien Miller1d75abf2013-01-09 16:12:19 +11001048 /* disable mac for authenticated encryption */
1049 if ((authlen = cipher_authlen(enc->cipher)) != 0)
1050 mac = NULL;
Damien Miller33b13562000-04-04 14:38:59 +10001051 }
Damien Miller963f6b22002-02-19 15:21:23 +11001052 block_size = enc ? enc->block_size : 8;
Damien Miller1d75abf2013-01-09 16:12:19 +11001053 aadlen = (mac && mac->enabled && mac->etm) || authlen ? 4 : 0;
Damien Miller33b13562000-04-04 14:38:59 +10001054
markus@openbsd.org091c3022015-01-19 19:52:16 +00001055 type = (sshbuf_ptr(state->outgoing_packet))[5];
djm@openbsd.org28136472016-01-29 05:46:01 +00001056 if (ssh_packet_log_type(type))
1057 debug3("send packet: type %u", type);
Damien Miller33b13562000-04-04 14:38:59 +10001058#ifdef PACKET_DEBUG
1059 fprintf(stderr, "plain: ");
markus@openbsd.org091c3022015-01-19 19:52:16 +00001060 sshbuf_dump(state->outgoing_packet, stderr);
Damien Miller33b13562000-04-04 14:38:59 +10001061#endif
1062
1063 if (comp && comp->enabled) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001064 len = sshbuf_len(state->outgoing_packet);
Damien Miller33b13562000-04-04 14:38:59 +10001065 /* skip header, compress only payload */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001066 if ((r = sshbuf_consume(state->outgoing_packet, 5)) != 0)
1067 goto out;
1068 sshbuf_reset(state->compression_buffer);
1069 if ((r = compress_buffer(ssh, state->outgoing_packet,
1070 state->compression_buffer)) != 0)
1071 goto out;
1072 sshbuf_reset(state->outgoing_packet);
1073 if ((r = sshbuf_put(state->outgoing_packet,
1074 "\0\0\0\0\0", 5)) != 0 ||
1075 (r = sshbuf_putb(state->outgoing_packet,
1076 state->compression_buffer)) != 0)
1077 goto out;
1078 DBG(debug("compression: raw %d compressed %zd", len,
1079 sshbuf_len(state->outgoing_packet)));
Damien Miller33b13562000-04-04 14:38:59 +10001080 }
1081
1082 /* sizeof (packet_len + pad_len + payload) */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001083 len = sshbuf_len(state->outgoing_packet);
Damien Miller33b13562000-04-04 14:38:59 +10001084
1085 /*
1086 * calc size of padding, alloc space, get random data,
1087 * minimum padding is 4 bytes
1088 */
Damien Milleraf43a7a2012-12-12 10:46:31 +11001089 len -= aadlen; /* packet length is not encrypted for EtM modes */
Damien Miller33b13562000-04-04 14:38:59 +10001090 padlen = block_size - (len % block_size);
1091 if (padlen < 4)
1092 padlen += block_size;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001093 if (state->extra_pad) {
djm@openbsd.orgeb999a42016-07-18 06:08:01 +00001094 tmp = state->extra_pad;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001095 state->extra_pad =
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +00001096 ROUNDUP(state->extra_pad, block_size);
djm@openbsd.orgeb999a42016-07-18 06:08:01 +00001097 /* check if roundup overflowed */
1098 if (state->extra_pad < tmp)
1099 return SSH_ERR_INVALID_ARGUMENT;
1100 tmp = (len + padlen) % state->extra_pad;
1101 /* Check whether pad calculation below will underflow */
1102 if (tmp > state->extra_pad)
1103 return SSH_ERR_INVALID_ARGUMENT;
1104 pad = state->extra_pad - tmp;
Damien Miller2a328432014-04-20 13:24:01 +10001105 DBG(debug3("%s: adding %d (len %d padlen %d extra_pad %d)",
markus@openbsd.org091c3022015-01-19 19:52:16 +00001106 __func__, pad, len, padlen, state->extra_pad));
djm@openbsd.orgeb999a42016-07-18 06:08:01 +00001107 tmp = padlen;
Damien Miller9f643902001-11-12 11:02:52 +11001108 padlen += pad;
djm@openbsd.orgeb999a42016-07-18 06:08:01 +00001109 /* Check whether padlen calculation overflowed */
1110 if (padlen < tmp)
1111 return SSH_ERR_INVALID_ARGUMENT; /* overflow */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001112 state->extra_pad = 0;
Damien Miller9f643902001-11-12 11:02:52 +11001113 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001114 if ((r = sshbuf_reserve(state->outgoing_packet, padlen, &cp)) != 0)
1115 goto out;
djm@openbsd.org4706c1d2016-08-03 05:41:57 +00001116 if (enc && !cipher_ctx_is_plaintext(state->send_context)) {
Damien Millere247cc42000-05-07 12:03:14 +10001117 /* random padding */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001118 arc4random_buf(cp, padlen);
Damien Millere247cc42000-05-07 12:03:14 +10001119 } else {
1120 /* clear padding */
Damien Millera5103f42014-02-04 11:20:14 +11001121 explicit_bzero(cp, padlen);
Damien Miller33b13562000-04-04 14:38:59 +10001122 }
Damien Milleraf43a7a2012-12-12 10:46:31 +11001123 /* sizeof (packet_len + pad_len + payload + padding) */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001124 len = sshbuf_len(state->outgoing_packet);
1125 cp = sshbuf_mutable_ptr(state->outgoing_packet);
1126 if (cp == NULL) {
1127 r = SSH_ERR_INTERNAL_ERROR;
1128 goto out;
1129 }
Damien Milleraf43a7a2012-12-12 10:46:31 +11001130 /* packet_length includes payload, padding and padding length field */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001131 POKE_U32(cp, len - 4);
Ben Lindstrom4a7714a2002-02-26 18:04:38 +00001132 cp[4] = padlen;
Damien Milleraf43a7a2012-12-12 10:46:31 +11001133 DBG(debug("send: len %d (includes padlen %d, aadlen %d)",
1134 len, padlen, aadlen));
Damien Miller33b13562000-04-04 14:38:59 +10001135
1136 /* compute MAC over seqnr and packet(length fields, payload, padding) */
Damien Milleraf43a7a2012-12-12 10:46:31 +11001137 if (mac && mac->enabled && !mac->etm) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001138 if ((r = mac_compute(mac, state->p_send.seqnr,
1139 sshbuf_ptr(state->outgoing_packet), len,
markus@openbsd.org128343b2015-01-13 19:31:40 +00001140 macbuf, sizeof(macbuf))) != 0)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001141 goto out;
1142 DBG(debug("done calc MAC out #%d", state->p_send.seqnr));
Damien Miller33b13562000-04-04 14:38:59 +10001143 }
1144 /* encrypt packet and append to output buffer. */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001145 if ((r = sshbuf_reserve(state->output,
1146 sshbuf_len(state->outgoing_packet) + authlen, &cp)) != 0)
1147 goto out;
djm@openbsd.org4706c1d2016-08-03 05:41:57 +00001148 if ((r = cipher_crypt(state->send_context, state->p_send.seqnr, cp,
markus@openbsd.org091c3022015-01-19 19:52:16 +00001149 sshbuf_ptr(state->outgoing_packet),
1150 len - aadlen, aadlen, authlen)) != 0)
1151 goto out;
Damien Miller33b13562000-04-04 14:38:59 +10001152 /* append unencrypted MAC */
Damien Milleraf43a7a2012-12-12 10:46:31 +11001153 if (mac && mac->enabled) {
1154 if (mac->etm) {
1155 /* EtM: compute mac over aadlen + cipher text */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001156 if ((r = mac_compute(mac, state->p_send.seqnr,
1157 cp, len, macbuf, sizeof(macbuf))) != 0)
1158 goto out;
Damien Milleraf43a7a2012-12-12 10:46:31 +11001159 DBG(debug("done calc MAC(EtM) out #%d",
markus@openbsd.org091c3022015-01-19 19:52:16 +00001160 state->p_send.seqnr));
Damien Milleraf43a7a2012-12-12 10:46:31 +11001161 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001162 if ((r = sshbuf_put(state->output, macbuf, mac->mac_len)) != 0)
1163 goto out;
Damien Milleraf43a7a2012-12-12 10:46:31 +11001164 }
Damien Miller33b13562000-04-04 14:38:59 +10001165#ifdef PACKET_DEBUG
1166 fprintf(stderr, "encrypted: ");
markus@openbsd.org091c3022015-01-19 19:52:16 +00001167 sshbuf_dump(state->output, stderr);
Damien Miller33b13562000-04-04 14:38:59 +10001168#endif
Damien Miller4af51302000-04-16 11:18:38 +10001169 /* increment sequence number for outgoing packets */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001170 if (++state->p_send.seqnr == 0)
Damien Miller996acd22003-04-09 20:59:48 +10001171 logit("outgoing seqnr wraps around");
markus@openbsd.org091c3022015-01-19 19:52:16 +00001172 if (++state->p_send.packets == 0)
1173 if (!(ssh->compat & SSH_BUG_NOREKEY))
1174 return SSH_ERR_NEED_REKEY;
1175 state->p_send.blocks += len / block_size;
1176 state->p_send.bytes += len;
1177 sshbuf_reset(state->outgoing_packet);
Damien Miller33b13562000-04-04 14:38:59 +10001178
Ben Lindstrom2d90e002001-04-04 02:00:54 +00001179 if (type == SSH2_MSG_NEWKEYS)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001180 r = ssh_set_newkeys(ssh, MODE_OUT);
1181 else if (type == SSH2_MSG_USERAUTH_SUCCESS && state->server_side)
1182 r = ssh_packet_enable_delayed_compress(ssh);
1183 else
1184 r = 0;
1185 out:
1186 return r;
Damien Miller33b13562000-04-04 14:38:59 +10001187}
1188
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001189/* returns non-zero if the specified packet type is usec by KEX */
1190static int
1191ssh_packet_type_is_kex(u_char type)
1192{
1193 return
1194 type >= SSH2_MSG_TRANSPORT_MIN &&
1195 type <= SSH2_MSG_TRANSPORT_MAX &&
1196 type != SSH2_MSG_SERVICE_REQUEST &&
1197 type != SSH2_MSG_SERVICE_ACCEPT &&
1198 type != SSH2_MSG_EXT_INFO;
1199}
1200
markus@openbsd.org091c3022015-01-19 19:52:16 +00001201int
1202ssh_packet_send2(struct ssh *ssh)
Damien Millera5539d22003-04-09 20:50:06 +10001203{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001204 struct session_state *state = ssh->state;
Damien Millera5539d22003-04-09 20:50:06 +10001205 struct packet *p;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001206 u_char type;
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001207 int r, need_rekey;
Damien Millera5539d22003-04-09 20:50:06 +10001208
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001209 if (sshbuf_len(state->outgoing_packet) < 6)
1210 return SSH_ERR_INTERNAL_ERROR;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001211 type = sshbuf_ptr(state->outgoing_packet)[5];
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001212 need_rekey = !ssh_packet_type_is_kex(type) &&
1213 ssh_packet_need_rekeying(ssh, sshbuf_len(state->outgoing_packet));
Damien Millera5539d22003-04-09 20:50:06 +10001214
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001215 /*
1216 * During rekeying we can only send key exchange messages.
1217 * Queue everything else.
1218 */
1219 if ((need_rekey || state->rekeying) && !ssh_packet_type_is_kex(type)) {
1220 if (need_rekey)
1221 debug3("%s: rekex triggered", __func__);
1222 debug("enqueue packet: %u", type);
1223 p = calloc(1, sizeof(*p));
1224 if (p == NULL)
1225 return SSH_ERR_ALLOC_FAIL;
1226 p->type = type;
1227 p->payload = state->outgoing_packet;
1228 TAILQ_INSERT_TAIL(&state->outgoing, p, next);
1229 state->outgoing_packet = sshbuf_new();
1230 if (state->outgoing_packet == NULL)
1231 return SSH_ERR_ALLOC_FAIL;
1232 if (need_rekey) {
1233 /*
1234 * This packet triggered a rekey, so send the
1235 * KEXINIT now.
1236 * NB. reenters this function via kex_start_rekex().
1237 */
1238 return kex_start_rekex(ssh);
Damien Millera5539d22003-04-09 20:50:06 +10001239 }
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001240 return 0;
Damien Millera5539d22003-04-09 20:50:06 +10001241 }
1242
1243 /* rekeying starts with sending KEXINIT */
1244 if (type == SSH2_MSG_KEXINIT)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001245 state->rekeying = 1;
Damien Millera5539d22003-04-09 20:50:06 +10001246
markus@openbsd.org091c3022015-01-19 19:52:16 +00001247 if ((r = ssh_packet_send2_wrapped(ssh)) != 0)
1248 return r;
Damien Millera5539d22003-04-09 20:50:06 +10001249
1250 /* after a NEWKEYS message we can send the complete queue */
1251 if (type == SSH2_MSG_NEWKEYS) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001252 state->rekeying = 0;
1253 state->rekey_time = monotime();
1254 while ((p = TAILQ_FIRST(&state->outgoing))) {
Damien Millera5539d22003-04-09 20:50:06 +10001255 type = p->type;
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001256 /*
1257 * If this packet triggers a rekex, then skip the
1258 * remaining packets in the queue for now.
1259 * NB. re-enters this function via kex_start_rekex.
1260 */
1261 if (ssh_packet_need_rekeying(ssh,
1262 sshbuf_len(p->payload))) {
1263 debug3("%s: queued packet triggered rekex",
1264 __func__);
1265 return kex_start_rekex(ssh);
1266 }
Damien Millera5539d22003-04-09 20:50:06 +10001267 debug("dequeue packet: %u", type);
markus@openbsd.org091c3022015-01-19 19:52:16 +00001268 sshbuf_free(state->outgoing_packet);
1269 state->outgoing_packet = p->payload;
1270 TAILQ_REMOVE(&state->outgoing, p, next);
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001271 memset(p, 0, sizeof(*p));
Darren Tuckera627d422013-06-02 07:31:17 +10001272 free(p);
markus@openbsd.org091c3022015-01-19 19:52:16 +00001273 if ((r = ssh_packet_send2_wrapped(ssh)) != 0)
1274 return r;
Damien Millera5539d22003-04-09 20:50:06 +10001275 }
1276 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001277 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10001278}
1279
Damien Miller33b13562000-04-04 14:38:59 +10001280/*
Damien Miller5428f641999-11-25 11:54:57 +11001281 * Waits until a packet has been received, and returns its type. Note that
1282 * no other data is processed until this returns, so this function should not
1283 * be used during the interactive session.
1284 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001285
1286int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001287ssh_packet_read_seqnr(struct ssh *ssh, u_char *typep, u_int32_t *seqnr_p)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001288{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001289 struct session_state *state = ssh->state;
markus@openbsd.orga3068632016-01-14 16:17:39 +00001290 int len, r, ms_remain;
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001291 fd_set *setp;
Damien Miller95def091999-11-25 00:26:21 +11001292 char buf[8192];
Darren Tucker3fc464e2008-06-13 06:42:45 +10001293 struct timeval timeout, start, *timeoutp = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001294
Darren Tucker99bb7612008-06-13 22:02:50 +10001295 DBG(debug("packet_read()"));
1296
deraadt@openbsd.orgce445b02015-08-20 22:32:42 +00001297 setp = calloc(howmany(state->connection_in + 1,
Darren Tuckerf7288d72009-06-21 18:12:20 +10001298 NFDBITS), sizeof(fd_mask));
markus@openbsd.org091c3022015-01-19 19:52:16 +00001299 if (setp == NULL)
1300 return SSH_ERR_ALLOC_FAIL;
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001301
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001302 /*
1303 * Since we are blocking, ensure that all written packets have
1304 * been sent.
1305 */
markus@openbsd.org4daeb672015-03-24 20:10:08 +00001306 if ((r = ssh_packet_write_wait(ssh)) != 0)
1307 goto out;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001308
Damien Miller95def091999-11-25 00:26:21 +11001309 /* Stay in the loop until we have received a complete packet. */
1310 for (;;) {
1311 /* Try to read a packet from the buffer. */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001312 r = ssh_packet_read_poll_seqnr(ssh, typep, seqnr_p);
1313 if (r != 0)
1314 break;
Damien Miller95def091999-11-25 00:26:21 +11001315 /* If we got a packet, return it. */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001316 if (*typep != SSH_MSG_NONE)
1317 break;
Damien Miller5428f641999-11-25 11:54:57 +11001318 /*
1319 * Otherwise, wait for some data to arrive, add it to the
1320 * buffer, and try again.
1321 */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001322 memset(setp, 0, howmany(state->connection_in + 1,
Darren Tuckerf7288d72009-06-21 18:12:20 +10001323 NFDBITS) * sizeof(fd_mask));
markus@openbsd.org091c3022015-01-19 19:52:16 +00001324 FD_SET(state->connection_in, setp);
Damien Miller5428f641999-11-25 11:54:57 +11001325
markus@openbsd.org091c3022015-01-19 19:52:16 +00001326 if (state->packet_timeout_ms > 0) {
1327 ms_remain = state->packet_timeout_ms;
Darren Tucker3fc464e2008-06-13 06:42:45 +10001328 timeoutp = &timeout;
1329 }
Damien Miller95def091999-11-25 00:26:21 +11001330 /* Wait for some data to arrive. */
Darren Tucker3fc464e2008-06-13 06:42:45 +10001331 for (;;) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001332 if (state->packet_timeout_ms != -1) {
Darren Tucker3fc464e2008-06-13 06:42:45 +10001333 ms_to_timeval(&timeout, ms_remain);
dtucker@openbsd.org@openbsd.org5db6fbf2017-11-25 06:46:22 +00001334 monotime_tv(&start);
Darren Tucker3fc464e2008-06-13 06:42:45 +10001335 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001336 if ((r = select(state->connection_in + 1, setp,
Darren Tuckerf7288d72009-06-21 18:12:20 +10001337 NULL, NULL, timeoutp)) >= 0)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001338 break;
Damien Millerea437422009-10-02 11:49:03 +10001339 if (errno != EAGAIN && errno != EINTR &&
dtucker@openbsd.org1da59342018-05-25 03:20:59 +00001340 errno != EWOULDBLOCK) {
1341 r = SSH_ERR_SYSTEM_ERROR;
1342 goto out;
1343 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001344 if (state->packet_timeout_ms == -1)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001345 continue;
1346 ms_subtract_diff(&start, &ms_remain);
1347 if (ms_remain <= 0) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001348 r = 0;
Darren Tucker3fc464e2008-06-13 06:42:45 +10001349 break;
1350 }
1351 }
djm@openbsd.orgd7abb772017-02-28 06:10:08 +00001352 if (r == 0) {
1353 r = SSH_ERR_CONN_TIMEOUT;
1354 goto out;
1355 }
Damien Miller95def091999-11-25 00:26:21 +11001356 /* Read data from the socket. */
markus@openbsd.orga3068632016-01-14 16:17:39 +00001357 len = read(state->connection_in, buf, sizeof(buf));
markus@openbsd.org4daeb672015-03-24 20:10:08 +00001358 if (len == 0) {
1359 r = SSH_ERR_CONN_CLOSED;
1360 goto out;
1361 }
1362 if (len < 0) {
1363 r = SSH_ERR_SYSTEM_ERROR;
1364 goto out;
1365 }
djm@openbsd.orgfae7bbe2015-01-28 21:15:47 +00001366
Damien Miller95def091999-11-25 00:26:21 +11001367 /* Append it to the buffer. */
djm@openbsd.orgfae7bbe2015-01-28 21:15:47 +00001368 if ((r = ssh_packet_process_incoming(ssh, buf, len)) != 0)
markus@openbsd.org4daeb672015-03-24 20:10:08 +00001369 goto out;
Damien Miller95def091999-11-25 00:26:21 +11001370 }
markus@openbsd.org4daeb672015-03-24 20:10:08 +00001371 out:
markus@openbsd.org091c3022015-01-19 19:52:16 +00001372 free(setp);
1373 return r;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001374}
1375
Damien Miller278f9072001-12-21 15:00:19 +11001376int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001377ssh_packet_read(struct ssh *ssh)
Damien Miller278f9072001-12-21 15:00:19 +11001378{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001379 u_char type;
1380 int r;
1381
1382 if ((r = ssh_packet_read_seqnr(ssh, &type, NULL)) != 0)
1383 fatal("%s: %s", __func__, ssh_err(r));
1384 return type;
Damien Miller278f9072001-12-21 15:00:19 +11001385}
1386
Damien Miller5428f641999-11-25 11:54:57 +11001387/*
1388 * Waits until a packet has been received, verifies that its type matches
1389 * that given, and gives a fatal error and exits if there is a mismatch.
1390 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001391
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001392int
1393ssh_packet_read_expect(struct ssh *ssh, u_int expected_type)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001394{
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001395 int r;
1396 u_char type;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001397
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001398 if ((r = ssh_packet_read_seqnr(ssh, &type, NULL)) != 0)
1399 return r;
1400 if (type != expected_type) {
1401 if ((r = sshpkt_disconnect(ssh,
markus@openbsd.org091c3022015-01-19 19:52:16 +00001402 "Protocol error: expected packet type %d, got %d",
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001403 expected_type, type)) != 0)
1404 return r;
1405 return SSH_ERR_PROTOCOL_ERROR;
1406 }
1407 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001408}
1409
markus@openbsd.org8d057842016-09-30 09:19:13 +00001410static int
1411ssh_packet_read_poll2_mux(struct ssh *ssh, u_char *typep, u_int32_t *seqnr_p)
1412{
1413 struct session_state *state = ssh->state;
1414 const u_char *cp;
1415 size_t need;
1416 int r;
1417
1418 if (ssh->kex)
1419 return SSH_ERR_INTERNAL_ERROR;
1420 *typep = SSH_MSG_NONE;
1421 cp = sshbuf_ptr(state->input);
1422 if (state->packlen == 0) {
1423 if (sshbuf_len(state->input) < 4 + 1)
1424 return 0; /* packet is incomplete */
1425 state->packlen = PEEK_U32(cp);
1426 if (state->packlen < 4 + 1 ||
1427 state->packlen > PACKET_MAX_SIZE)
1428 return SSH_ERR_MESSAGE_INCOMPLETE;
1429 }
1430 need = state->packlen + 4;
1431 if (sshbuf_len(state->input) < need)
1432 return 0; /* packet is incomplete */
1433 sshbuf_reset(state->incoming_packet);
1434 if ((r = sshbuf_put(state->incoming_packet, cp + 4,
1435 state->packlen)) != 0 ||
1436 (r = sshbuf_consume(state->input, need)) != 0 ||
1437 (r = sshbuf_get_u8(state->incoming_packet, NULL)) != 0 ||
1438 (r = sshbuf_get_u8(state->incoming_packet, typep)) != 0)
1439 return r;
1440 if (ssh_packet_log_type(*typep))
1441 debug3("%s: type %u", __func__, *typep);
1442 /* sshbuf_dump(state->incoming_packet, stderr); */
1443 /* reset for next packet */
1444 state->packlen = 0;
1445 return r;
1446}
1447
markus@openbsd.org091c3022015-01-19 19:52:16 +00001448int
1449ssh_packet_read_poll2(struct ssh *ssh, u_char *typep, u_int32_t *seqnr_p)
Damien Miller33b13562000-04-04 14:38:59 +10001450{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001451 struct session_state *state = ssh->state;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001452 u_int padlen, need;
djm@openbsd.org6d311932016-07-08 03:44:42 +00001453 u_char *cp;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001454 u_int maclen, aadlen = 0, authlen = 0, block_size;
1455 struct sshenc *enc = NULL;
1456 struct sshmac *mac = NULL;
1457 struct sshcomp *comp = NULL;
markus@openbsd.org128343b2015-01-13 19:31:40 +00001458 int r;
Damien Miller33b13562000-04-04 14:38:59 +10001459
markus@openbsd.org8d057842016-09-30 09:19:13 +00001460 if (state->mux)
1461 return ssh_packet_read_poll2_mux(ssh, typep, seqnr_p);
1462
markus@openbsd.org091c3022015-01-19 19:52:16 +00001463 *typep = SSH_MSG_NONE;
Damien Miller13ae44c2009-01-28 16:38:41 +11001464
markus@openbsd.org091c3022015-01-19 19:52:16 +00001465 if (state->packet_discard)
1466 return 0;
1467
1468 if (state->newkeys[MODE_IN] != NULL) {
1469 enc = &state->newkeys[MODE_IN]->enc;
1470 mac = &state->newkeys[MODE_IN]->mac;
1471 comp = &state->newkeys[MODE_IN]->comp;
Damien Miller1d75abf2013-01-09 16:12:19 +11001472 /* disable mac for authenticated encryption */
1473 if ((authlen = cipher_authlen(enc->cipher)) != 0)
1474 mac = NULL;
Damien Miller33b13562000-04-04 14:38:59 +10001475 }
1476 maclen = mac && mac->enabled ? mac->mac_len : 0;
Damien Miller963f6b22002-02-19 15:21:23 +11001477 block_size = enc ? enc->block_size : 8;
Damien Miller1d75abf2013-01-09 16:12:19 +11001478 aadlen = (mac && mac->enabled && mac->etm) || authlen ? 4 : 0;
Damien Miller33b13562000-04-04 14:38:59 +10001479
markus@openbsd.org091c3022015-01-19 19:52:16 +00001480 if (aadlen && state->packlen == 0) {
djm@openbsd.org4706c1d2016-08-03 05:41:57 +00001481 if (cipher_get_length(state->receive_context,
markus@openbsd.org091c3022015-01-19 19:52:16 +00001482 &state->packlen, state->p_read.seqnr,
1483 sshbuf_ptr(state->input), sshbuf_len(state->input)) != 0)
1484 return 0;
1485 if (state->packlen < 1 + 4 ||
1486 state->packlen > PACKET_MAX_SIZE) {
Damien Milleraf43a7a2012-12-12 10:46:31 +11001487#ifdef PACKET_DEBUG
markus@openbsd.org091c3022015-01-19 19:52:16 +00001488 sshbuf_dump(state->input, stderr);
Damien Milleraf43a7a2012-12-12 10:46:31 +11001489#endif
markus@openbsd.org091c3022015-01-19 19:52:16 +00001490 logit("Bad packet length %u.", state->packlen);
1491 if ((r = sshpkt_disconnect(ssh, "Packet corrupt")) != 0)
1492 return r;
djm@openbsd.org2fecfd42015-11-08 21:59:11 +00001493 return SSH_ERR_CONN_CORRUPT;
Damien Milleraf43a7a2012-12-12 10:46:31 +11001494 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001495 sshbuf_reset(state->incoming_packet);
1496 } else if (state->packlen == 0) {
Damien Miller33b13562000-04-04 14:38:59 +10001497 /*
1498 * check if input size is less than the cipher block size,
1499 * decrypt first block and extract length of incoming packet
1500 */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001501 if (sshbuf_len(state->input) < block_size)
1502 return 0;
1503 sshbuf_reset(state->incoming_packet);
1504 if ((r = sshbuf_reserve(state->incoming_packet, block_size,
1505 &cp)) != 0)
1506 goto out;
djm@openbsd.org4706c1d2016-08-03 05:41:57 +00001507 if ((r = cipher_crypt(state->receive_context,
markus@openbsd.org091c3022015-01-19 19:52:16 +00001508 state->p_send.seqnr, cp, sshbuf_ptr(state->input),
1509 block_size, 0, 0)) != 0)
1510 goto out;
1511 state->packlen = PEEK_U32(sshbuf_ptr(state->incoming_packet));
1512 if (state->packlen < 1 + 4 ||
1513 state->packlen > PACKET_MAX_SIZE) {
Darren Tuckera8151da2003-09-22 21:06:46 +10001514#ifdef PACKET_DEBUG
markus@openbsd.org091c3022015-01-19 19:52:16 +00001515 fprintf(stderr, "input: \n");
1516 sshbuf_dump(state->input, stderr);
1517 fprintf(stderr, "incoming_packet: \n");
1518 sshbuf_dump(state->incoming_packet, stderr);
Darren Tuckera8151da2003-09-22 21:06:46 +10001519#endif
markus@openbsd.org091c3022015-01-19 19:52:16 +00001520 logit("Bad packet length %u.", state->packlen);
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +00001521 return ssh_packet_start_discard(ssh, enc, mac, 0,
1522 PACKET_MAX_SIZE);
Damien Miller33b13562000-04-04 14:38:59 +10001523 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001524 if ((r = sshbuf_consume(state->input, block_size)) != 0)
1525 goto out;
Damien Miller33b13562000-04-04 14:38:59 +10001526 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001527 DBG(debug("input: packet len %u", state->packlen+4));
1528
Damien Milleraf43a7a2012-12-12 10:46:31 +11001529 if (aadlen) {
1530 /* only the payload is encrypted */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001531 need = state->packlen;
Damien Milleraf43a7a2012-12-12 10:46:31 +11001532 } else {
1533 /*
1534 * the payload size and the payload are encrypted, but we
1535 * have a partial packet of block_size bytes
1536 */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001537 need = 4 + state->packlen - block_size;
Damien Milleraf43a7a2012-12-12 10:46:31 +11001538 }
Damien Miller1d75abf2013-01-09 16:12:19 +11001539 DBG(debug("partial packet: block %d, need %d, maclen %d, authlen %d,"
1540 " aadlen %d", block_size, need, maclen, authlen, aadlen));
Darren Tucker99d11a32008-12-01 21:40:48 +11001541 if (need % block_size != 0) {
1542 logit("padding error: need %d block %d mod %d",
Damien Miller33b13562000-04-04 14:38:59 +10001543 need, block_size, need % block_size);
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +00001544 return ssh_packet_start_discard(ssh, enc, mac, 0,
1545 PACKET_MAX_SIZE - block_size);
Darren Tucker99d11a32008-12-01 21:40:48 +11001546 }
Damien Miller33b13562000-04-04 14:38:59 +10001547 /*
1548 * check if the entire packet has been received and
Damien Milleraf43a7a2012-12-12 10:46:31 +11001549 * decrypt into incoming_packet:
1550 * 'aadlen' bytes are unencrypted, but authenticated.
Damien Miller1d75abf2013-01-09 16:12:19 +11001551 * 'need' bytes are encrypted, followed by either
1552 * 'authlen' bytes of authentication tag or
Damien Milleraf43a7a2012-12-12 10:46:31 +11001553 * 'maclen' bytes of message authentication code.
Damien Miller33b13562000-04-04 14:38:59 +10001554 */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001555 if (sshbuf_len(state->input) < aadlen + need + authlen + maclen)
djm@openbsd.org6d311932016-07-08 03:44:42 +00001556 return 0; /* packet is incomplete */
Damien Miller33b13562000-04-04 14:38:59 +10001557#ifdef PACKET_DEBUG
1558 fprintf(stderr, "read_poll enc/full: ");
markus@openbsd.org091c3022015-01-19 19:52:16 +00001559 sshbuf_dump(state->input, stderr);
Damien Miller33b13562000-04-04 14:38:59 +10001560#endif
djm@openbsd.org6d311932016-07-08 03:44:42 +00001561 /* EtM: check mac over encrypted input */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001562 if (mac && mac->enabled && mac->etm) {
djm@openbsd.org6d311932016-07-08 03:44:42 +00001563 if ((r = mac_check(mac, state->p_read.seqnr,
markus@openbsd.org091c3022015-01-19 19:52:16 +00001564 sshbuf_ptr(state->input), aadlen + need,
djm@openbsd.org6d311932016-07-08 03:44:42 +00001565 sshbuf_ptr(state->input) + aadlen + need + authlen,
1566 maclen)) != 0) {
1567 if (r == SSH_ERR_MAC_INVALID)
1568 logit("Corrupted MAC on input.");
markus@openbsd.org091c3022015-01-19 19:52:16 +00001569 goto out;
djm@openbsd.org6d311932016-07-08 03:44:42 +00001570 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001571 }
1572 if ((r = sshbuf_reserve(state->incoming_packet, aadlen + need,
1573 &cp)) != 0)
1574 goto out;
djm@openbsd.org4706c1d2016-08-03 05:41:57 +00001575 if ((r = cipher_crypt(state->receive_context, state->p_read.seqnr, cp,
markus@openbsd.org091c3022015-01-19 19:52:16 +00001576 sshbuf_ptr(state->input), need, aadlen, authlen)) != 0)
1577 goto out;
1578 if ((r = sshbuf_consume(state->input, aadlen + need + authlen)) != 0)
1579 goto out;
Damien Miller4af51302000-04-16 11:18:38 +10001580 if (mac && mac->enabled) {
djm@openbsd.org6d311932016-07-08 03:44:42 +00001581 /* Not EtM: check MAC over cleartext */
1582 if (!mac->etm && (r = mac_check(mac, state->p_read.seqnr,
1583 sshbuf_ptr(state->incoming_packet),
1584 sshbuf_len(state->incoming_packet),
1585 sshbuf_ptr(state->input), maclen)) != 0) {
1586 if (r != SSH_ERR_MAC_INVALID)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001587 goto out;
Damien Miller13ae44c2009-01-28 16:38:41 +11001588 logit("Corrupted MAC on input.");
markus@openbsd.org0fb1a612017-03-11 13:07:35 +00001589 if (need + block_size > PACKET_MAX_SIZE)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001590 return SSH_ERR_INTERNAL_ERROR;
1591 return ssh_packet_start_discard(ssh, enc, mac,
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +00001592 sshbuf_len(state->incoming_packet),
markus@openbsd.org0fb1a612017-03-11 13:07:35 +00001593 PACKET_MAX_SIZE - need - block_size);
Damien Miller13ae44c2009-01-28 16:38:41 +11001594 }
djm@openbsd.org6d311932016-07-08 03:44:42 +00001595 /* Remove MAC from input buffer */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001596 DBG(debug("MAC #%d ok", state->p_read.seqnr));
1597 if ((r = sshbuf_consume(state->input, mac->mac_len)) != 0)
1598 goto out;
Damien Miller33b13562000-04-04 14:38:59 +10001599 }
Damien Miller278f9072001-12-21 15:00:19 +11001600 if (seqnr_p != NULL)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001601 *seqnr_p = state->p_read.seqnr;
1602 if (++state->p_read.seqnr == 0)
Damien Miller996acd22003-04-09 20:59:48 +10001603 logit("incoming seqnr wraps around");
markus@openbsd.org091c3022015-01-19 19:52:16 +00001604 if (++state->p_read.packets == 0)
1605 if (!(ssh->compat & SSH_BUG_NOREKEY))
1606 return SSH_ERR_NEED_REKEY;
1607 state->p_read.blocks += (state->packlen + 4) / block_size;
1608 state->p_read.bytes += state->packlen + 4;
Damien Miller33b13562000-04-04 14:38:59 +10001609
1610 /* get padlen */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001611 padlen = sshbuf_ptr(state->incoming_packet)[4];
Damien Miller33b13562000-04-04 14:38:59 +10001612 DBG(debug("input: padlen %d", padlen));
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001613 if (padlen < 4) {
1614 if ((r = sshpkt_disconnect(ssh,
1615 "Corrupted padlen %d on input.", padlen)) != 0 ||
1616 (r = ssh_packet_write_wait(ssh)) != 0)
1617 return r;
1618 return SSH_ERR_CONN_CORRUPT;
1619 }
Damien Miller33b13562000-04-04 14:38:59 +10001620
1621 /* skip packet size + padlen, discard padding */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001622 if ((r = sshbuf_consume(state->incoming_packet, 4 + 1)) != 0 ||
1623 ((r = sshbuf_consume_end(state->incoming_packet, padlen)) != 0))
1624 goto out;
Damien Miller33b13562000-04-04 14:38:59 +10001625
markus@openbsd.org091c3022015-01-19 19:52:16 +00001626 DBG(debug("input: len before de-compress %zd",
1627 sshbuf_len(state->incoming_packet)));
Damien Miller33b13562000-04-04 14:38:59 +10001628 if (comp && comp->enabled) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001629 sshbuf_reset(state->compression_buffer);
1630 if ((r = uncompress_buffer(ssh, state->incoming_packet,
1631 state->compression_buffer)) != 0)
1632 goto out;
1633 sshbuf_reset(state->incoming_packet);
1634 if ((r = sshbuf_putb(state->incoming_packet,
1635 state->compression_buffer)) != 0)
1636 goto out;
1637 DBG(debug("input: len after de-compress %zd",
1638 sshbuf_len(state->incoming_packet)));
Damien Miller33b13562000-04-04 14:38:59 +10001639 }
1640 /*
1641 * get packet type, implies consume.
1642 * return length of payload (without type field)
1643 */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001644 if ((r = sshbuf_get_u8(state->incoming_packet, typep)) != 0)
1645 goto out;
djm@openbsd.org28136472016-01-29 05:46:01 +00001646 if (ssh_packet_log_type(*typep))
1647 debug3("receive packet: type %u", *typep);
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001648 if (*typep < SSH2_MSG_MIN || *typep >= SSH2_MSG_LOCAL_MIN) {
1649 if ((r = sshpkt_disconnect(ssh,
1650 "Invalid ssh2 packet type: %d", *typep)) != 0 ||
1651 (r = ssh_packet_write_wait(ssh)) != 0)
1652 return r;
1653 return SSH_ERR_PROTOCOL_ERROR;
1654 }
djm@openbsd.org39af7b42016-10-11 21:47:45 +00001655 if (state->hook_in != NULL &&
1656 (r = state->hook_in(ssh, state->incoming_packet, typep,
1657 state->hook_in_ctx)) != 0)
1658 return r;
markus@openbsd.org28652bc2016-09-19 19:02:19 +00001659 if (*typep == SSH2_MSG_USERAUTH_SUCCESS && !state->server_side)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001660 r = ssh_packet_enable_delayed_compress(ssh);
1661 else
1662 r = 0;
Damien Miller33b13562000-04-04 14:38:59 +10001663#ifdef PACKET_DEBUG
markus@openbsd.org091c3022015-01-19 19:52:16 +00001664 fprintf(stderr, "read/plain[%d]:\r\n", *typep);
1665 sshbuf_dump(state->incoming_packet, stderr);
Damien Miller33b13562000-04-04 14:38:59 +10001666#endif
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001667 /* reset for next packet */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001668 state->packlen = 0;
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001669
1670 /* do we need to rekey? */
1671 if (ssh_packet_need_rekeying(ssh, 0)) {
1672 debug3("%s: rekex triggered", __func__);
1673 if ((r = kex_start_rekex(ssh)) != 0)
1674 return r;
1675 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001676 out:
1677 return r;
Damien Miller33b13562000-04-04 14:38:59 +10001678}
1679
1680int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001681ssh_packet_read_poll_seqnr(struct ssh *ssh, u_char *typep, u_int32_t *seqnr_p)
Damien Miller33b13562000-04-04 14:38:59 +10001682{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001683 struct session_state *state = ssh->state;
Ben Lindstrom3f584742002-06-23 21:49:25 +00001684 u_int reason, seqnr;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001685 int r;
1686 u_char *msg;
Damien Miller33b13562000-04-04 14:38:59 +10001687
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001688 for (;;) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001689 msg = NULL;
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001690 r = ssh_packet_read_poll2(ssh, typep, seqnr_p);
1691 if (r != 0)
1692 return r;
1693 if (*typep) {
1694 state->keep_alive_timeouts = 0;
1695 DBG(debug("received packet type %d", *typep));
1696 }
1697 switch (*typep) {
1698 case SSH2_MSG_IGNORE:
1699 debug3("Received SSH2_MSG_IGNORE");
1700 break;
1701 case SSH2_MSG_DEBUG:
1702 if ((r = sshpkt_get_u8(ssh, NULL)) != 0 ||
1703 (r = sshpkt_get_string(ssh, &msg, NULL)) != 0 ||
1704 (r = sshpkt_get_string(ssh, NULL, NULL)) != 0) {
1705 free(msg);
markus@openbsd.org091c3022015-01-19 19:52:16 +00001706 return r;
Darren Tucker136e56f2008-06-08 12:49:30 +10001707 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001708 debug("Remote: %.900s", msg);
1709 free(msg);
1710 break;
1711 case SSH2_MSG_DISCONNECT:
1712 if ((r = sshpkt_get_u32(ssh, &reason)) != 0 ||
1713 (r = sshpkt_get_string(ssh, &msg, NULL)) != 0)
1714 return r;
1715 /* Ignore normal client exit notifications */
1716 do_log2(ssh->state->server_side &&
1717 reason == SSH2_DISCONNECT_BY_APPLICATION ?
1718 SYSLOG_LEVEL_INFO : SYSLOG_LEVEL_ERROR,
1719 "Received disconnect from %s port %d:"
1720 "%u: %.400s", ssh_remote_ipaddr(ssh),
1721 ssh_remote_port(ssh), reason, msg);
1722 free(msg);
1723 return SSH_ERR_DISCONNECTED;
1724 case SSH2_MSG_UNIMPLEMENTED:
1725 if ((r = sshpkt_get_u32(ssh, &seqnr)) != 0)
1726 return r;
1727 debug("Received SSH2_MSG_UNIMPLEMENTED for %u",
1728 seqnr);
1729 break;
1730 default:
1731 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10001732 }
1733 }
1734}
1735
Damien Miller5428f641999-11-25 11:54:57 +11001736/*
1737 * Buffers the given amount of input characters. This is intended to be used
1738 * together with packet_read_poll.
1739 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001740
djm@openbsd.orgfae7bbe2015-01-28 21:15:47 +00001741int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001742ssh_packet_process_incoming(struct ssh *ssh, const char *buf, u_int len)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001743{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001744 struct session_state *state = ssh->state;
1745 int r;
1746
1747 if (state->packet_discard) {
1748 state->keep_alive_timeouts = 0; /* ?? */
1749 if (len >= state->packet_discard) {
1750 if ((r = ssh_packet_stop_discard(ssh)) != 0)
djm@openbsd.orgfae7bbe2015-01-28 21:15:47 +00001751 return r;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001752 }
1753 state->packet_discard -= len;
djm@openbsd.orgfae7bbe2015-01-28 21:15:47 +00001754 return 0;
Damien Miller13ae44c2009-01-28 16:38:41 +11001755 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001756 if ((r = sshbuf_put(ssh->state->input, buf, len)) != 0)
djm@openbsd.orgfae7bbe2015-01-28 21:15:47 +00001757 return r;
1758
1759 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10001760}
1761
Damien Miller4af51302000-04-16 11:18:38 +10001762int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001763ssh_packet_remaining(struct ssh *ssh)
Damien Miller4af51302000-04-16 11:18:38 +10001764{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001765 return sshbuf_len(ssh->state->incoming_packet);
Damien Millerda108ec2010-08-31 22:36:39 +10001766}
1767
Damien Miller5428f641999-11-25 11:54:57 +11001768/*
1769 * Sends a diagnostic message from the server to the client. This message
1770 * can be sent at any time (but not while constructing another message). The
1771 * message is printed immediately, but only if the client is being executed
1772 * in verbose mode. These messages are primarily intended to ease debugging
1773 * authentication problems. The length of the formatted message must not
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001774 * exceed 1024 bytes. This will automatically call ssh_packet_write_wait.
Damien Miller5428f641999-11-25 11:54:57 +11001775 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001776void
markus@openbsd.org091c3022015-01-19 19:52:16 +00001777ssh_packet_send_debug(struct ssh *ssh, const char *fmt,...)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001778{
Damien Miller95def091999-11-25 00:26:21 +11001779 char buf[1024];
1780 va_list args;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001781 int r;
Damien Miller95def091999-11-25 00:26:21 +11001782
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001783 if ((ssh->compat & SSH_BUG_DEBUG))
Ben Lindstroma14ee472000-12-07 01:24:58 +00001784 return;
1785
Damien Miller95def091999-11-25 00:26:21 +11001786 va_start(args, fmt);
1787 vsnprintf(buf, sizeof(buf), fmt, args);
1788 va_end(args);
1789
djm@openbsd.orgeb80e262017-10-13 21:13:54 +00001790 debug3("sending debug message: %s", buf);
1791
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001792 if ((r = sshpkt_start(ssh, SSH2_MSG_DEBUG)) != 0 ||
1793 (r = sshpkt_put_u8(ssh, 0)) != 0 || /* always display */
1794 (r = sshpkt_put_cstring(ssh, buf)) != 0 ||
1795 (r = sshpkt_put_cstring(ssh, "")) != 0 ||
1796 (r = sshpkt_send(ssh)) != 0 ||
1797 (r = ssh_packet_write_wait(ssh)) != 0)
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001798 fatal("%s: %s", __func__, ssh_err(r));
1799}
1800
dtucker@openbsd.org48c23a32017-12-10 05:55:29 +00001801void
1802sshpkt_fmt_connection_id(struct ssh *ssh, char *s, size_t l)
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001803{
1804 snprintf(s, l, "%.200s%s%s port %d",
1805 ssh->log_preamble ? ssh->log_preamble : "",
1806 ssh->log_preamble ? " " : "",
1807 ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
1808}
1809
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001810/*
1811 * Pretty-print connection-terminating errors and exit.
1812 */
djm@openbsd.orgad60b112019-01-19 21:33:13 +00001813static void
1814sshpkt_vfatal(struct ssh *ssh, int r, const char *fmt, va_list ap)
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001815{
djm@openbsd.orgad60b112019-01-19 21:33:13 +00001816 char *tag = NULL, remote_id[512];
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001817
dtucker@openbsd.org48c23a32017-12-10 05:55:29 +00001818 sshpkt_fmt_connection_id(ssh, remote_id, sizeof(remote_id));
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001819
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001820 switch (r) {
1821 case SSH_ERR_CONN_CLOSED:
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001822 ssh_packet_clear_keys(ssh);
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001823 logdie("Connection closed by %s", remote_id);
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001824 case SSH_ERR_CONN_TIMEOUT:
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001825 ssh_packet_clear_keys(ssh);
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001826 logdie("Connection %s %s timed out",
1827 ssh->state->server_side ? "from" : "to", remote_id);
djm@openbsd.org639d6bc2015-05-01 07:10:01 +00001828 case SSH_ERR_DISCONNECTED:
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001829 ssh_packet_clear_keys(ssh);
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001830 logdie("Disconnected from %s", remote_id);
djm@openbsd.org639d6bc2015-05-01 07:10:01 +00001831 case SSH_ERR_SYSTEM_ERROR:
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001832 if (errno == ECONNRESET) {
1833 ssh_packet_clear_keys(ssh);
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001834 logdie("Connection reset by %s", remote_id);
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001835 }
djm@openbsd.org639d6bc2015-05-01 07:10:01 +00001836 /* FALLTHROUGH */
djm@openbsd.orgf3199122015-07-29 04:43:06 +00001837 case SSH_ERR_NO_CIPHER_ALG_MATCH:
1838 case SSH_ERR_NO_MAC_ALG_MATCH:
1839 case SSH_ERR_NO_COMPRESS_ALG_MATCH:
1840 case SSH_ERR_NO_KEX_ALG_MATCH:
1841 case SSH_ERR_NO_HOSTKEY_ALG_MATCH:
1842 if (ssh && ssh->kex && ssh->kex->failed_choice) {
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001843 ssh_packet_clear_keys(ssh);
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001844 logdie("Unable to negotiate with %s: %s. "
1845 "Their offer: %s", remote_id, ssh_err(r),
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +00001846 ssh->kex->failed_choice);
djm@openbsd.orgf3199122015-07-29 04:43:06 +00001847 }
1848 /* FALLTHROUGH */
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001849 default:
djm@openbsd.orgad60b112019-01-19 21:33:13 +00001850 if (vasprintf(&tag, fmt, ap) == -1) {
1851 ssh_packet_clear_keys(ssh);
1852 logdie("%s: could not allocate failure message",
1853 __func__);
1854 }
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001855 ssh_packet_clear_keys(ssh);
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001856 logdie("%s%sConnection %s %s: %s",
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001857 tag != NULL ? tag : "", tag != NULL ? ": " : "",
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +00001858 ssh->state->server_side ? "from" : "to",
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001859 remote_id, ssh_err(r));
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001860 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001861}
1862
djm@openbsd.orgad60b112019-01-19 21:33:13 +00001863void
1864sshpkt_fatal(struct ssh *ssh, int r, const char *fmt, ...)
1865{
1866 va_list ap;
1867
1868 va_start(ap, fmt);
1869 sshpkt_vfatal(ssh, r, fmt, ap);
1870 /* NOTREACHED */
1871 va_end(ap);
1872 logdie("%s: should have exited", __func__);
1873}
1874
Damien Miller5428f641999-11-25 11:54:57 +11001875/*
1876 * Logs the error plus constructs and sends a disconnect packet, closes the
1877 * connection, and exits. This function never returns. The error message
1878 * should not contain a newline. The length of the formatted message must
1879 * not exceed 1024 bytes.
1880 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001881void
markus@openbsd.org091c3022015-01-19 19:52:16 +00001882ssh_packet_disconnect(struct ssh *ssh, const char *fmt,...)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001883{
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001884 char buf[1024], remote_id[512];
Damien Miller95def091999-11-25 00:26:21 +11001885 va_list args;
1886 static int disconnecting = 0;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001887 int r;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001888
Damien Miller95def091999-11-25 00:26:21 +11001889 if (disconnecting) /* Guard against recursive invocations. */
1890 fatal("packet_disconnect called recursively.");
1891 disconnecting = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001892
Damien Miller5428f641999-11-25 11:54:57 +11001893 /*
1894 * Format the message. Note that the caller must make sure the
1895 * message is of limited size.
1896 */
dtucker@openbsd.org48c23a32017-12-10 05:55:29 +00001897 sshpkt_fmt_connection_id(ssh, remote_id, sizeof(remote_id));
Damien Miller95def091999-11-25 00:26:21 +11001898 va_start(args, fmt);
1899 vsnprintf(buf, sizeof(buf), fmt, args);
1900 va_end(args);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001901
Ben Lindstrom9bda7ae2002-11-09 15:46:24 +00001902 /* Display the error locally */
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001903 logit("Disconnecting %s: %.100s", remote_id, buf);
Ben Lindstrom9bda7ae2002-11-09 15:46:24 +00001904
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001905 /*
1906 * Send the disconnect message to the other side, and wait
1907 * for it to get sent.
1908 */
1909 if ((r = sshpkt_disconnect(ssh, "%s", buf)) != 0)
djm@openbsd.orgad60b112019-01-19 21:33:13 +00001910 sshpkt_fatal(ssh, r, "%s", __func__);
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001911
1912 if ((r = ssh_packet_write_wait(ssh)) != 0)
djm@openbsd.orgad60b112019-01-19 21:33:13 +00001913 sshpkt_fatal(ssh, r, "%s", __func__);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001914
Damien Miller95def091999-11-25 00:26:21 +11001915 /* Close the connection. */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001916 ssh_packet_close(ssh);
Darren Tucker3e33cec2003-10-02 16:12:36 +10001917 cleanup_exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001918}
1919
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001920/*
1921 * Checks if there is any buffered output, and tries to write some of
1922 * the output.
1923 */
1924int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001925ssh_packet_write_poll(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001926{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001927 struct session_state *state = ssh->state;
1928 int len = sshbuf_len(state->output);
markus@openbsd.orga3068632016-01-14 16:17:39 +00001929 int r;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001930
Damien Miller95def091999-11-25 00:26:21 +11001931 if (len > 0) {
markus@openbsd.orga3068632016-01-14 16:17:39 +00001932 len = write(state->connection_out,
1933 sshbuf_ptr(state->output), len);
Damien Millerd874fa52008-07-05 09:40:56 +10001934 if (len == -1) {
Damien Millerea437422009-10-02 11:49:03 +10001935 if (errno == EINTR || errno == EAGAIN ||
1936 errno == EWOULDBLOCK)
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001937 return 0;
1938 return SSH_ERR_SYSTEM_ERROR;
Damien Miller95def091999-11-25 00:26:21 +11001939 }
markus@openbsd.orga3068632016-01-14 16:17:39 +00001940 if (len == 0)
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001941 return SSH_ERR_CONN_CLOSED;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001942 if ((r = sshbuf_consume(state->output, len)) != 0)
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001943 return r;
Damien Miller95def091999-11-25 00:26:21 +11001944 }
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001945 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001946}
1947
Damien Miller5428f641999-11-25 11:54:57 +11001948/*
1949 * Calls packet_write_poll repeatedly until all pending output data has been
1950 * written.
1951 */
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001952int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001953ssh_packet_write_wait(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001954{
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001955 fd_set *setp;
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001956 int ret, r, ms_remain = 0;
Darren Tucker3fc464e2008-06-13 06:42:45 +10001957 struct timeval start, timeout, *timeoutp = NULL;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001958 struct session_state *state = ssh->state;
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001959
deraadt@openbsd.orgce445b02015-08-20 22:32:42 +00001960 setp = calloc(howmany(state->connection_out + 1,
Darren Tuckerf7288d72009-06-21 18:12:20 +10001961 NFDBITS), sizeof(fd_mask));
markus@openbsd.org091c3022015-01-19 19:52:16 +00001962 if (setp == NULL)
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001963 return SSH_ERR_ALLOC_FAIL;
gsoares@openbsd.org66d2e222015-10-21 11:33:03 +00001964 if ((r = ssh_packet_write_poll(ssh)) != 0) {
1965 free(setp);
djm@openbsd.org84082182015-09-21 04:31:00 +00001966 return r;
gsoares@openbsd.org66d2e222015-10-21 11:33:03 +00001967 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001968 while (ssh_packet_have_data_to_write(ssh)) {
1969 memset(setp, 0, howmany(state->connection_out + 1,
Darren Tuckerf7288d72009-06-21 18:12:20 +10001970 NFDBITS) * sizeof(fd_mask));
markus@openbsd.org091c3022015-01-19 19:52:16 +00001971 FD_SET(state->connection_out, setp);
Darren Tucker3fc464e2008-06-13 06:42:45 +10001972
markus@openbsd.org091c3022015-01-19 19:52:16 +00001973 if (state->packet_timeout_ms > 0) {
1974 ms_remain = state->packet_timeout_ms;
Darren Tucker3fc464e2008-06-13 06:42:45 +10001975 timeoutp = &timeout;
1976 }
1977 for (;;) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001978 if (state->packet_timeout_ms != -1) {
Darren Tucker3fc464e2008-06-13 06:42:45 +10001979 ms_to_timeval(&timeout, ms_remain);
dtucker@openbsd.org@openbsd.org5db6fbf2017-11-25 06:46:22 +00001980 monotime_tv(&start);
Darren Tucker3fc464e2008-06-13 06:42:45 +10001981 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001982 if ((ret = select(state->connection_out + 1,
Darren Tuckerf7288d72009-06-21 18:12:20 +10001983 NULL, setp, NULL, timeoutp)) >= 0)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001984 break;
Damien Millerea437422009-10-02 11:49:03 +10001985 if (errno != EAGAIN && errno != EINTR &&
1986 errno != EWOULDBLOCK)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001987 break;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001988 if (state->packet_timeout_ms == -1)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001989 continue;
1990 ms_subtract_diff(&start, &ms_remain);
1991 if (ms_remain <= 0) {
1992 ret = 0;
1993 break;
1994 }
1995 }
1996 if (ret == 0) {
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001997 free(setp);
1998 return SSH_ERR_CONN_TIMEOUT;
Darren Tucker3fc464e2008-06-13 06:42:45 +10001999 }
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00002000 if ((r = ssh_packet_write_poll(ssh)) != 0) {
2001 free(setp);
2002 return r;
2003 }
Damien Miller95def091999-11-25 00:26:21 +11002004 }
Darren Tuckera627d422013-06-02 07:31:17 +10002005 free(setp);
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00002006 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002007}
2008
2009/* Returns true if there is buffered data to write to the connection. */
2010
2011int
markus@openbsd.org091c3022015-01-19 19:52:16 +00002012ssh_packet_have_data_to_write(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002013{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002014 return sshbuf_len(ssh->state->output) != 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002015}
2016
2017/* Returns true if there is not too much data to write to the connection. */
2018
2019int
markus@openbsd.org091c3022015-01-19 19:52:16 +00002020ssh_packet_not_very_much_data_to_write(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002021{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002022 if (ssh->state->interactive_mode)
2023 return sshbuf_len(ssh->state->output) < 16384;
Damien Miller95def091999-11-25 00:26:21 +11002024 else
markus@openbsd.org091c3022015-01-19 19:52:16 +00002025 return sshbuf_len(ssh->state->output) < 128 * 1024;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002026}
2027
markus@openbsd.org091c3022015-01-19 19:52:16 +00002028void
2029ssh_packet_set_tos(struct ssh *ssh, int tos)
Ben Lindstroma7433982002-12-23 02:41:41 +00002030{
Damien Millerd2ac5d72011-05-15 08:43:13 +10002031#ifndef IP_TOS_IS_BROKEN
djm@openbsd.org51676ec2017-07-23 23:37:02 +00002032 if (!ssh_packet_connection_is_on_socket(ssh) || tos == INT_MAX)
Ben Lindstroma7433982002-12-23 02:41:41 +00002033 return;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002034 switch (ssh_packet_connection_af(ssh)) {
Damien Millerd2ac5d72011-05-15 08:43:13 +10002035# ifdef IP_TOS
2036 case AF_INET:
2037 debug3("%s: set IP_TOS 0x%02x", __func__, tos);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002038 if (setsockopt(ssh->state->connection_in,
Damien Millerd2ac5d72011-05-15 08:43:13 +10002039 IPPROTO_IP, IP_TOS, &tos, sizeof(tos)) < 0)
2040 error("setsockopt IP_TOS %d: %.100s:",
2041 tos, strerror(errno));
2042 break;
2043# endif /* IP_TOS */
2044# ifdef IPV6_TCLASS
2045 case AF_INET6:
2046 debug3("%s: set IPV6_TCLASS 0x%02x", __func__, tos);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002047 if (setsockopt(ssh->state->connection_in,
Damien Millerd2ac5d72011-05-15 08:43:13 +10002048 IPPROTO_IPV6, IPV6_TCLASS, &tos, sizeof(tos)) < 0)
2049 error("setsockopt IPV6_TCLASS %d: %.100s:",
2050 tos, strerror(errno));
2051 break;
Damien Millerd2ac5d72011-05-15 08:43:13 +10002052# endif /* IPV6_TCLASS */
Damien Miller23f425b2011-05-15 08:58:15 +10002053 }
Damien Millerd2ac5d72011-05-15 08:43:13 +10002054#endif /* IP_TOS_IS_BROKEN */
Damien Miller5924ceb2003-11-22 15:02:42 +11002055}
Ben Lindstroma7433982002-12-23 02:41:41 +00002056
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002057/* Informs that the current session is interactive. Sets IP flags for that. */
2058
2059void
markus@openbsd.org091c3022015-01-19 19:52:16 +00002060ssh_packet_set_interactive(struct ssh *ssh, int interactive, int qos_interactive, int qos_bulk)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002061{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002062 struct session_state *state = ssh->state;
2063
2064 if (state->set_interactive_called)
Ben Lindstrombf555ba2001-01-18 02:04:35 +00002065 return;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002066 state->set_interactive_called = 1;
Ben Lindstrombf555ba2001-01-18 02:04:35 +00002067
Damien Miller95def091999-11-25 00:26:21 +11002068 /* Record that we are in interactive mode. */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002069 state->interactive_mode = interactive;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002070
Damien Miller34132e52000-01-14 15:45:46 +11002071 /* Only set socket options if using a socket. */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002072 if (!ssh_packet_connection_is_on_socket(ssh))
Ben Lindstrom93b6b772003-04-27 17:55:33 +00002073 return;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002074 set_nodelay(state->connection_in);
2075 ssh_packet_set_tos(ssh, interactive ? qos_interactive :
2076 qos_bulk);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002077}
2078
2079/* Returns true if the current connection is interactive. */
2080
2081int
markus@openbsd.org091c3022015-01-19 19:52:16 +00002082ssh_packet_is_interactive(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002083{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002084 return ssh->state->interactive_mode;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002085}
Damien Miller6162d121999-11-21 13:23:52 +11002086
Darren Tucker1f8311c2004-05-13 16:39:33 +10002087int
markus@openbsd.org091c3022015-01-19 19:52:16 +00002088ssh_packet_set_maxsize(struct ssh *ssh, u_int s)
Damien Miller6162d121999-11-21 13:23:52 +11002089{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002090 struct session_state *state = ssh->state;
2091
2092 if (state->set_maxsize_called) {
Damien Miller996acd22003-04-09 20:59:48 +10002093 logit("packet_set_maxsize: called twice: old %d new %d",
markus@openbsd.org091c3022015-01-19 19:52:16 +00002094 state->max_packet_size, s);
Damien Miller95def091999-11-25 00:26:21 +11002095 return -1;
2096 }
2097 if (s < 4 * 1024 || s > 1024 * 1024) {
Damien Miller996acd22003-04-09 20:59:48 +10002098 logit("packet_set_maxsize: bad size %d", s);
Damien Miller95def091999-11-25 00:26:21 +11002099 return -1;
2100 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00002101 state->set_maxsize_called = 1;
Ben Lindstrom16d45b32001-06-13 04:39:18 +00002102 debug("packet_set_maxsize: setting to %d", s);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002103 state->max_packet_size = s;
Damien Miller95def091999-11-25 00:26:21 +11002104 return s;
Damien Miller6162d121999-11-21 13:23:52 +11002105}
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00002106
Darren Tuckerf7288d72009-06-21 18:12:20 +10002107int
markus@openbsd.org091c3022015-01-19 19:52:16 +00002108ssh_packet_inc_alive_timeouts(struct ssh *ssh)
Darren Tuckerf7288d72009-06-21 18:12:20 +10002109{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002110 return ++ssh->state->keep_alive_timeouts;
Darren Tuckerf7288d72009-06-21 18:12:20 +10002111}
2112
2113void
markus@openbsd.org091c3022015-01-19 19:52:16 +00002114ssh_packet_set_alive_timeouts(struct ssh *ssh, int ka)
Darren Tuckerf7288d72009-06-21 18:12:20 +10002115{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002116 ssh->state->keep_alive_timeouts = ka;
Darren Tuckerf7288d72009-06-21 18:12:20 +10002117}
2118
2119u_int
markus@openbsd.org091c3022015-01-19 19:52:16 +00002120ssh_packet_get_maxsize(struct ssh *ssh)
Darren Tuckerf7288d72009-06-21 18:12:20 +10002121{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002122 return ssh->state->max_packet_size;
Damien Miller9f643902001-11-12 11:02:52 +11002123}
2124
Damien Millera5539d22003-04-09 20:50:06 +10002125void
dtucker@openbsd.orgc998bf02017-02-03 02:56:00 +00002126ssh_packet_set_rekey_limits(struct ssh *ssh, u_int64_t bytes, u_int32_t seconds)
Damien Millera5539d22003-04-09 20:50:06 +10002127{
dtucker@openbsd.orgc998bf02017-02-03 02:56:00 +00002128 debug3("rekey after %llu bytes, %u seconds", (unsigned long long)bytes,
2129 (unsigned int)seconds);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002130 ssh->state->rekey_limit = bytes;
2131 ssh->state->rekey_interval = seconds;
Darren Tuckerc53c2af2013-05-16 20:28:16 +10002132}
2133
2134time_t
markus@openbsd.org091c3022015-01-19 19:52:16 +00002135ssh_packet_get_rekey_timeout(struct ssh *ssh)
Darren Tuckerc53c2af2013-05-16 20:28:16 +10002136{
2137 time_t seconds;
2138
markus@openbsd.org091c3022015-01-19 19:52:16 +00002139 seconds = ssh->state->rekey_time + ssh->state->rekey_interval -
Darren Tuckerb759c9c2013-06-02 07:46:16 +10002140 monotime();
Darren Tucker5f96f3b2013-05-16 20:29:28 +10002141 return (seconds <= 0 ? 1 : seconds);
Damien Millera5539d22003-04-09 20:50:06 +10002142}
Damien Miller9786e6e2005-07-26 21:54:56 +10002143
2144void
markus@openbsd.org091c3022015-01-19 19:52:16 +00002145ssh_packet_set_server(struct ssh *ssh)
Damien Miller9786e6e2005-07-26 21:54:56 +10002146{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002147 ssh->state->server_side = 1;
djm@openbsd.org0a843d92018-12-27 03:25:24 +00002148 ssh->kex->server = 1; /* XXX unify? */
Damien Miller9786e6e2005-07-26 21:54:56 +10002149}
2150
2151void
markus@openbsd.org091c3022015-01-19 19:52:16 +00002152ssh_packet_set_authenticated(struct ssh *ssh)
Damien Miller9786e6e2005-07-26 21:54:56 +10002153{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002154 ssh->state->after_authentication = 1;
Darren Tuckerf7288d72009-06-21 18:12:20 +10002155}
2156
2157void *
markus@openbsd.org091c3022015-01-19 19:52:16 +00002158ssh_packet_get_input(struct ssh *ssh)
Darren Tuckerf7288d72009-06-21 18:12:20 +10002159{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002160 return (void *)ssh->state->input;
Darren Tuckerf7288d72009-06-21 18:12:20 +10002161}
2162
2163void *
markus@openbsd.org091c3022015-01-19 19:52:16 +00002164ssh_packet_get_output(struct ssh *ssh)
Darren Tuckerf7288d72009-06-21 18:12:20 +10002165{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002166 return (void *)ssh->state->output;
Darren Tuckerf7288d72009-06-21 18:12:20 +10002167}
2168
Damien Millerc31a0cd2014-05-15 14:37:39 +10002169/* Reset after_authentication and reset compression in post-auth privsep */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002170static int
2171ssh_packet_set_postauth(struct ssh *ssh)
Damien Millerc31a0cd2014-05-15 14:37:39 +10002172{
djm@openbsd.org0082fba2016-09-28 16:33:06 +00002173 int r;
Damien Millerc31a0cd2014-05-15 14:37:39 +10002174
2175 debug("%s: called", __func__);
2176 /* This was set in net child, but is not visible in user child */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002177 ssh->state->after_authentication = 1;
2178 ssh->state->rekeying = 0;
djm@openbsd.org0082fba2016-09-28 16:33:06 +00002179 if ((r = ssh_packet_enable_delayed_compress(ssh)) != 0)
2180 return r;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002181 return 0;
2182}
2183
2184/* Packet state (de-)serialization for privsep */
2185
2186/* turn kex into a blob for packet state serialization */
2187static int
2188kex_to_blob(struct sshbuf *m, struct kex *kex)
2189{
2190 int r;
2191
2192 if ((r = sshbuf_put_string(m, kex->session_id,
2193 kex->session_id_len)) != 0 ||
2194 (r = sshbuf_put_u32(m, kex->we_need)) != 0 ||
djm@openbsd.org349ecd42017-12-18 23:13:42 +00002195 (r = sshbuf_put_cstring(m, kex->hostkey_alg)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +00002196 (r = sshbuf_put_u32(m, kex->hostkey_type)) != 0 ||
djm@openbsd.org349ecd42017-12-18 23:13:42 +00002197 (r = sshbuf_put_u32(m, kex->hostkey_nid)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +00002198 (r = sshbuf_put_u32(m, kex->kex_type)) != 0 ||
2199 (r = sshbuf_put_stringb(m, kex->my)) != 0 ||
2200 (r = sshbuf_put_stringb(m, kex->peer)) != 0 ||
djm@openbsd.org0a843d92018-12-27 03:25:24 +00002201 (r = sshbuf_put_stringb(m, kex->client_version)) != 0 ||
2202 (r = sshbuf_put_stringb(m, kex->server_version)) != 0 ||
2203 (r = sshbuf_put_u32(m, kex->flags)) != 0)
markus@openbsd.org091c3022015-01-19 19:52:16 +00002204 return r;
2205 return 0;
2206}
2207
2208/* turn key exchange results into a blob for packet state serialization */
2209static int
2210newkeys_to_blob(struct sshbuf *m, struct ssh *ssh, int mode)
2211{
2212 struct sshbuf *b;
2213 struct sshcipher_ctx *cc;
2214 struct sshcomp *comp;
2215 struct sshenc *enc;
2216 struct sshmac *mac;
2217 struct newkeys *newkey;
2218 int r;
2219
2220 if ((newkey = ssh->state->newkeys[mode]) == NULL)
2221 return SSH_ERR_INTERNAL_ERROR;
2222 enc = &newkey->enc;
2223 mac = &newkey->mac;
2224 comp = &newkey->comp;
djm@openbsd.org4706c1d2016-08-03 05:41:57 +00002225 cc = (mode == MODE_OUT) ? ssh->state->send_context :
2226 ssh->state->receive_context;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002227 if ((r = cipher_get_keyiv(cc, enc->iv, enc->iv_len)) != 0)
2228 return r;
2229 if ((b = sshbuf_new()) == NULL)
2230 return SSH_ERR_ALLOC_FAIL;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002231 if ((r = sshbuf_put_cstring(b, enc->name)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +00002232 (r = sshbuf_put_u32(b, enc->enabled)) != 0 ||
2233 (r = sshbuf_put_u32(b, enc->block_size)) != 0 ||
2234 (r = sshbuf_put_string(b, enc->key, enc->key_len)) != 0 ||
2235 (r = sshbuf_put_string(b, enc->iv, enc->iv_len)) != 0)
2236 goto out;
2237 if (cipher_authlen(enc->cipher) == 0) {
2238 if ((r = sshbuf_put_cstring(b, mac->name)) != 0 ||
2239 (r = sshbuf_put_u32(b, mac->enabled)) != 0 ||
2240 (r = sshbuf_put_string(b, mac->key, mac->key_len)) != 0)
2241 goto out;
2242 }
2243 if ((r = sshbuf_put_u32(b, comp->type)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +00002244 (r = sshbuf_put_cstring(b, comp->name)) != 0)
2245 goto out;
2246 r = sshbuf_put_stringb(m, b);
2247 out:
mmcc@openbsd.org52d70782015-12-11 04:21:11 +00002248 sshbuf_free(b);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002249 return r;
2250}
2251
2252/* serialize packet state into a blob */
2253int
2254ssh_packet_get_state(struct ssh *ssh, struct sshbuf *m)
2255{
2256 struct session_state *state = ssh->state;
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002257 int r;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002258
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002259 if ((r = kex_to_blob(m, ssh->kex)) != 0 ||
2260 (r = newkeys_to_blob(m, ssh, MODE_OUT)) != 0 ||
2261 (r = newkeys_to_blob(m, ssh, MODE_IN)) != 0 ||
2262 (r = sshbuf_put_u64(m, state->rekey_limit)) != 0 ||
2263 (r = sshbuf_put_u32(m, state->rekey_interval)) != 0 ||
2264 (r = sshbuf_put_u32(m, state->p_send.seqnr)) != 0 ||
2265 (r = sshbuf_put_u64(m, state->p_send.blocks)) != 0 ||
2266 (r = sshbuf_put_u32(m, state->p_send.packets)) != 0 ||
2267 (r = sshbuf_put_u64(m, state->p_send.bytes)) != 0 ||
2268 (r = sshbuf_put_u32(m, state->p_read.seqnr)) != 0 ||
2269 (r = sshbuf_put_u64(m, state->p_read.blocks)) != 0 ||
2270 (r = sshbuf_put_u32(m, state->p_read.packets)) != 0 ||
djm@openbsd.org7461a5b2017-05-08 00:21:36 +00002271 (r = sshbuf_put_u64(m, state->p_read.bytes)) != 0 ||
2272 (r = sshbuf_put_stringb(m, state->input)) != 0 ||
2273 (r = sshbuf_put_stringb(m, state->output)) != 0)
djm@openbsd.org2e58a692017-05-08 06:03:39 +00002274 return r;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002275
markus@openbsd.org091c3022015-01-19 19:52:16 +00002276 return 0;
2277}
2278
2279/* restore key exchange results from blob for packet state de-serialization */
2280static int
2281newkeys_from_blob(struct sshbuf *m, struct ssh *ssh, int mode)
2282{
2283 struct sshbuf *b = NULL;
2284 struct sshcomp *comp;
2285 struct sshenc *enc;
2286 struct sshmac *mac;
2287 struct newkeys *newkey = NULL;
2288 size_t keylen, ivlen, maclen;
2289 int r;
2290
2291 if ((newkey = calloc(1, sizeof(*newkey))) == NULL) {
2292 r = SSH_ERR_ALLOC_FAIL;
2293 goto out;
2294 }
2295 if ((r = sshbuf_froms(m, &b)) != 0)
2296 goto out;
2297#ifdef DEBUG_PK
2298 sshbuf_dump(b, stderr);
2299#endif
2300 enc = &newkey->enc;
2301 mac = &newkey->mac;
2302 comp = &newkey->comp;
2303
2304 if ((r = sshbuf_get_cstring(b, &enc->name, NULL)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +00002305 (r = sshbuf_get_u32(b, (u_int *)&enc->enabled)) != 0 ||
2306 (r = sshbuf_get_u32(b, &enc->block_size)) != 0 ||
2307 (r = sshbuf_get_string(b, &enc->key, &keylen)) != 0 ||
2308 (r = sshbuf_get_string(b, &enc->iv, &ivlen)) != 0)
2309 goto out;
djm@openbsd.org33f86262017-06-24 06:38:11 +00002310 if ((enc->cipher = cipher_by_name(enc->name)) == NULL) {
2311 r = SSH_ERR_INVALID_FORMAT;
2312 goto out;
2313 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00002314 if (cipher_authlen(enc->cipher) == 0) {
2315 if ((r = sshbuf_get_cstring(b, &mac->name, NULL)) != 0)
2316 goto out;
2317 if ((r = mac_setup(mac, mac->name)) != 0)
2318 goto out;
2319 if ((r = sshbuf_get_u32(b, (u_int *)&mac->enabled)) != 0 ||
2320 (r = sshbuf_get_string(b, &mac->key, &maclen)) != 0)
2321 goto out;
2322 if (maclen > mac->key_len) {
2323 r = SSH_ERR_INVALID_FORMAT;
2324 goto out;
2325 }
2326 mac->key_len = maclen;
2327 }
2328 if ((r = sshbuf_get_u32(b, &comp->type)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +00002329 (r = sshbuf_get_cstring(b, &comp->name, NULL)) != 0)
2330 goto out;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002331 if (sshbuf_len(b) != 0) {
2332 r = SSH_ERR_INVALID_FORMAT;
2333 goto out;
2334 }
2335 enc->key_len = keylen;
2336 enc->iv_len = ivlen;
2337 ssh->kex->newkeys[mode] = newkey;
2338 newkey = NULL;
2339 r = 0;
2340 out:
mmcc@openbsd.orgd59ce082015-12-10 17:08:40 +00002341 free(newkey);
mmcc@openbsd.org52d70782015-12-11 04:21:11 +00002342 sshbuf_free(b);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002343 return r;
2344}
2345
2346/* restore kex from blob for packet state de-serialization */
2347static int
2348kex_from_blob(struct sshbuf *m, struct kex **kexp)
2349{
2350 struct kex *kex;
2351 int r;
2352
djm@openbsd.org0a843d92018-12-27 03:25:24 +00002353 if ((kex = kex_new()) == NULL)
2354 return SSH_ERR_ALLOC_FAIL;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002355 if ((r = sshbuf_get_string(m, &kex->session_id, &kex->session_id_len)) != 0 ||
2356 (r = sshbuf_get_u32(m, &kex->we_need)) != 0 ||
djm@openbsd.org349ecd42017-12-18 23:13:42 +00002357 (r = sshbuf_get_cstring(m, &kex->hostkey_alg, NULL)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +00002358 (r = sshbuf_get_u32(m, (u_int *)&kex->hostkey_type)) != 0 ||
djm@openbsd.org349ecd42017-12-18 23:13:42 +00002359 (r = sshbuf_get_u32(m, (u_int *)&kex->hostkey_nid)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +00002360 (r = sshbuf_get_u32(m, &kex->kex_type)) != 0 ||
2361 (r = sshbuf_get_stringb(m, kex->my)) != 0 ||
2362 (r = sshbuf_get_stringb(m, kex->peer)) != 0 ||
djm@openbsd.org0a843d92018-12-27 03:25:24 +00002363 (r = sshbuf_get_stringb(m, kex->client_version)) != 0 ||
2364 (r = sshbuf_get_stringb(m, kex->server_version)) != 0 ||
2365 (r = sshbuf_get_u32(m, &kex->flags)) != 0)
markus@openbsd.org091c3022015-01-19 19:52:16 +00002366 goto out;
2367 kex->server = 1;
2368 kex->done = 1;
2369 r = 0;
2370 out:
2371 if (r != 0 || kexp == NULL) {
djm@openbsd.org0a843d92018-12-27 03:25:24 +00002372 kex_free(kex);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002373 if (kexp != NULL)
2374 *kexp = NULL;
2375 } else {
djm@openbsd.org0a843d92018-12-27 03:25:24 +00002376 kex_free(*kexp);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002377 *kexp = kex;
2378 }
2379 return r;
2380}
2381
2382/*
2383 * Restore packet state from content of blob 'm' (de-serialization).
2384 * Note that 'm' will be partially consumed on parsing or any other errors.
2385 */
2386int
2387ssh_packet_set_state(struct ssh *ssh, struct sshbuf *m)
2388{
2389 struct session_state *state = ssh->state;
djm@openbsd.orgacaf34f2017-05-07 23:12:57 +00002390 const u_char *input, *output;
2391 size_t ilen, olen;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002392 int r;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002393
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002394 if ((r = kex_from_blob(m, &ssh->kex)) != 0 ||
2395 (r = newkeys_from_blob(m, ssh, MODE_OUT)) != 0 ||
2396 (r = newkeys_from_blob(m, ssh, MODE_IN)) != 0 ||
2397 (r = sshbuf_get_u64(m, &state->rekey_limit)) != 0 ||
2398 (r = sshbuf_get_u32(m, &state->rekey_interval)) != 0 ||
2399 (r = sshbuf_get_u32(m, &state->p_send.seqnr)) != 0 ||
2400 (r = sshbuf_get_u64(m, &state->p_send.blocks)) != 0 ||
2401 (r = sshbuf_get_u32(m, &state->p_send.packets)) != 0 ||
2402 (r = sshbuf_get_u64(m, &state->p_send.bytes)) != 0 ||
2403 (r = sshbuf_get_u32(m, &state->p_read.seqnr)) != 0 ||
2404 (r = sshbuf_get_u64(m, &state->p_read.blocks)) != 0 ||
2405 (r = sshbuf_get_u32(m, &state->p_read.packets)) != 0 ||
2406 (r = sshbuf_get_u64(m, &state->p_read.bytes)) != 0)
2407 return r;
2408 /*
2409 * We set the time here so that in post-auth privsep slave we
2410 * count from the completion of the authentication.
2411 */
2412 state->rekey_time = monotime();
2413 /* XXX ssh_set_newkeys overrides p_read.packets? XXX */
2414 if ((r = ssh_set_newkeys(ssh, MODE_IN)) != 0 ||
2415 (r = ssh_set_newkeys(ssh, MODE_OUT)) != 0)
2416 return r;
2417
djm@openbsd.org0082fba2016-09-28 16:33:06 +00002418 if ((r = ssh_packet_set_postauth(ssh)) != 0)
markus@openbsd.org091c3022015-01-19 19:52:16 +00002419 return r;
2420
2421 sshbuf_reset(state->input);
2422 sshbuf_reset(state->output);
2423 if ((r = sshbuf_get_string_direct(m, &input, &ilen)) != 0 ||
2424 (r = sshbuf_get_string_direct(m, &output, &olen)) != 0 ||
2425 (r = sshbuf_put(state->input, input, ilen)) != 0 ||
2426 (r = sshbuf_put(state->output, output, olen)) != 0)
2427 return r;
2428
markus@openbsd.org091c3022015-01-19 19:52:16 +00002429 if (sshbuf_len(m))
2430 return SSH_ERR_INVALID_FORMAT;
2431 debug3("%s: done", __func__);
2432 return 0;
2433}
2434
2435/* NEW API */
2436
2437/* put data to the outgoing packet */
2438
2439int
2440sshpkt_put(struct ssh *ssh, const void *v, size_t len)
2441{
2442 return sshbuf_put(ssh->state->outgoing_packet, v, len);
2443}
2444
2445int
2446sshpkt_putb(struct ssh *ssh, const struct sshbuf *b)
2447{
2448 return sshbuf_putb(ssh->state->outgoing_packet, b);
2449}
2450
2451int
2452sshpkt_put_u8(struct ssh *ssh, u_char val)
2453{
2454 return sshbuf_put_u8(ssh->state->outgoing_packet, val);
2455}
2456
2457int
2458sshpkt_put_u32(struct ssh *ssh, u_int32_t val)
2459{
2460 return sshbuf_put_u32(ssh->state->outgoing_packet, val);
2461}
2462
2463int
2464sshpkt_put_u64(struct ssh *ssh, u_int64_t val)
2465{
2466 return sshbuf_put_u64(ssh->state->outgoing_packet, val);
2467}
2468
2469int
2470sshpkt_put_string(struct ssh *ssh, const void *v, size_t len)
2471{
2472 return sshbuf_put_string(ssh->state->outgoing_packet, v, len);
2473}
2474
2475int
2476sshpkt_put_cstring(struct ssh *ssh, const void *v)
2477{
2478 return sshbuf_put_cstring(ssh->state->outgoing_packet, v);
2479}
2480
2481int
2482sshpkt_put_stringb(struct ssh *ssh, const struct sshbuf *v)
2483{
2484 return sshbuf_put_stringb(ssh->state->outgoing_packet, v);
2485}
2486
djm@openbsd.org71e67ff2019-01-21 10:35:09 +00002487int
2488sshpkt_getb_froms(struct ssh *ssh, struct sshbuf **valp)
2489{
2490 return sshbuf_froms(ssh->state->incoming_packet, valp);
2491}
2492
djm@openbsd.org734226b2015-04-27 01:52:30 +00002493#ifdef WITH_OPENSSL
2494#ifdef OPENSSL_HAS_ECC
markus@openbsd.org091c3022015-01-19 19:52:16 +00002495int
2496sshpkt_put_ec(struct ssh *ssh, const EC_POINT *v, const EC_GROUP *g)
2497{
2498 return sshbuf_put_ec(ssh->state->outgoing_packet, v, g);
2499}
djm@openbsd.org734226b2015-04-27 01:52:30 +00002500#endif /* OPENSSL_HAS_ECC */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002501
markus@openbsd.org091c3022015-01-19 19:52:16 +00002502
2503int
2504sshpkt_put_bignum2(struct ssh *ssh, const BIGNUM *v)
2505{
2506 return sshbuf_put_bignum2(ssh->state->outgoing_packet, v);
2507}
Damien Miller773dda22015-01-30 23:10:17 +11002508#endif /* WITH_OPENSSL */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002509
2510/* fetch data from the incoming packet */
2511
2512int
2513sshpkt_get(struct ssh *ssh, void *valp, size_t len)
2514{
2515 return sshbuf_get(ssh->state->incoming_packet, valp, len);
2516}
2517
2518int
2519sshpkt_get_u8(struct ssh *ssh, u_char *valp)
2520{
2521 return sshbuf_get_u8(ssh->state->incoming_packet, valp);
2522}
2523
2524int
2525sshpkt_get_u32(struct ssh *ssh, u_int32_t *valp)
2526{
2527 return sshbuf_get_u32(ssh->state->incoming_packet, valp);
2528}
2529
2530int
2531sshpkt_get_u64(struct ssh *ssh, u_int64_t *valp)
2532{
2533 return sshbuf_get_u64(ssh->state->incoming_packet, valp);
2534}
2535
2536int
2537sshpkt_get_string(struct ssh *ssh, u_char **valp, size_t *lenp)
2538{
2539 return sshbuf_get_string(ssh->state->incoming_packet, valp, lenp);
2540}
2541
2542int
2543sshpkt_get_string_direct(struct ssh *ssh, const u_char **valp, size_t *lenp)
2544{
2545 return sshbuf_get_string_direct(ssh->state->incoming_packet, valp, lenp);
2546}
2547
2548int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002549sshpkt_peek_string_direct(struct ssh *ssh, const u_char **valp, size_t *lenp)
2550{
2551 return sshbuf_peek_string_direct(ssh->state->incoming_packet, valp, lenp);
2552}
2553
2554int
markus@openbsd.org091c3022015-01-19 19:52:16 +00002555sshpkt_get_cstring(struct ssh *ssh, char **valp, size_t *lenp)
2556{
2557 return sshbuf_get_cstring(ssh->state->incoming_packet, valp, lenp);
2558}
2559
djm@openbsd.org734226b2015-04-27 01:52:30 +00002560#ifdef WITH_OPENSSL
2561#ifdef OPENSSL_HAS_ECC
markus@openbsd.org091c3022015-01-19 19:52:16 +00002562int
2563sshpkt_get_ec(struct ssh *ssh, EC_POINT *v, const EC_GROUP *g)
2564{
2565 return sshbuf_get_ec(ssh->state->incoming_packet, v, g);
2566}
djm@openbsd.org734226b2015-04-27 01:52:30 +00002567#endif /* OPENSSL_HAS_ECC */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002568
markus@openbsd.org091c3022015-01-19 19:52:16 +00002569int
djm@openbsd.org7be85722019-01-21 09:54:11 +00002570sshpkt_get_bignum2(struct ssh *ssh, BIGNUM **valp)
markus@openbsd.org091c3022015-01-19 19:52:16 +00002571{
djm@openbsd.org7be85722019-01-21 09:54:11 +00002572 return sshbuf_get_bignum2(ssh->state->incoming_packet, valp);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002573}
Damien Miller773dda22015-01-30 23:10:17 +11002574#endif /* WITH_OPENSSL */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002575
2576int
2577sshpkt_get_end(struct ssh *ssh)
2578{
2579 if (sshbuf_len(ssh->state->incoming_packet) > 0)
2580 return SSH_ERR_UNEXPECTED_TRAILING_DATA;
2581 return 0;
2582}
2583
2584const u_char *
2585sshpkt_ptr(struct ssh *ssh, size_t *lenp)
2586{
2587 if (lenp != NULL)
2588 *lenp = sshbuf_len(ssh->state->incoming_packet);
2589 return sshbuf_ptr(ssh->state->incoming_packet);
2590}
2591
2592/* start a new packet */
2593
2594int
2595sshpkt_start(struct ssh *ssh, u_char type)
2596{
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002597 u_char buf[6]; /* u32 packet length, u8 pad len, u8 type */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002598
2599 DBG(debug("packet_start[%d]", type));
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002600 memset(buf, 0, sizeof(buf));
2601 buf[sizeof(buf) - 1] = type;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002602 sshbuf_reset(ssh->state->outgoing_packet);
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002603 return sshbuf_put(ssh->state->outgoing_packet, buf, sizeof(buf));
markus@openbsd.org091c3022015-01-19 19:52:16 +00002604}
2605
markus@openbsd.org8d057842016-09-30 09:19:13 +00002606static int
2607ssh_packet_send_mux(struct ssh *ssh)
2608{
2609 struct session_state *state = ssh->state;
2610 u_char type, *cp;
2611 size_t len;
2612 int r;
2613
2614 if (ssh->kex)
2615 return SSH_ERR_INTERNAL_ERROR;
2616 len = sshbuf_len(state->outgoing_packet);
2617 if (len < 6)
2618 return SSH_ERR_INTERNAL_ERROR;
2619 cp = sshbuf_mutable_ptr(state->outgoing_packet);
2620 type = cp[5];
2621 if (ssh_packet_log_type(type))
2622 debug3("%s: type %u", __func__, type);
2623 /* drop everything, but the connection protocol */
2624 if (type >= SSH2_MSG_CONNECTION_MIN &&
2625 type <= SSH2_MSG_CONNECTION_MAX) {
2626 POKE_U32(cp, len - 4);
2627 if ((r = sshbuf_putb(state->output,
2628 state->outgoing_packet)) != 0)
2629 return r;
2630 /* sshbuf_dump(state->output, stderr); */
2631 }
2632 sshbuf_reset(state->outgoing_packet);
2633 return 0;
2634}
2635
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002636/*
2637 * 9.2. Ignored Data Message
2638 *
2639 * byte SSH_MSG_IGNORE
2640 * string data
2641 *
2642 * All implementations MUST understand (and ignore) this message at any
2643 * time (after receiving the protocol version). No implementation is
2644 * required to send them. This message can be used as an additional
2645 * protection measure against advanced traffic analysis techniques.
2646 */
2647int
2648sshpkt_msg_ignore(struct ssh *ssh, u_int nbytes)
2649{
2650 u_int32_t rnd = 0;
2651 int r;
2652 u_int i;
2653
2654 if ((r = sshpkt_start(ssh, SSH2_MSG_IGNORE)) != 0 ||
2655 (r = sshpkt_put_u32(ssh, nbytes)) != 0)
2656 return r;
2657 for (i = 0; i < nbytes; i++) {
2658 if (i % 4 == 0)
2659 rnd = arc4random();
2660 if ((r = sshpkt_put_u8(ssh, (u_char)rnd & 0xff)) != 0)
2661 return r;
2662 rnd >>= 8;
2663 }
2664 return 0;
2665}
2666
markus@openbsd.org091c3022015-01-19 19:52:16 +00002667/* send it */
2668
2669int
2670sshpkt_send(struct ssh *ssh)
2671{
markus@openbsd.org8d057842016-09-30 09:19:13 +00002672 if (ssh->state && ssh->state->mux)
2673 return ssh_packet_send_mux(ssh);
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002674 return ssh_packet_send2(ssh);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002675}
2676
2677int
2678sshpkt_disconnect(struct ssh *ssh, const char *fmt,...)
2679{
2680 char buf[1024];
2681 va_list args;
2682 int r;
2683
2684 va_start(args, fmt);
2685 vsnprintf(buf, sizeof(buf), fmt, args);
2686 va_end(args);
2687
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002688 if ((r = sshpkt_start(ssh, SSH2_MSG_DISCONNECT)) != 0 ||
2689 (r = sshpkt_put_u32(ssh, SSH2_DISCONNECT_PROTOCOL_ERROR)) != 0 ||
2690 (r = sshpkt_put_cstring(ssh, buf)) != 0 ||
2691 (r = sshpkt_put_cstring(ssh, "")) != 0 ||
2692 (r = sshpkt_send(ssh)) != 0)
2693 return r;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002694 return 0;
2695}
2696
2697/* roundup current message to pad bytes */
2698int
2699sshpkt_add_padding(struct ssh *ssh, u_char pad)
2700{
2701 ssh->state->extra_pad = pad;
2702 return 0;
Damien Millerc31a0cd2014-05-15 14:37:39 +10002703}