blob: dcf35e6e626ab76207e6f3a69dbc17bc58c1aaff [file] [log] [blame]
djm@openbsd.orgde2997a2018-07-16 03:09:13 +00001/* $OpenBSD: packet.c,v 1.277 2018/07/16 03:09:13 djm Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11004 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * This file contains code implementing the packet protocol and communication
7 * with the other side. This same code is used both on client and server side.
Damien Miller33b13562000-04-04 14:38:59 +10008 *
Damien Millere4340be2000-09-16 13:29:08 +11009 * As far as I am concerned, the code I have written for this software
10 * can be used freely for any purpose. Any derived versions of this
11 * software must be clearly marked as such, and if the derived work is
12 * incompatible with the protocol description in the RFC file, it must be
13 * called by a name other than "ssh" or "Secure Shell".
Damien Miller33b13562000-04-04 14:38:59 +100014 *
Damien Millere4340be2000-09-16 13:29:08 +110015 *
16 * SSH2 packet format added by Markus Friedl.
Ben Lindstrom44697232001-07-04 03:32:30 +000017 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110018 *
19 * Redistribution and use in source and binary forms, with or without
20 * modification, are permitted provided that the following conditions
21 * are met:
22 * 1. Redistributions of source code must retain the above copyright
23 * notice, this list of conditions and the following disclaimer.
24 * 2. Redistributions in binary form must reproduce the above copyright
25 * notice, this list of conditions and the following disclaimer in the
26 * documentation and/or other materials provided with the distribution.
27 *
28 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
29 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
30 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
31 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
32 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
33 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
34 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
35 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
36 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
37 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110038 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100039
40#include "includes.h"
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +000041
Damien Millere3b60b52006-07-10 21:08:03 +100042#include <sys/types.h>
Damien Millera0898b82003-04-09 21:05:52 +100043#include "openbsd-compat/sys-queue.h"
Damien Miller8ec8c3e2006-07-10 20:35:38 +100044#include <sys/socket.h>
Damien Miller9aec9192006-08-05 10:57:45 +100045#ifdef HAVE_SYS_TIME_H
46# include <sys/time.h>
47#endif
Damien Miller8ec8c3e2006-07-10 20:35:38 +100048
Damien Miller8ec8c3e2006-07-10 20:35:38 +100049#include <netinet/in.h>
Damien Miller68f8e992006-03-15 11:24:12 +110050#include <netinet/ip.h>
Darren Tuckerdace2332006-09-22 19:22:17 +100051#include <arpa/inet.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100052
Darren Tucker39972492006-07-12 22:22:46 +100053#include <errno.h>
djm@openbsd.org95767262016-03-07 19:02:43 +000054#include <netdb.h>
Darren Tucker5d196262006-07-12 22:15:16 +100055#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100056#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100057#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100058#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100059#include <unistd.h>
deraadt@openbsd.org087266e2015-01-20 23:14:00 +000060#include <limits.h>
Damien Millerd7834352006-08-05 12:39:39 +100061#include <signal.h>
Darren Tuckerc53c2af2013-05-16 20:28:16 +100062#include <time.h>
Darren Tucker5d196262006-07-12 22:15:16 +100063
Darren Tuckerc77bc732018-07-20 13:48:51 +100064/*
65 * Explicitly include OpenSSL before zlib as some versions of OpenSSL have
66 * "free_func" in their headers, which zlib typedefs.
67 */
68#ifdef WITH_OPENSSL
69# include <openssl/bn.h>
70# include <openssl/evp.h>
71# ifdef OPENSSL_HAS_ECC
72# include <openssl/ec.h>
73# endif
74#endif
75
markus@openbsd.org091c3022015-01-19 19:52:16 +000076#include <zlib.h>
77
Damien Millerd4a8b7e1999-10-27 13:42:43 +100078#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100079#include "crc32.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 ||
231 (state->input = sshbuf_new()) == NULL ||
232 (state->output = sshbuf_new()) == NULL ||
233 (state->outgoing_packet = sshbuf_new()) == NULL ||
234 (state->incoming_packet = sshbuf_new()) == NULL)
235 goto fail;
236 TAILQ_INIT(&state->outgoing);
markus@openbsd.orgf582f0e2015-01-19 20:30:23 +0000237 TAILQ_INIT(&ssh->private_keys);
238 TAILQ_INIT(&ssh->public_keys);
markus@openbsd.org091c3022015-01-19 19:52:16 +0000239 state->connection_in = -1;
240 state->connection_out = -1;
241 state->max_packet_size = 32768;
242 state->packet_timeout_ms = -1;
243 state->p_send.packets = state->p_read.packets = 0;
244 state->initialized = 1;
245 /*
246 * ssh_packet_send2() needs to queue packets until
247 * we've done the initial key exchange.
248 */
249 state->rekeying = 1;
250 ssh->state = state;
251 return ssh;
252 fail:
253 if (state) {
254 sshbuf_free(state->input);
255 sshbuf_free(state->output);
256 sshbuf_free(state->incoming_packet);
257 sshbuf_free(state->outgoing_packet);
258 free(state);
259 }
260 free(ssh);
261 return NULL;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000262}
Damien Millera5539d22003-04-09 20:50:06 +1000263
djm@openbsd.org39af7b42016-10-11 21:47:45 +0000264void
265ssh_packet_set_input_hook(struct ssh *ssh, ssh_packet_hook_fn *hook, void *ctx)
266{
267 ssh->state->hook_in = hook;
268 ssh->state->hook_in_ctx = ctx;
269}
270
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000271/* Returns nonzero if rekeying is in progress */
272int
273ssh_packet_is_rekeying(struct ssh *ssh)
274{
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000275 return ssh->state->rekeying ||
276 (ssh->kex != NULL && ssh->kex->done == 0);
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000277}
278
Damien Miller5428f641999-11-25 11:54:57 +1100279/*
naddy@openbsd.org768405f2017-05-03 21:08:09 +0000280 * Sets the descriptors used for communication.
Damien Miller5428f641999-11-25 11:54:57 +1100281 */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000282struct ssh *
283ssh_packet_set_connection(struct ssh *ssh, int fd_in, int fd_out)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000284{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000285 struct session_state *state;
286 const struct sshcipher *none = cipher_by_name("none");
Damien Miller86687062014-07-02 15:28:02 +1000287 int r;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000288
djm@openbsd.org4509b5d2015-01-30 01:13:33 +0000289 if (none == NULL) {
290 error("%s: cannot load cipher 'none'", __func__);
291 return NULL;
292 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000293 if (ssh == NULL)
294 ssh = ssh_alloc_session_state();
djm@openbsd.org4509b5d2015-01-30 01:13:33 +0000295 if (ssh == NULL) {
296 error("%s: cound not allocate state", __func__);
297 return NULL;
298 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000299 state = ssh->state;
300 state->connection_in = fd_in;
301 state->connection_out = fd_out;
302 if ((r = cipher_init(&state->send_context, none,
Damien Miller86687062014-07-02 15:28:02 +1000303 (const u_char *)"", 0, NULL, 0, CIPHER_ENCRYPT)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +0000304 (r = cipher_init(&state->receive_context, none,
djm@openbsd.org4509b5d2015-01-30 01:13:33 +0000305 (const u_char *)"", 0, NULL, 0, CIPHER_DECRYPT)) != 0) {
306 error("%s: cipher_init failed: %s", __func__, ssh_err(r));
djm@openbsd.org95767262016-03-07 19:02:43 +0000307 free(ssh); /* XXX need ssh_free_session_state? */
djm@openbsd.org4509b5d2015-01-30 01:13:33 +0000308 return NULL;
309 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000310 state->newkeys[MODE_IN] = state->newkeys[MODE_OUT] = NULL;
djm@openbsd.orgd4c02952015-02-11 01:20:38 +0000311 /*
312 * Cache the IP address of the remote connection for use in error
313 * messages that might be generated after the connection has closed.
314 */
315 (void)ssh_remote_ipaddr(ssh);
markus@openbsd.org091c3022015-01-19 19:52:16 +0000316 return ssh;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000317}
318
Darren Tucker3fc464e2008-06-13 06:42:45 +1000319void
markus@openbsd.org091c3022015-01-19 19:52:16 +0000320ssh_packet_set_timeout(struct ssh *ssh, int timeout, int count)
Darren Tucker3fc464e2008-06-13 06:42:45 +1000321{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000322 struct session_state *state = ssh->state;
323
Damien Miller8ed4de82011-12-19 10:52:50 +1100324 if (timeout <= 0 || count <= 0) {
markus@openbsd.org091c3022015-01-19 19:52:16 +0000325 state->packet_timeout_ms = -1;
Darren Tucker3fc464e2008-06-13 06:42:45 +1000326 return;
327 }
328 if ((INT_MAX / 1000) / count < timeout)
markus@openbsd.org091c3022015-01-19 19:52:16 +0000329 state->packet_timeout_ms = INT_MAX;
Darren Tucker3fc464e2008-06-13 06:42:45 +1000330 else
markus@openbsd.org091c3022015-01-19 19:52:16 +0000331 state->packet_timeout_ms = timeout * count * 1000;
Darren Tucker3fc464e2008-06-13 06:42:45 +1000332}
333
markus@openbsd.org8d057842016-09-30 09:19:13 +0000334void
335ssh_packet_set_mux(struct ssh *ssh)
336{
337 ssh->state->mux = 1;
338 ssh->state->rekeying = 0;
339}
340
341int
342ssh_packet_get_mux(struct ssh *ssh)
343{
344 return ssh->state->mux;
345}
346
markus@openbsd.org091c3022015-01-19 19:52:16 +0000347int
djm@openbsd.org07edd7e2017-02-03 23:03:33 +0000348ssh_packet_set_log_preamble(struct ssh *ssh, const char *fmt, ...)
349{
350 va_list args;
351 int r;
352
353 free(ssh->log_preamble);
354 if (fmt == NULL)
355 ssh->log_preamble = NULL;
356 else {
357 va_start(args, fmt);
358 r = vasprintf(&ssh->log_preamble, fmt, args);
359 va_end(args);
360 if (r < 0 || ssh->log_preamble == NULL)
361 return SSH_ERR_ALLOC_FAIL;
362 }
363 return 0;
364}
365
366int
markus@openbsd.org091c3022015-01-19 19:52:16 +0000367ssh_packet_stop_discard(struct ssh *ssh)
Damien Miller13ae44c2009-01-28 16:38:41 +1100368{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000369 struct session_state *state = ssh->state;
370 int r;
371
372 if (state->packet_discard_mac) {
Damien Miller13ae44c2009-01-28 16:38:41 +1100373 char buf[1024];
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +0000374 size_t dlen = PACKET_MAX_SIZE;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000375
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +0000376 if (dlen > state->packet_discard_mac_already)
377 dlen -= state->packet_discard_mac_already;
Damien Miller13ae44c2009-01-28 16:38:41 +1100378 memset(buf, 'a', sizeof(buf));
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +0000379 while (sshbuf_len(state->incoming_packet) < dlen)
markus@openbsd.org091c3022015-01-19 19:52:16 +0000380 if ((r = sshbuf_put(state->incoming_packet, buf,
381 sizeof(buf))) != 0)
382 return r;
383 (void) mac_compute(state->packet_discard_mac,
384 state->p_read.seqnr,
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +0000385 sshbuf_ptr(state->incoming_packet), dlen,
markus@openbsd.org091c3022015-01-19 19:52:16 +0000386 NULL, 0);
Damien Miller13ae44c2009-01-28 16:38:41 +1100387 }
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +0000388 logit("Finished discarding for %.200s port %d",
389 ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
markus@openbsd.org091c3022015-01-19 19:52:16 +0000390 return SSH_ERR_MAC_INVALID;
Damien Miller13ae44c2009-01-28 16:38:41 +1100391}
392
markus@openbsd.org091c3022015-01-19 19:52:16 +0000393static int
394ssh_packet_start_discard(struct ssh *ssh, struct sshenc *enc,
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +0000395 struct sshmac *mac, size_t mac_already, u_int discard)
Damien Miller13ae44c2009-01-28 16:38:41 +1100396{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000397 struct session_state *state = ssh->state;
398 int r;
399
400 if (enc == NULL || !cipher_is_cbc(enc->cipher) || (mac && mac->etm)) {
401 if ((r = sshpkt_disconnect(ssh, "Packet corrupt")) != 0)
402 return r;
403 return SSH_ERR_MAC_INVALID;
404 }
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +0000405 /*
406 * Record number of bytes over which the mac has already
407 * been computed in order to minimize timing attacks.
408 */
409 if (mac && mac->enabled) {
markus@openbsd.org091c3022015-01-19 19:52:16 +0000410 state->packet_discard_mac = mac;
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +0000411 state->packet_discard_mac_already = mac_already;
412 }
413 if (sshbuf_len(state->input) >= discard)
414 return ssh_packet_stop_discard(ssh);
markus@openbsd.org091c3022015-01-19 19:52:16 +0000415 state->packet_discard = discard - sshbuf_len(state->input);
416 return 0;
Damien Miller13ae44c2009-01-28 16:38:41 +1100417}
418
Damien Miller34132e52000-01-14 15:45:46 +1100419/* Returns 1 if remote host is connected via socket, 0 if not. */
420
421int
markus@openbsd.org091c3022015-01-19 19:52:16 +0000422ssh_packet_connection_is_on_socket(struct ssh *ssh)
Damien Miller34132e52000-01-14 15:45:46 +1100423{
djm@openbsd.org854ae202018-06-01 04:05:29 +0000424 struct session_state *state;
Damien Miller34132e52000-01-14 15:45:46 +1100425 struct sockaddr_storage from, to;
426 socklen_t fromlen, tolen;
427
djm@openbsd.org854ae202018-06-01 04:05:29 +0000428 if (ssh == NULL || ssh->state == NULL)
djm@openbsd.org95767262016-03-07 19:02:43 +0000429 return 0;
430
djm@openbsd.org854ae202018-06-01 04:05:29 +0000431 state = ssh->state;
432 if (state->connection_in == -1 || state->connection_out == -1)
433 return 0;
Damien Miller34132e52000-01-14 15:45:46 +1100434 /* filedescriptors in and out are the same, so it's a socket */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000435 if (state->connection_in == state->connection_out)
Damien Miller34132e52000-01-14 15:45:46 +1100436 return 1;
437 fromlen = sizeof(from);
438 memset(&from, 0, sizeof(from));
markus@openbsd.org091c3022015-01-19 19:52:16 +0000439 if (getpeername(state->connection_in, (struct sockaddr *)&from,
Darren Tuckerf7288d72009-06-21 18:12:20 +1000440 &fromlen) < 0)
Damien Miller34132e52000-01-14 15:45:46 +1100441 return 0;
442 tolen = sizeof(to);
443 memset(&to, 0, sizeof(to));
markus@openbsd.org091c3022015-01-19 19:52:16 +0000444 if (getpeername(state->connection_out, (struct sockaddr *)&to,
Darren Tuckerf7288d72009-06-21 18:12:20 +1000445 &tolen) < 0)
Damien Miller34132e52000-01-14 15:45:46 +1100446 return 0;
447 if (fromlen != tolen || memcmp(&from, &to, fromlen) != 0)
448 return 0;
449 if (from.ss_family != AF_INET && from.ss_family != AF_INET6)
450 return 0;
451 return 1;
452}
453
Ben Lindstromf6027d32002-03-22 01:42:04 +0000454void
markus@openbsd.org091c3022015-01-19 19:52:16 +0000455ssh_packet_get_bytes(struct ssh *ssh, u_int64_t *ibytes, u_int64_t *obytes)
Ben Lindstromf6027d32002-03-22 01:42:04 +0000456{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000457 if (ibytes)
458 *ibytes = ssh->state->p_read.bytes;
459 if (obytes)
460 *obytes = ssh->state->p_send.bytes;
Ben Lindstromf6027d32002-03-22 01:42:04 +0000461}
462
463int
markus@openbsd.org091c3022015-01-19 19:52:16 +0000464ssh_packet_connection_af(struct ssh *ssh)
Damien Miller34132e52000-01-14 15:45:46 +1100465{
466 struct sockaddr_storage to;
Damien Miller6fe375d2000-01-23 09:38:00 +1100467 socklen_t tolen = sizeof(to);
Damien Miller34132e52000-01-14 15:45:46 +1100468
469 memset(&to, 0, sizeof(to));
markus@openbsd.org091c3022015-01-19 19:52:16 +0000470 if (getsockname(ssh->state->connection_out, (struct sockaddr *)&to,
Darren Tuckerf7288d72009-06-21 18:12:20 +1000471 &tolen) < 0)
Damien Miller34132e52000-01-14 15:45:46 +1100472 return 0;
Damien Milleraa100c52002-04-26 16:54:34 +1000473#ifdef IPV4_IN_IPV6
Damien Millera8e06ce2003-11-21 23:48:55 +1100474 if (to.ss_family == AF_INET6 &&
Damien Milleraa100c52002-04-26 16:54:34 +1000475 IN6_IS_ADDR_V4MAPPED(&((struct sockaddr_in6 *)&to)->sin6_addr))
Damien Millerd2ac5d72011-05-15 08:43:13 +1000476 return AF_INET;
Damien Milleraa100c52002-04-26 16:54:34 +1000477#endif
Damien Millerd2ac5d72011-05-15 08:43:13 +1000478 return to.ss_family;
Damien Miller34132e52000-01-14 15:45:46 +1100479}
480
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000481/* Sets the connection into non-blocking mode. */
482
483void
markus@openbsd.org091c3022015-01-19 19:52:16 +0000484ssh_packet_set_nonblocking(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000485{
Damien Miller95def091999-11-25 00:26:21 +1100486 /* Set the socket into non-blocking mode. */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000487 set_nonblock(ssh->state->connection_in);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000488
markus@openbsd.org091c3022015-01-19 19:52:16 +0000489 if (ssh->state->connection_out != ssh->state->connection_in)
490 set_nonblock(ssh->state->connection_out);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000491}
492
493/* Returns the socket used for reading. */
494
495int
markus@openbsd.org091c3022015-01-19 19:52:16 +0000496ssh_packet_get_connection_in(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000497{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000498 return ssh->state->connection_in;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000499}
500
501/* Returns the descriptor used for writing. */
502
503int
markus@openbsd.org091c3022015-01-19 19:52:16 +0000504ssh_packet_get_connection_out(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000505{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000506 return ssh->state->connection_out;
507}
508
509/*
510 * Returns the IP-address of the remote host as a string. The returned
511 * string must not be freed.
512 */
513
514const char *
515ssh_remote_ipaddr(struct ssh *ssh)
516{
djm@openbsd.org854ae202018-06-01 04:05:29 +0000517 int sock;
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +0000518
markus@openbsd.org091c3022015-01-19 19:52:16 +0000519 /* Check whether we have cached the ipaddr. */
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +0000520 if (ssh->remote_ipaddr == NULL) {
521 if (ssh_packet_connection_is_on_socket(ssh)) {
djm@openbsd.org854ae202018-06-01 04:05:29 +0000522 sock = ssh->state->connection_in;
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +0000523 ssh->remote_ipaddr = get_peer_ipaddr(sock);
djm@openbsd.org95767262016-03-07 19:02:43 +0000524 ssh->remote_port = get_peer_port(sock);
525 ssh->local_ipaddr = get_local_ipaddr(sock);
526 ssh->local_port = get_local_port(sock);
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +0000527 } else {
528 ssh->remote_ipaddr = strdup("UNKNOWN");
djm@openbsd.org95767262016-03-07 19:02:43 +0000529 ssh->remote_port = 65535;
530 ssh->local_ipaddr = strdup("UNKNOWN");
531 ssh->local_port = 65535;
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +0000532 }
533 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000534 return ssh->remote_ipaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000535}
536
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +0000537/* Returns the port number of the remote host. */
538
539int
540ssh_remote_port(struct ssh *ssh)
541{
542 (void)ssh_remote_ipaddr(ssh); /* Will lookup and cache. */
543 return ssh->remote_port;
544}
545
djm@openbsd.org95767262016-03-07 19:02:43 +0000546/*
547 * Returns the IP-address of the local host as a string. The returned
548 * string must not be freed.
549 */
550
551const char *
552ssh_local_ipaddr(struct ssh *ssh)
553{
554 (void)ssh_remote_ipaddr(ssh); /* Will lookup and cache. */
555 return ssh->local_ipaddr;
556}
557
558/* Returns the port number of the local host. */
559
560int
561ssh_local_port(struct ssh *ssh)
562{
563 (void)ssh_remote_ipaddr(ssh); /* Will lookup and cache. */
564 return ssh->local_port;
565}
566
djm@openbsd.org35eb33f2017-10-25 00:17:08 +0000567/* Returns the routing domain of the input socket, or NULL if unavailable */
568const char *
569ssh_packet_rdomain_in(struct ssh *ssh)
570{
571 if (ssh->rdomain_in != NULL)
572 return ssh->rdomain_in;
573 if (!ssh_packet_connection_is_on_socket(ssh))
574 return NULL;
575 ssh->rdomain_in = get_rdomain(ssh->state->connection_in);
576 return ssh->rdomain_in;
577}
578
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000579/* Closes the connection and clears and frees internal data structures. */
580
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000581static void
582ssh_packet_close_internal(struct ssh *ssh, int do_close)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000583{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000584 struct session_state *state = ssh->state;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000585 u_int mode;
586
587 if (!state->initialized)
Damien Miller95def091999-11-25 00:26:21 +1100588 return;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000589 state->initialized = 0;
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000590 if (do_close) {
591 if (state->connection_in == state->connection_out) {
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000592 close(state->connection_out);
593 } else {
594 close(state->connection_in);
595 close(state->connection_out);
596 }
Damien Miller95def091999-11-25 00:26:21 +1100597 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000598 sshbuf_free(state->input);
599 sshbuf_free(state->output);
600 sshbuf_free(state->outgoing_packet);
601 sshbuf_free(state->incoming_packet);
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000602 for (mode = 0; mode < MODE_MAX; mode++) {
603 kex_free_newkeys(state->newkeys[mode]); /* current keys */
604 state->newkeys[mode] = NULL;
605 ssh_clear_newkeys(ssh, mode); /* next keys */
606 }
Damien Miller10479cc2018-04-10 10:19:02 +1000607 /* compression state is in shared mem, so we can only release it once */
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000608 if (do_close && state->compression_buffer) {
markus@openbsd.org091c3022015-01-19 19:52:16 +0000609 sshbuf_free(state->compression_buffer);
610 if (state->compression_out_started) {
611 z_streamp stream = &state->compression_out_stream;
612 debug("compress outgoing: "
613 "raw data %llu, compressed %llu, factor %.2f",
614 (unsigned long long)stream->total_in,
615 (unsigned long long)stream->total_out,
616 stream->total_in == 0 ? 0.0 :
617 (double) stream->total_out / stream->total_in);
618 if (state->compression_out_failures == 0)
619 deflateEnd(stream);
620 }
621 if (state->compression_in_started) {
dtucker@openbsd.org550c0532017-06-06 09:12:17 +0000622 z_streamp stream = &state->compression_in_stream;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000623 debug("compress incoming: "
624 "raw data %llu, compressed %llu, factor %.2f",
625 (unsigned long long)stream->total_out,
626 (unsigned long long)stream->total_in,
627 stream->total_out == 0 ? 0.0 :
628 (double) stream->total_in / stream->total_out);
629 if (state->compression_in_failures == 0)
630 inflateEnd(stream);
631 }
Damien Miller95def091999-11-25 00:26:21 +1100632 }
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000633 cipher_free(state->send_context);
634 cipher_free(state->receive_context);
635 state->send_context = state->receive_context = NULL;
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000636 if (do_close) {
djm@openbsd.orgde2997a2018-07-16 03:09:13 +0000637 free(ssh->local_ipaddr);
638 ssh->local_ipaddr = NULL;
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000639 free(ssh->remote_ipaddr);
640 ssh->remote_ipaddr = NULL;
641 free(ssh->state);
642 ssh->state = NULL;
643 }
644}
645
646void
647ssh_packet_close(struct ssh *ssh)
648{
649 ssh_packet_close_internal(ssh, 1);
650}
651
652void
653ssh_packet_clear_keys(struct ssh *ssh)
654{
655 ssh_packet_close_internal(ssh, 0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000656}
657
658/* Sets remote side protocol flags. */
659
660void
markus@openbsd.org091c3022015-01-19 19:52:16 +0000661ssh_packet_set_protocol_flags(struct ssh *ssh, u_int protocol_flags)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000662{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000663 ssh->state->remote_protocol_flags = protocol_flags;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000664}
665
666/* Returns the remote protocol flags set earlier by the above function. */
667
Ben Lindstrom46c16222000-12-22 01:43:59 +0000668u_int
markus@openbsd.org091c3022015-01-19 19:52:16 +0000669ssh_packet_get_protocol_flags(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000670{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000671 return ssh->state->remote_protocol_flags;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000672}
673
Damien Miller5428f641999-11-25 11:54:57 +1100674/*
675 * Starts packet compression from the next packet on in both directions.
676 * Level is compression level 1 (fastest) - 9 (slow, best) as in gzip.
677 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000678
markus@openbsd.org091c3022015-01-19 19:52:16 +0000679static int
680ssh_packet_init_compression(struct ssh *ssh)
Ben Lindstromfb50cdf2001-04-05 23:20:46 +0000681{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000682 if (!ssh->state->compression_buffer &&
683 ((ssh->state->compression_buffer = sshbuf_new()) == NULL))
684 return SSH_ERR_ALLOC_FAIL;
685 return 0;
686}
687
688static int
689start_compression_out(struct ssh *ssh, int level)
690{
691 if (level < 1 || level > 9)
692 return SSH_ERR_INVALID_ARGUMENT;
693 debug("Enabling compression at level %d.", level);
694 if (ssh->state->compression_out_started == 1)
695 deflateEnd(&ssh->state->compression_out_stream);
696 switch (deflateInit(&ssh->state->compression_out_stream, level)) {
697 case Z_OK:
698 ssh->state->compression_out_started = 1;
699 break;
700 case Z_MEM_ERROR:
701 return SSH_ERR_ALLOC_FAIL;
702 default:
703 return SSH_ERR_INTERNAL_ERROR;
704 }
705 return 0;
706}
707
708static int
709start_compression_in(struct ssh *ssh)
710{
711 if (ssh->state->compression_in_started == 1)
712 inflateEnd(&ssh->state->compression_in_stream);
713 switch (inflateInit(&ssh->state->compression_in_stream)) {
714 case Z_OK:
715 ssh->state->compression_in_started = 1;
716 break;
717 case Z_MEM_ERROR:
718 return SSH_ERR_ALLOC_FAIL;
719 default:
720 return SSH_ERR_INTERNAL_ERROR;
721 }
722 return 0;
723}
724
markus@openbsd.org091c3022015-01-19 19:52:16 +0000725/* XXX remove need for separate compression buffer */
726static int
727compress_buffer(struct ssh *ssh, struct sshbuf *in, struct sshbuf *out)
728{
729 u_char buf[4096];
730 int r, status;
731
732 if (ssh->state->compression_out_started != 1)
733 return SSH_ERR_INTERNAL_ERROR;
734
735 /* This case is not handled below. */
736 if (sshbuf_len(in) == 0)
737 return 0;
738
739 /* Input is the contents of the input buffer. */
740 if ((ssh->state->compression_out_stream.next_in =
741 sshbuf_mutable_ptr(in)) == NULL)
742 return SSH_ERR_INTERNAL_ERROR;
743 ssh->state->compression_out_stream.avail_in = sshbuf_len(in);
744
745 /* Loop compressing until deflate() returns with avail_out != 0. */
746 do {
747 /* Set up fixed-size output buffer. */
748 ssh->state->compression_out_stream.next_out = buf;
749 ssh->state->compression_out_stream.avail_out = sizeof(buf);
750
751 /* Compress as much data into the buffer as possible. */
752 status = deflate(&ssh->state->compression_out_stream,
753 Z_PARTIAL_FLUSH);
754 switch (status) {
755 case Z_MEM_ERROR:
756 return SSH_ERR_ALLOC_FAIL;
757 case Z_OK:
758 /* Append compressed data to output_buffer. */
759 if ((r = sshbuf_put(out, buf, sizeof(buf) -
760 ssh->state->compression_out_stream.avail_out)) != 0)
761 return r;
762 break;
763 case Z_STREAM_ERROR:
764 default:
765 ssh->state->compression_out_failures++;
766 return SSH_ERR_INVALID_FORMAT;
767 }
768 } while (ssh->state->compression_out_stream.avail_out == 0);
769 return 0;
770}
771
772static int
773uncompress_buffer(struct ssh *ssh, struct sshbuf *in, struct sshbuf *out)
774{
775 u_char buf[4096];
776 int r, status;
777
778 if (ssh->state->compression_in_started != 1)
779 return SSH_ERR_INTERNAL_ERROR;
780
781 if ((ssh->state->compression_in_stream.next_in =
782 sshbuf_mutable_ptr(in)) == NULL)
783 return SSH_ERR_INTERNAL_ERROR;
784 ssh->state->compression_in_stream.avail_in = sshbuf_len(in);
785
786 for (;;) {
787 /* Set up fixed-size output buffer. */
788 ssh->state->compression_in_stream.next_out = buf;
789 ssh->state->compression_in_stream.avail_out = sizeof(buf);
790
791 status = inflate(&ssh->state->compression_in_stream,
792 Z_PARTIAL_FLUSH);
793 switch (status) {
794 case Z_OK:
795 if ((r = sshbuf_put(out, buf, sizeof(buf) -
796 ssh->state->compression_in_stream.avail_out)) != 0)
797 return r;
798 break;
799 case Z_BUF_ERROR:
800 /*
801 * Comments in zlib.h say that we should keep calling
802 * inflate() until we get an error. This appears to
803 * be the error that we get.
804 */
805 return 0;
806 case Z_DATA_ERROR:
807 return SSH_ERR_INVALID_FORMAT;
808 case Z_MEM_ERROR:
809 return SSH_ERR_ALLOC_FAIL;
810 case Z_STREAM_ERROR:
811 default:
812 ssh->state->compression_in_failures++;
813 return SSH_ERR_INTERNAL_ERROR;
814 }
815 }
816 /* NOTREACHED */
817}
818
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000819void
820ssh_clear_newkeys(struct ssh *ssh, int mode)
821{
djm@openbsd.org2d75d742017-06-01 06:16:43 +0000822 if (ssh->kex && ssh->kex->newkeys[mode]) {
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000823 kex_free_newkeys(ssh->kex->newkeys[mode]);
824 ssh->kex->newkeys[mode] = NULL;
825 }
826}
827
markus@openbsd.org091c3022015-01-19 19:52:16 +0000828int
829ssh_set_newkeys(struct ssh *ssh, int mode)
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000830{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000831 struct session_state *state = ssh->state;
832 struct sshenc *enc;
833 struct sshmac *mac;
834 struct sshcomp *comp;
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000835 struct sshcipher_ctx **ccp;
markus@openbsd.org06ce56b2016-09-06 09:22:56 +0000836 struct packet_state *ps;
Damien Millera5539d22003-04-09 20:50:06 +1000837 u_int64_t *max_blocks;
djm@openbsd.org2d75d742017-06-01 06:16:43 +0000838 const char *wmsg;
Damien Miller86687062014-07-02 15:28:02 +1000839 int r, crypt_type;
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000840
Ben Lindstrom064496f2002-12-23 02:04:22 +0000841 debug2("set_newkeys: mode %d", mode);
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000842
Damien Miller963f6b22002-02-19 15:21:23 +1100843 if (mode == MODE_OUT) {
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000844 ccp = &state->send_context;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000845 crypt_type = CIPHER_ENCRYPT;
markus@openbsd.org06ce56b2016-09-06 09:22:56 +0000846 ps = &state->p_send;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000847 max_blocks = &state->max_blocks_out;
Damien Miller963f6b22002-02-19 15:21:23 +1100848 } else {
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000849 ccp = &state->receive_context;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000850 crypt_type = CIPHER_DECRYPT;
markus@openbsd.org06ce56b2016-09-06 09:22:56 +0000851 ps = &state->p_read;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000852 max_blocks = &state->max_blocks_in;
Damien Miller963f6b22002-02-19 15:21:23 +1100853 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000854 if (state->newkeys[mode] != NULL) {
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000855 debug("set_newkeys: rekeying, input %llu bytes %llu blocks, "
856 "output %llu bytes %llu blocks",
857 (unsigned long long)state->p_read.bytes,
858 (unsigned long long)state->p_read.blocks,
859 (unsigned long long)state->p_send.bytes,
860 (unsigned long long)state->p_send.blocks);
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000861 cipher_free(*ccp);
862 *ccp = NULL;
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000863 kex_free_newkeys(state->newkeys[mode]);
864 state->newkeys[mode] = NULL;
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000865 }
markus@openbsd.org06ce56b2016-09-06 09:22:56 +0000866 /* note that both bytes and the seqnr are not reset */
867 ps->packets = ps->blocks = 0;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000868 /* move newkeys from kex to state */
869 if ((state->newkeys[mode] = ssh->kex->newkeys[mode]) == NULL)
870 return SSH_ERR_INTERNAL_ERROR;
871 ssh->kex->newkeys[mode] = NULL;
872 enc = &state->newkeys[mode]->enc;
873 mac = &state->newkeys[mode]->mac;
874 comp = &state->newkeys[mode]->comp;
875 if (cipher_authlen(enc->cipher) == 0) {
876 if ((r = mac_init(mac)) != 0)
877 return r;
878 }
879 mac->enabled = 1;
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000880 DBG(debug("cipher_init_context: %d", mode));
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000881 if ((r = cipher_init(ccp, enc->cipher, enc->key, enc->key_len,
Damien Miller86687062014-07-02 15:28:02 +1000882 enc->iv, enc->iv_len, crypt_type)) != 0)
markus@openbsd.org091c3022015-01-19 19:52:16 +0000883 return r;
884 if (!state->cipher_warning_done &&
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000885 (wmsg = cipher_warning_message(*ccp)) != NULL) {
markus@openbsd.org091c3022015-01-19 19:52:16 +0000886 error("Warning: %s", wmsg);
887 state->cipher_warning_done = 1;
888 }
Ben Lindstromf6027d32002-03-22 01:42:04 +0000889 /* Deleting the keys does not gain extra security */
Damien Millera5103f42014-02-04 11:20:14 +1100890 /* explicit_bzero(enc->iv, enc->block_size);
891 explicit_bzero(enc->key, enc->key_len);
892 explicit_bzero(mac->key, mac->key_len); */
sf@openbsd.org168b46f2018-07-09 13:37:10 +0000893 if ((comp->type == COMP_ZLIB ||
894 (comp->type == COMP_DELAYED &&
895 state->after_authentication)) && comp->enabled == 0) {
markus@openbsd.org091c3022015-01-19 19:52:16 +0000896 if ((r = ssh_packet_init_compression(ssh)) < 0)
897 return r;
898 if (mode == MODE_OUT) {
899 if ((r = start_compression_out(ssh, 6)) != 0)
900 return r;
901 } else {
902 if ((r = start_compression_in(ssh)) != 0)
903 return r;
904 }
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000905 comp->enabled = 1;
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000906 }
Darren Tucker81a0b372003-07-14 17:31:06 +1000907 /*
908 * The 2^(blocksize*2) limit is too expensive for 3DES,
djm@openbsd.orgacaf34f2017-05-07 23:12:57 +0000909 * so enforce a 1GB limit for small blocksizes.
dtucker@openbsd.orgad053162017-06-09 04:40:04 +0000910 * See RFC4344 section 3.2.
Darren Tucker81a0b372003-07-14 17:31:06 +1000911 */
912 if (enc->block_size >= 16)
913 *max_blocks = (u_int64_t)1 << (enc->block_size*2);
914 else
915 *max_blocks = ((u_int64_t)1 << 30) / enc->block_size;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000916 if (state->rekey_limit)
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +0000917 *max_blocks = MINIMUM(*max_blocks,
markus@openbsd.org091c3022015-01-19 19:52:16 +0000918 state->rekey_limit / enc->block_size);
djm@openbsd.org696d1262016-02-04 23:43:48 +0000919 debug("rekey after %llu blocks", (unsigned long long)*max_blocks);
markus@openbsd.org091c3022015-01-19 19:52:16 +0000920 return 0;
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000921}
922
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000923#define MAX_PACKETS (1U<<31)
924static int
925ssh_packet_need_rekeying(struct ssh *ssh, u_int outbound_packet_len)
926{
927 struct session_state *state = ssh->state;
928 u_int32_t out_blocks;
929
930 /* XXX client can't cope with rekeying pre-auth */
931 if (!state->after_authentication)
932 return 0;
933
934 /* Haven't keyed yet or KEX in progress. */
935 if (ssh->kex == NULL || ssh_packet_is_rekeying(ssh))
936 return 0;
937
938 /* Peer can't rekey */
939 if (ssh->compat & SSH_BUG_NOREKEY)
940 return 0;
941
942 /*
943 * Permit one packet in or out per rekey - this allows us to
944 * make progress when rekey limits are very small.
945 */
946 if (state->p_send.packets == 0 && state->p_read.packets == 0)
947 return 0;
948
949 /* Time-based rekeying */
950 if (state->rekey_interval != 0 &&
dtucker@openbsd.orgc998bf02017-02-03 02:56:00 +0000951 (int64_t)state->rekey_time + state->rekey_interval <= monotime())
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000952 return 1;
953
dtucker@openbsd.orgad053162017-06-09 04:40:04 +0000954 /*
955 * Always rekey when MAX_PACKETS sent in either direction
956 * As per RFC4344 section 3.1 we do this after 2^31 packets.
957 */
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000958 if (state->p_send.packets > MAX_PACKETS ||
959 state->p_read.packets > MAX_PACKETS)
960 return 1;
961
Damien Miller10479cc2018-04-10 10:19:02 +1000962 /* Rekey after (cipher-specific) maximum blocks */
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +0000963 out_blocks = ROUNDUP(outbound_packet_len,
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000964 state->newkeys[MODE_OUT]->enc.block_size);
965 return (state->max_blocks_out &&
966 (state->p_send.blocks + out_blocks > state->max_blocks_out)) ||
967 (state->max_blocks_in &&
968 (state->p_read.blocks > state->max_blocks_in));
969}
970
Damien Miller5428f641999-11-25 11:54:57 +1100971/*
Damien Miller9786e6e2005-07-26 21:54:56 +1000972 * Delayed compression for SSH2 is enabled after authentication:
Darren Tuckerf676c572006-08-05 18:51:08 +1000973 * This happens on the server side after a SSH2_MSG_USERAUTH_SUCCESS is sent,
Damien Miller9786e6e2005-07-26 21:54:56 +1000974 * and on the client side after a SSH2_MSG_USERAUTH_SUCCESS is received.
975 */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000976static int
977ssh_packet_enable_delayed_compress(struct ssh *ssh)
Damien Miller9786e6e2005-07-26 21:54:56 +1000978{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000979 struct session_state *state = ssh->state;
980 struct sshcomp *comp = NULL;
981 int r, mode;
Damien Miller9786e6e2005-07-26 21:54:56 +1000982
983 /*
984 * Remember that we are past the authentication step, so rekeying
sf@openbsd.org168b46f2018-07-09 13:37:10 +0000985 * with COMP_DELAYED will turn on compression immediately.
Damien Miller9786e6e2005-07-26 21:54:56 +1000986 */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000987 state->after_authentication = 1;
Damien Miller9786e6e2005-07-26 21:54:56 +1000988 for (mode = 0; mode < MODE_MAX; mode++) {
Darren Tucker4aa665b2006-09-21 13:00:25 +1000989 /* protocol error: USERAUTH_SUCCESS received before NEWKEYS */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000990 if (state->newkeys[mode] == NULL)
Darren Tucker4aa665b2006-09-21 13:00:25 +1000991 continue;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000992 comp = &state->newkeys[mode]->comp;
sf@openbsd.org168b46f2018-07-09 13:37:10 +0000993 if (comp && !comp->enabled && comp->type == COMP_DELAYED) {
markus@openbsd.org091c3022015-01-19 19:52:16 +0000994 if ((r = ssh_packet_init_compression(ssh)) != 0)
995 return r;
996 if (mode == MODE_OUT) {
997 if ((r = start_compression_out(ssh, 6)) != 0)
998 return r;
999 } else {
1000 if ((r = start_compression_in(ssh)) != 0)
1001 return r;
1002 }
Damien Miller9786e6e2005-07-26 21:54:56 +10001003 comp->enabled = 1;
1004 }
1005 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001006 return 0;
Damien Miller9786e6e2005-07-26 21:54:56 +10001007}
1008
djm@openbsd.org28136472016-01-29 05:46:01 +00001009/* Used to mute debug logging for noisy packet types */
markus@openbsd.org8d057842016-09-30 09:19:13 +00001010int
djm@openbsd.org28136472016-01-29 05:46:01 +00001011ssh_packet_log_type(u_char type)
1012{
1013 switch (type) {
1014 case SSH2_MSG_CHANNEL_DATA:
1015 case SSH2_MSG_CHANNEL_EXTENDED_DATA:
1016 case SSH2_MSG_CHANNEL_WINDOW_ADJUST:
1017 return 0;
1018 default:
1019 return 1;
1020 }
1021}
1022
Damien Miller9786e6e2005-07-26 21:54:56 +10001023/*
Damien Miller33b13562000-04-04 14:38:59 +10001024 * Finalize packet in SSH2 format (compress, mac, encrypt, enqueue)
1025 */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001026int
1027ssh_packet_send2_wrapped(struct ssh *ssh)
Damien Miller33b13562000-04-04 14:38:59 +10001028{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001029 struct session_state *state = ssh->state;
markus@openbsd.org128343b2015-01-13 19:31:40 +00001030 u_char type, *cp, macbuf[SSH_DIGEST_MAX_LENGTH];
djm@openbsd.orgeb999a42016-07-18 06:08:01 +00001031 u_char tmp, padlen, pad = 0;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001032 u_int authlen = 0, aadlen = 0;
1033 u_int len;
1034 struct sshenc *enc = NULL;
1035 struct sshmac *mac = NULL;
1036 struct sshcomp *comp = NULL;
1037 int r, block_size;
Damien Miller33b13562000-04-04 14:38:59 +10001038
markus@openbsd.org091c3022015-01-19 19:52:16 +00001039 if (state->newkeys[MODE_OUT] != NULL) {
1040 enc = &state->newkeys[MODE_OUT]->enc;
1041 mac = &state->newkeys[MODE_OUT]->mac;
1042 comp = &state->newkeys[MODE_OUT]->comp;
Damien Miller1d75abf2013-01-09 16:12:19 +11001043 /* disable mac for authenticated encryption */
1044 if ((authlen = cipher_authlen(enc->cipher)) != 0)
1045 mac = NULL;
Damien Miller33b13562000-04-04 14:38:59 +10001046 }
Damien Miller963f6b22002-02-19 15:21:23 +11001047 block_size = enc ? enc->block_size : 8;
Damien Miller1d75abf2013-01-09 16:12:19 +11001048 aadlen = (mac && mac->enabled && mac->etm) || authlen ? 4 : 0;
Damien Miller33b13562000-04-04 14:38:59 +10001049
markus@openbsd.org091c3022015-01-19 19:52:16 +00001050 type = (sshbuf_ptr(state->outgoing_packet))[5];
djm@openbsd.org28136472016-01-29 05:46:01 +00001051 if (ssh_packet_log_type(type))
1052 debug3("send packet: type %u", type);
Damien Miller33b13562000-04-04 14:38:59 +10001053#ifdef PACKET_DEBUG
1054 fprintf(stderr, "plain: ");
markus@openbsd.org091c3022015-01-19 19:52:16 +00001055 sshbuf_dump(state->outgoing_packet, stderr);
Damien Miller33b13562000-04-04 14:38:59 +10001056#endif
1057
1058 if (comp && comp->enabled) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001059 len = sshbuf_len(state->outgoing_packet);
Damien Miller33b13562000-04-04 14:38:59 +10001060 /* skip header, compress only payload */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001061 if ((r = sshbuf_consume(state->outgoing_packet, 5)) != 0)
1062 goto out;
1063 sshbuf_reset(state->compression_buffer);
1064 if ((r = compress_buffer(ssh, state->outgoing_packet,
1065 state->compression_buffer)) != 0)
1066 goto out;
1067 sshbuf_reset(state->outgoing_packet);
1068 if ((r = sshbuf_put(state->outgoing_packet,
1069 "\0\0\0\0\0", 5)) != 0 ||
1070 (r = sshbuf_putb(state->outgoing_packet,
1071 state->compression_buffer)) != 0)
1072 goto out;
1073 DBG(debug("compression: raw %d compressed %zd", len,
1074 sshbuf_len(state->outgoing_packet)));
Damien Miller33b13562000-04-04 14:38:59 +10001075 }
1076
1077 /* sizeof (packet_len + pad_len + payload) */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001078 len = sshbuf_len(state->outgoing_packet);
Damien Miller33b13562000-04-04 14:38:59 +10001079
1080 /*
1081 * calc size of padding, alloc space, get random data,
1082 * minimum padding is 4 bytes
1083 */
Damien Milleraf43a7a2012-12-12 10:46:31 +11001084 len -= aadlen; /* packet length is not encrypted for EtM modes */
Damien Miller33b13562000-04-04 14:38:59 +10001085 padlen = block_size - (len % block_size);
1086 if (padlen < 4)
1087 padlen += block_size;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001088 if (state->extra_pad) {
djm@openbsd.orgeb999a42016-07-18 06:08:01 +00001089 tmp = state->extra_pad;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001090 state->extra_pad =
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +00001091 ROUNDUP(state->extra_pad, block_size);
djm@openbsd.orgeb999a42016-07-18 06:08:01 +00001092 /* check if roundup overflowed */
1093 if (state->extra_pad < tmp)
1094 return SSH_ERR_INVALID_ARGUMENT;
1095 tmp = (len + padlen) % state->extra_pad;
1096 /* Check whether pad calculation below will underflow */
1097 if (tmp > state->extra_pad)
1098 return SSH_ERR_INVALID_ARGUMENT;
1099 pad = state->extra_pad - tmp;
Damien Miller2a328432014-04-20 13:24:01 +10001100 DBG(debug3("%s: adding %d (len %d padlen %d extra_pad %d)",
markus@openbsd.org091c3022015-01-19 19:52:16 +00001101 __func__, pad, len, padlen, state->extra_pad));
djm@openbsd.orgeb999a42016-07-18 06:08:01 +00001102 tmp = padlen;
Damien Miller9f643902001-11-12 11:02:52 +11001103 padlen += pad;
djm@openbsd.orgeb999a42016-07-18 06:08:01 +00001104 /* Check whether padlen calculation overflowed */
1105 if (padlen < tmp)
1106 return SSH_ERR_INVALID_ARGUMENT; /* overflow */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001107 state->extra_pad = 0;
Damien Miller9f643902001-11-12 11:02:52 +11001108 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001109 if ((r = sshbuf_reserve(state->outgoing_packet, padlen, &cp)) != 0)
1110 goto out;
djm@openbsd.org4706c1d2016-08-03 05:41:57 +00001111 if (enc && !cipher_ctx_is_plaintext(state->send_context)) {
Damien Millere247cc42000-05-07 12:03:14 +10001112 /* random padding */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001113 arc4random_buf(cp, padlen);
Damien Millere247cc42000-05-07 12:03:14 +10001114 } else {
1115 /* clear padding */
Damien Millera5103f42014-02-04 11:20:14 +11001116 explicit_bzero(cp, padlen);
Damien Miller33b13562000-04-04 14:38:59 +10001117 }
Damien Milleraf43a7a2012-12-12 10:46:31 +11001118 /* sizeof (packet_len + pad_len + payload + padding) */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001119 len = sshbuf_len(state->outgoing_packet);
1120 cp = sshbuf_mutable_ptr(state->outgoing_packet);
1121 if (cp == NULL) {
1122 r = SSH_ERR_INTERNAL_ERROR;
1123 goto out;
1124 }
Damien Milleraf43a7a2012-12-12 10:46:31 +11001125 /* packet_length includes payload, padding and padding length field */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001126 POKE_U32(cp, len - 4);
Ben Lindstrom4a7714a2002-02-26 18:04:38 +00001127 cp[4] = padlen;
Damien Milleraf43a7a2012-12-12 10:46:31 +11001128 DBG(debug("send: len %d (includes padlen %d, aadlen %d)",
1129 len, padlen, aadlen));
Damien Miller33b13562000-04-04 14:38:59 +10001130
1131 /* compute MAC over seqnr and packet(length fields, payload, padding) */
Damien Milleraf43a7a2012-12-12 10:46:31 +11001132 if (mac && mac->enabled && !mac->etm) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001133 if ((r = mac_compute(mac, state->p_send.seqnr,
1134 sshbuf_ptr(state->outgoing_packet), len,
markus@openbsd.org128343b2015-01-13 19:31:40 +00001135 macbuf, sizeof(macbuf))) != 0)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001136 goto out;
1137 DBG(debug("done calc MAC out #%d", state->p_send.seqnr));
Damien Miller33b13562000-04-04 14:38:59 +10001138 }
1139 /* encrypt packet and append to output buffer. */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001140 if ((r = sshbuf_reserve(state->output,
1141 sshbuf_len(state->outgoing_packet) + authlen, &cp)) != 0)
1142 goto out;
djm@openbsd.org4706c1d2016-08-03 05:41:57 +00001143 if ((r = cipher_crypt(state->send_context, state->p_send.seqnr, cp,
markus@openbsd.org091c3022015-01-19 19:52:16 +00001144 sshbuf_ptr(state->outgoing_packet),
1145 len - aadlen, aadlen, authlen)) != 0)
1146 goto out;
Damien Miller33b13562000-04-04 14:38:59 +10001147 /* append unencrypted MAC */
Damien Milleraf43a7a2012-12-12 10:46:31 +11001148 if (mac && mac->enabled) {
1149 if (mac->etm) {
1150 /* EtM: compute mac over aadlen + cipher text */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001151 if ((r = mac_compute(mac, state->p_send.seqnr,
1152 cp, len, macbuf, sizeof(macbuf))) != 0)
1153 goto out;
Damien Milleraf43a7a2012-12-12 10:46:31 +11001154 DBG(debug("done calc MAC(EtM) out #%d",
markus@openbsd.org091c3022015-01-19 19:52:16 +00001155 state->p_send.seqnr));
Damien Milleraf43a7a2012-12-12 10:46:31 +11001156 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001157 if ((r = sshbuf_put(state->output, macbuf, mac->mac_len)) != 0)
1158 goto out;
Damien Milleraf43a7a2012-12-12 10:46:31 +11001159 }
Damien Miller33b13562000-04-04 14:38:59 +10001160#ifdef PACKET_DEBUG
1161 fprintf(stderr, "encrypted: ");
markus@openbsd.org091c3022015-01-19 19:52:16 +00001162 sshbuf_dump(state->output, stderr);
Damien Miller33b13562000-04-04 14:38:59 +10001163#endif
Damien Miller4af51302000-04-16 11:18:38 +10001164 /* increment sequence number for outgoing packets */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001165 if (++state->p_send.seqnr == 0)
Damien Miller996acd22003-04-09 20:59:48 +10001166 logit("outgoing seqnr wraps around");
markus@openbsd.org091c3022015-01-19 19:52:16 +00001167 if (++state->p_send.packets == 0)
1168 if (!(ssh->compat & SSH_BUG_NOREKEY))
1169 return SSH_ERR_NEED_REKEY;
1170 state->p_send.blocks += len / block_size;
1171 state->p_send.bytes += len;
1172 sshbuf_reset(state->outgoing_packet);
Damien Miller33b13562000-04-04 14:38:59 +10001173
Ben Lindstrom2d90e002001-04-04 02:00:54 +00001174 if (type == SSH2_MSG_NEWKEYS)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001175 r = ssh_set_newkeys(ssh, MODE_OUT);
1176 else if (type == SSH2_MSG_USERAUTH_SUCCESS && state->server_side)
1177 r = ssh_packet_enable_delayed_compress(ssh);
1178 else
1179 r = 0;
1180 out:
1181 return r;
Damien Miller33b13562000-04-04 14:38:59 +10001182}
1183
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001184/* returns non-zero if the specified packet type is usec by KEX */
1185static int
1186ssh_packet_type_is_kex(u_char type)
1187{
1188 return
1189 type >= SSH2_MSG_TRANSPORT_MIN &&
1190 type <= SSH2_MSG_TRANSPORT_MAX &&
1191 type != SSH2_MSG_SERVICE_REQUEST &&
1192 type != SSH2_MSG_SERVICE_ACCEPT &&
1193 type != SSH2_MSG_EXT_INFO;
1194}
1195
markus@openbsd.org091c3022015-01-19 19:52:16 +00001196int
1197ssh_packet_send2(struct ssh *ssh)
Damien Millera5539d22003-04-09 20:50:06 +10001198{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001199 struct session_state *state = ssh->state;
Damien Millera5539d22003-04-09 20:50:06 +10001200 struct packet *p;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001201 u_char type;
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001202 int r, need_rekey;
Damien Millera5539d22003-04-09 20:50:06 +10001203
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001204 if (sshbuf_len(state->outgoing_packet) < 6)
1205 return SSH_ERR_INTERNAL_ERROR;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001206 type = sshbuf_ptr(state->outgoing_packet)[5];
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001207 need_rekey = !ssh_packet_type_is_kex(type) &&
1208 ssh_packet_need_rekeying(ssh, sshbuf_len(state->outgoing_packet));
Damien Millera5539d22003-04-09 20:50:06 +10001209
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001210 /*
1211 * During rekeying we can only send key exchange messages.
1212 * Queue everything else.
1213 */
1214 if ((need_rekey || state->rekeying) && !ssh_packet_type_is_kex(type)) {
1215 if (need_rekey)
1216 debug3("%s: rekex triggered", __func__);
1217 debug("enqueue packet: %u", type);
1218 p = calloc(1, sizeof(*p));
1219 if (p == NULL)
1220 return SSH_ERR_ALLOC_FAIL;
1221 p->type = type;
1222 p->payload = state->outgoing_packet;
1223 TAILQ_INSERT_TAIL(&state->outgoing, p, next);
1224 state->outgoing_packet = sshbuf_new();
1225 if (state->outgoing_packet == NULL)
1226 return SSH_ERR_ALLOC_FAIL;
1227 if (need_rekey) {
1228 /*
1229 * This packet triggered a rekey, so send the
1230 * KEXINIT now.
1231 * NB. reenters this function via kex_start_rekex().
1232 */
1233 return kex_start_rekex(ssh);
Damien Millera5539d22003-04-09 20:50:06 +10001234 }
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001235 return 0;
Damien Millera5539d22003-04-09 20:50:06 +10001236 }
1237
1238 /* rekeying starts with sending KEXINIT */
1239 if (type == SSH2_MSG_KEXINIT)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001240 state->rekeying = 1;
Damien Millera5539d22003-04-09 20:50:06 +10001241
markus@openbsd.org091c3022015-01-19 19:52:16 +00001242 if ((r = ssh_packet_send2_wrapped(ssh)) != 0)
1243 return r;
Damien Millera5539d22003-04-09 20:50:06 +10001244
1245 /* after a NEWKEYS message we can send the complete queue */
1246 if (type == SSH2_MSG_NEWKEYS) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001247 state->rekeying = 0;
1248 state->rekey_time = monotime();
1249 while ((p = TAILQ_FIRST(&state->outgoing))) {
Damien Millera5539d22003-04-09 20:50:06 +10001250 type = p->type;
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001251 /*
1252 * If this packet triggers a rekex, then skip the
1253 * remaining packets in the queue for now.
1254 * NB. re-enters this function via kex_start_rekex.
1255 */
1256 if (ssh_packet_need_rekeying(ssh,
1257 sshbuf_len(p->payload))) {
1258 debug3("%s: queued packet triggered rekex",
1259 __func__);
1260 return kex_start_rekex(ssh);
1261 }
Damien Millera5539d22003-04-09 20:50:06 +10001262 debug("dequeue packet: %u", type);
markus@openbsd.org091c3022015-01-19 19:52:16 +00001263 sshbuf_free(state->outgoing_packet);
1264 state->outgoing_packet = p->payload;
1265 TAILQ_REMOVE(&state->outgoing, p, next);
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001266 memset(p, 0, sizeof(*p));
Darren Tuckera627d422013-06-02 07:31:17 +10001267 free(p);
markus@openbsd.org091c3022015-01-19 19:52:16 +00001268 if ((r = ssh_packet_send2_wrapped(ssh)) != 0)
1269 return r;
Damien Millera5539d22003-04-09 20:50:06 +10001270 }
1271 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001272 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10001273}
1274
Damien Miller33b13562000-04-04 14:38:59 +10001275/*
Damien Miller5428f641999-11-25 11:54:57 +11001276 * Waits until a packet has been received, and returns its type. Note that
1277 * no other data is processed until this returns, so this function should not
1278 * be used during the interactive session.
1279 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001280
1281int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001282ssh_packet_read_seqnr(struct ssh *ssh, u_char *typep, u_int32_t *seqnr_p)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001283{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001284 struct session_state *state = ssh->state;
markus@openbsd.orga3068632016-01-14 16:17:39 +00001285 int len, r, ms_remain;
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001286 fd_set *setp;
Damien Miller95def091999-11-25 00:26:21 +11001287 char buf[8192];
Darren Tucker3fc464e2008-06-13 06:42:45 +10001288 struct timeval timeout, start, *timeoutp = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001289
Darren Tucker99bb7612008-06-13 22:02:50 +10001290 DBG(debug("packet_read()"));
1291
deraadt@openbsd.orgce445b02015-08-20 22:32:42 +00001292 setp = calloc(howmany(state->connection_in + 1,
Darren Tuckerf7288d72009-06-21 18:12:20 +10001293 NFDBITS), sizeof(fd_mask));
markus@openbsd.org091c3022015-01-19 19:52:16 +00001294 if (setp == NULL)
1295 return SSH_ERR_ALLOC_FAIL;
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001296
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001297 /*
1298 * Since we are blocking, ensure that all written packets have
1299 * been sent.
1300 */
markus@openbsd.org4daeb672015-03-24 20:10:08 +00001301 if ((r = ssh_packet_write_wait(ssh)) != 0)
1302 goto out;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001303
Damien Miller95def091999-11-25 00:26:21 +11001304 /* Stay in the loop until we have received a complete packet. */
1305 for (;;) {
1306 /* Try to read a packet from the buffer. */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001307 r = ssh_packet_read_poll_seqnr(ssh, typep, seqnr_p);
1308 if (r != 0)
1309 break;
Damien Miller95def091999-11-25 00:26:21 +11001310 /* If we got a packet, return it. */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001311 if (*typep != SSH_MSG_NONE)
1312 break;
Damien Miller5428f641999-11-25 11:54:57 +11001313 /*
1314 * Otherwise, wait for some data to arrive, add it to the
1315 * buffer, and try again.
1316 */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001317 memset(setp, 0, howmany(state->connection_in + 1,
Darren Tuckerf7288d72009-06-21 18:12:20 +10001318 NFDBITS) * sizeof(fd_mask));
markus@openbsd.org091c3022015-01-19 19:52:16 +00001319 FD_SET(state->connection_in, setp);
Damien Miller5428f641999-11-25 11:54:57 +11001320
markus@openbsd.org091c3022015-01-19 19:52:16 +00001321 if (state->packet_timeout_ms > 0) {
1322 ms_remain = state->packet_timeout_ms;
Darren Tucker3fc464e2008-06-13 06:42:45 +10001323 timeoutp = &timeout;
1324 }
Damien Miller95def091999-11-25 00:26:21 +11001325 /* Wait for some data to arrive. */
Darren Tucker3fc464e2008-06-13 06:42:45 +10001326 for (;;) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001327 if (state->packet_timeout_ms != -1) {
Darren Tucker3fc464e2008-06-13 06:42:45 +10001328 ms_to_timeval(&timeout, ms_remain);
dtucker@openbsd.org@openbsd.org5db6fbf2017-11-25 06:46:22 +00001329 monotime_tv(&start);
Darren Tucker3fc464e2008-06-13 06:42:45 +10001330 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001331 if ((r = select(state->connection_in + 1, setp,
Darren Tuckerf7288d72009-06-21 18:12:20 +10001332 NULL, NULL, timeoutp)) >= 0)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001333 break;
Damien Millerea437422009-10-02 11:49:03 +10001334 if (errno != EAGAIN && errno != EINTR &&
dtucker@openbsd.org1da59342018-05-25 03:20:59 +00001335 errno != EWOULDBLOCK) {
1336 r = SSH_ERR_SYSTEM_ERROR;
1337 goto out;
1338 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001339 if (state->packet_timeout_ms == -1)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001340 continue;
1341 ms_subtract_diff(&start, &ms_remain);
1342 if (ms_remain <= 0) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001343 r = 0;
Darren Tucker3fc464e2008-06-13 06:42:45 +10001344 break;
1345 }
1346 }
djm@openbsd.orgd7abb772017-02-28 06:10:08 +00001347 if (r == 0) {
1348 r = SSH_ERR_CONN_TIMEOUT;
1349 goto out;
1350 }
Damien Miller95def091999-11-25 00:26:21 +11001351 /* Read data from the socket. */
markus@openbsd.orga3068632016-01-14 16:17:39 +00001352 len = read(state->connection_in, buf, sizeof(buf));
markus@openbsd.org4daeb672015-03-24 20:10:08 +00001353 if (len == 0) {
1354 r = SSH_ERR_CONN_CLOSED;
1355 goto out;
1356 }
1357 if (len < 0) {
1358 r = SSH_ERR_SYSTEM_ERROR;
1359 goto out;
1360 }
djm@openbsd.orgfae7bbe2015-01-28 21:15:47 +00001361
Damien Miller95def091999-11-25 00:26:21 +11001362 /* Append it to the buffer. */
djm@openbsd.orgfae7bbe2015-01-28 21:15:47 +00001363 if ((r = ssh_packet_process_incoming(ssh, buf, len)) != 0)
markus@openbsd.org4daeb672015-03-24 20:10:08 +00001364 goto out;
Damien Miller95def091999-11-25 00:26:21 +11001365 }
markus@openbsd.org4daeb672015-03-24 20:10:08 +00001366 out:
markus@openbsd.org091c3022015-01-19 19:52:16 +00001367 free(setp);
1368 return r;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001369}
1370
Damien Miller278f9072001-12-21 15:00:19 +11001371int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001372ssh_packet_read(struct ssh *ssh)
Damien Miller278f9072001-12-21 15:00:19 +11001373{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001374 u_char type;
1375 int r;
1376
1377 if ((r = ssh_packet_read_seqnr(ssh, &type, NULL)) != 0)
1378 fatal("%s: %s", __func__, ssh_err(r));
1379 return type;
Damien Miller278f9072001-12-21 15:00:19 +11001380}
1381
Damien Miller5428f641999-11-25 11:54:57 +11001382/*
1383 * Waits until a packet has been received, verifies that its type matches
1384 * that given, and gives a fatal error and exits if there is a mismatch.
1385 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001386
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001387int
1388ssh_packet_read_expect(struct ssh *ssh, u_int expected_type)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001389{
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001390 int r;
1391 u_char type;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001392
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001393 if ((r = ssh_packet_read_seqnr(ssh, &type, NULL)) != 0)
1394 return r;
1395 if (type != expected_type) {
1396 if ((r = sshpkt_disconnect(ssh,
markus@openbsd.org091c3022015-01-19 19:52:16 +00001397 "Protocol error: expected packet type %d, got %d",
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001398 expected_type, type)) != 0)
1399 return r;
1400 return SSH_ERR_PROTOCOL_ERROR;
1401 }
1402 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001403}
1404
markus@openbsd.org8d057842016-09-30 09:19:13 +00001405static int
1406ssh_packet_read_poll2_mux(struct ssh *ssh, u_char *typep, u_int32_t *seqnr_p)
1407{
1408 struct session_state *state = ssh->state;
1409 const u_char *cp;
1410 size_t need;
1411 int r;
1412
1413 if (ssh->kex)
1414 return SSH_ERR_INTERNAL_ERROR;
1415 *typep = SSH_MSG_NONE;
1416 cp = sshbuf_ptr(state->input);
1417 if (state->packlen == 0) {
1418 if (sshbuf_len(state->input) < 4 + 1)
1419 return 0; /* packet is incomplete */
1420 state->packlen = PEEK_U32(cp);
1421 if (state->packlen < 4 + 1 ||
1422 state->packlen > PACKET_MAX_SIZE)
1423 return SSH_ERR_MESSAGE_INCOMPLETE;
1424 }
1425 need = state->packlen + 4;
1426 if (sshbuf_len(state->input) < need)
1427 return 0; /* packet is incomplete */
1428 sshbuf_reset(state->incoming_packet);
1429 if ((r = sshbuf_put(state->incoming_packet, cp + 4,
1430 state->packlen)) != 0 ||
1431 (r = sshbuf_consume(state->input, need)) != 0 ||
1432 (r = sshbuf_get_u8(state->incoming_packet, NULL)) != 0 ||
1433 (r = sshbuf_get_u8(state->incoming_packet, typep)) != 0)
1434 return r;
1435 if (ssh_packet_log_type(*typep))
1436 debug3("%s: type %u", __func__, *typep);
1437 /* sshbuf_dump(state->incoming_packet, stderr); */
1438 /* reset for next packet */
1439 state->packlen = 0;
1440 return r;
1441}
1442
markus@openbsd.org091c3022015-01-19 19:52:16 +00001443int
1444ssh_packet_read_poll2(struct ssh *ssh, u_char *typep, u_int32_t *seqnr_p)
Damien Miller33b13562000-04-04 14:38:59 +10001445{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001446 struct session_state *state = ssh->state;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001447 u_int padlen, need;
djm@openbsd.org6d311932016-07-08 03:44:42 +00001448 u_char *cp;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001449 u_int maclen, aadlen = 0, authlen = 0, block_size;
1450 struct sshenc *enc = NULL;
1451 struct sshmac *mac = NULL;
1452 struct sshcomp *comp = NULL;
markus@openbsd.org128343b2015-01-13 19:31:40 +00001453 int r;
Damien Miller33b13562000-04-04 14:38:59 +10001454
markus@openbsd.org8d057842016-09-30 09:19:13 +00001455 if (state->mux)
1456 return ssh_packet_read_poll2_mux(ssh, typep, seqnr_p);
1457
markus@openbsd.org091c3022015-01-19 19:52:16 +00001458 *typep = SSH_MSG_NONE;
Damien Miller13ae44c2009-01-28 16:38:41 +11001459
markus@openbsd.org091c3022015-01-19 19:52:16 +00001460 if (state->packet_discard)
1461 return 0;
1462
1463 if (state->newkeys[MODE_IN] != NULL) {
1464 enc = &state->newkeys[MODE_IN]->enc;
1465 mac = &state->newkeys[MODE_IN]->mac;
1466 comp = &state->newkeys[MODE_IN]->comp;
Damien Miller1d75abf2013-01-09 16:12:19 +11001467 /* disable mac for authenticated encryption */
1468 if ((authlen = cipher_authlen(enc->cipher)) != 0)
1469 mac = NULL;
Damien Miller33b13562000-04-04 14:38:59 +10001470 }
1471 maclen = mac && mac->enabled ? mac->mac_len : 0;
Damien Miller963f6b22002-02-19 15:21:23 +11001472 block_size = enc ? enc->block_size : 8;
Damien Miller1d75abf2013-01-09 16:12:19 +11001473 aadlen = (mac && mac->enabled && mac->etm) || authlen ? 4 : 0;
Damien Miller33b13562000-04-04 14:38:59 +10001474
markus@openbsd.org091c3022015-01-19 19:52:16 +00001475 if (aadlen && state->packlen == 0) {
djm@openbsd.org4706c1d2016-08-03 05:41:57 +00001476 if (cipher_get_length(state->receive_context,
markus@openbsd.org091c3022015-01-19 19:52:16 +00001477 &state->packlen, state->p_read.seqnr,
1478 sshbuf_ptr(state->input), sshbuf_len(state->input)) != 0)
1479 return 0;
1480 if (state->packlen < 1 + 4 ||
1481 state->packlen > PACKET_MAX_SIZE) {
Damien Milleraf43a7a2012-12-12 10:46:31 +11001482#ifdef PACKET_DEBUG
markus@openbsd.org091c3022015-01-19 19:52:16 +00001483 sshbuf_dump(state->input, stderr);
Damien Milleraf43a7a2012-12-12 10:46:31 +11001484#endif
markus@openbsd.org091c3022015-01-19 19:52:16 +00001485 logit("Bad packet length %u.", state->packlen);
1486 if ((r = sshpkt_disconnect(ssh, "Packet corrupt")) != 0)
1487 return r;
djm@openbsd.org2fecfd42015-11-08 21:59:11 +00001488 return SSH_ERR_CONN_CORRUPT;
Damien Milleraf43a7a2012-12-12 10:46:31 +11001489 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001490 sshbuf_reset(state->incoming_packet);
1491 } else if (state->packlen == 0) {
Damien Miller33b13562000-04-04 14:38:59 +10001492 /*
1493 * check if input size is less than the cipher block size,
1494 * decrypt first block and extract length of incoming packet
1495 */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001496 if (sshbuf_len(state->input) < block_size)
1497 return 0;
1498 sshbuf_reset(state->incoming_packet);
1499 if ((r = sshbuf_reserve(state->incoming_packet, block_size,
1500 &cp)) != 0)
1501 goto out;
djm@openbsd.org4706c1d2016-08-03 05:41:57 +00001502 if ((r = cipher_crypt(state->receive_context,
markus@openbsd.org091c3022015-01-19 19:52:16 +00001503 state->p_send.seqnr, cp, sshbuf_ptr(state->input),
1504 block_size, 0, 0)) != 0)
1505 goto out;
1506 state->packlen = PEEK_U32(sshbuf_ptr(state->incoming_packet));
1507 if (state->packlen < 1 + 4 ||
1508 state->packlen > PACKET_MAX_SIZE) {
Darren Tuckera8151da2003-09-22 21:06:46 +10001509#ifdef PACKET_DEBUG
markus@openbsd.org091c3022015-01-19 19:52:16 +00001510 fprintf(stderr, "input: \n");
1511 sshbuf_dump(state->input, stderr);
1512 fprintf(stderr, "incoming_packet: \n");
1513 sshbuf_dump(state->incoming_packet, stderr);
Darren Tuckera8151da2003-09-22 21:06:46 +10001514#endif
markus@openbsd.org091c3022015-01-19 19:52:16 +00001515 logit("Bad packet length %u.", state->packlen);
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +00001516 return ssh_packet_start_discard(ssh, enc, mac, 0,
1517 PACKET_MAX_SIZE);
Damien Miller33b13562000-04-04 14:38:59 +10001518 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001519 if ((r = sshbuf_consume(state->input, block_size)) != 0)
1520 goto out;
Damien Miller33b13562000-04-04 14:38:59 +10001521 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001522 DBG(debug("input: packet len %u", state->packlen+4));
1523
Damien Milleraf43a7a2012-12-12 10:46:31 +11001524 if (aadlen) {
1525 /* only the payload is encrypted */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001526 need = state->packlen;
Damien Milleraf43a7a2012-12-12 10:46:31 +11001527 } else {
1528 /*
1529 * the payload size and the payload are encrypted, but we
1530 * have a partial packet of block_size bytes
1531 */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001532 need = 4 + state->packlen - block_size;
Damien Milleraf43a7a2012-12-12 10:46:31 +11001533 }
Damien Miller1d75abf2013-01-09 16:12:19 +11001534 DBG(debug("partial packet: block %d, need %d, maclen %d, authlen %d,"
1535 " aadlen %d", block_size, need, maclen, authlen, aadlen));
Darren Tucker99d11a32008-12-01 21:40:48 +11001536 if (need % block_size != 0) {
1537 logit("padding error: need %d block %d mod %d",
Damien Miller33b13562000-04-04 14:38:59 +10001538 need, block_size, need % block_size);
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +00001539 return ssh_packet_start_discard(ssh, enc, mac, 0,
1540 PACKET_MAX_SIZE - block_size);
Darren Tucker99d11a32008-12-01 21:40:48 +11001541 }
Damien Miller33b13562000-04-04 14:38:59 +10001542 /*
1543 * check if the entire packet has been received and
Damien Milleraf43a7a2012-12-12 10:46:31 +11001544 * decrypt into incoming_packet:
1545 * 'aadlen' bytes are unencrypted, but authenticated.
Damien Miller1d75abf2013-01-09 16:12:19 +11001546 * 'need' bytes are encrypted, followed by either
1547 * 'authlen' bytes of authentication tag or
Damien Milleraf43a7a2012-12-12 10:46:31 +11001548 * 'maclen' bytes of message authentication code.
Damien Miller33b13562000-04-04 14:38:59 +10001549 */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001550 if (sshbuf_len(state->input) < aadlen + need + authlen + maclen)
djm@openbsd.org6d311932016-07-08 03:44:42 +00001551 return 0; /* packet is incomplete */
Damien Miller33b13562000-04-04 14:38:59 +10001552#ifdef PACKET_DEBUG
1553 fprintf(stderr, "read_poll enc/full: ");
markus@openbsd.org091c3022015-01-19 19:52:16 +00001554 sshbuf_dump(state->input, stderr);
Damien Miller33b13562000-04-04 14:38:59 +10001555#endif
djm@openbsd.org6d311932016-07-08 03:44:42 +00001556 /* EtM: check mac over encrypted input */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001557 if (mac && mac->enabled && mac->etm) {
djm@openbsd.org6d311932016-07-08 03:44:42 +00001558 if ((r = mac_check(mac, state->p_read.seqnr,
markus@openbsd.org091c3022015-01-19 19:52:16 +00001559 sshbuf_ptr(state->input), aadlen + need,
djm@openbsd.org6d311932016-07-08 03:44:42 +00001560 sshbuf_ptr(state->input) + aadlen + need + authlen,
1561 maclen)) != 0) {
1562 if (r == SSH_ERR_MAC_INVALID)
1563 logit("Corrupted MAC on input.");
markus@openbsd.org091c3022015-01-19 19:52:16 +00001564 goto out;
djm@openbsd.org6d311932016-07-08 03:44:42 +00001565 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001566 }
1567 if ((r = sshbuf_reserve(state->incoming_packet, aadlen + need,
1568 &cp)) != 0)
1569 goto out;
djm@openbsd.org4706c1d2016-08-03 05:41:57 +00001570 if ((r = cipher_crypt(state->receive_context, state->p_read.seqnr, cp,
markus@openbsd.org091c3022015-01-19 19:52:16 +00001571 sshbuf_ptr(state->input), need, aadlen, authlen)) != 0)
1572 goto out;
1573 if ((r = sshbuf_consume(state->input, aadlen + need + authlen)) != 0)
1574 goto out;
Damien Miller4af51302000-04-16 11:18:38 +10001575 if (mac && mac->enabled) {
djm@openbsd.org6d311932016-07-08 03:44:42 +00001576 /* Not EtM: check MAC over cleartext */
1577 if (!mac->etm && (r = mac_check(mac, state->p_read.seqnr,
1578 sshbuf_ptr(state->incoming_packet),
1579 sshbuf_len(state->incoming_packet),
1580 sshbuf_ptr(state->input), maclen)) != 0) {
1581 if (r != SSH_ERR_MAC_INVALID)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001582 goto out;
Damien Miller13ae44c2009-01-28 16:38:41 +11001583 logit("Corrupted MAC on input.");
markus@openbsd.org0fb1a612017-03-11 13:07:35 +00001584 if (need + block_size > PACKET_MAX_SIZE)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001585 return SSH_ERR_INTERNAL_ERROR;
1586 return ssh_packet_start_discard(ssh, enc, mac,
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +00001587 sshbuf_len(state->incoming_packet),
markus@openbsd.org0fb1a612017-03-11 13:07:35 +00001588 PACKET_MAX_SIZE - need - block_size);
Damien Miller13ae44c2009-01-28 16:38:41 +11001589 }
djm@openbsd.org6d311932016-07-08 03:44:42 +00001590 /* Remove MAC from input buffer */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001591 DBG(debug("MAC #%d ok", state->p_read.seqnr));
1592 if ((r = sshbuf_consume(state->input, mac->mac_len)) != 0)
1593 goto out;
Damien Miller33b13562000-04-04 14:38:59 +10001594 }
Damien Miller278f9072001-12-21 15:00:19 +11001595 if (seqnr_p != NULL)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001596 *seqnr_p = state->p_read.seqnr;
1597 if (++state->p_read.seqnr == 0)
Damien Miller996acd22003-04-09 20:59:48 +10001598 logit("incoming seqnr wraps around");
markus@openbsd.org091c3022015-01-19 19:52:16 +00001599 if (++state->p_read.packets == 0)
1600 if (!(ssh->compat & SSH_BUG_NOREKEY))
1601 return SSH_ERR_NEED_REKEY;
1602 state->p_read.blocks += (state->packlen + 4) / block_size;
1603 state->p_read.bytes += state->packlen + 4;
Damien Miller33b13562000-04-04 14:38:59 +10001604
1605 /* get padlen */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001606 padlen = sshbuf_ptr(state->incoming_packet)[4];
Damien Miller33b13562000-04-04 14:38:59 +10001607 DBG(debug("input: padlen %d", padlen));
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001608 if (padlen < 4) {
1609 if ((r = sshpkt_disconnect(ssh,
1610 "Corrupted padlen %d on input.", padlen)) != 0 ||
1611 (r = ssh_packet_write_wait(ssh)) != 0)
1612 return r;
1613 return SSH_ERR_CONN_CORRUPT;
1614 }
Damien Miller33b13562000-04-04 14:38:59 +10001615
1616 /* skip packet size + padlen, discard padding */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001617 if ((r = sshbuf_consume(state->incoming_packet, 4 + 1)) != 0 ||
1618 ((r = sshbuf_consume_end(state->incoming_packet, padlen)) != 0))
1619 goto out;
Damien Miller33b13562000-04-04 14:38:59 +10001620
markus@openbsd.org091c3022015-01-19 19:52:16 +00001621 DBG(debug("input: len before de-compress %zd",
1622 sshbuf_len(state->incoming_packet)));
Damien Miller33b13562000-04-04 14:38:59 +10001623 if (comp && comp->enabled) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001624 sshbuf_reset(state->compression_buffer);
1625 if ((r = uncompress_buffer(ssh, state->incoming_packet,
1626 state->compression_buffer)) != 0)
1627 goto out;
1628 sshbuf_reset(state->incoming_packet);
1629 if ((r = sshbuf_putb(state->incoming_packet,
1630 state->compression_buffer)) != 0)
1631 goto out;
1632 DBG(debug("input: len after de-compress %zd",
1633 sshbuf_len(state->incoming_packet)));
Damien Miller33b13562000-04-04 14:38:59 +10001634 }
1635 /*
1636 * get packet type, implies consume.
1637 * return length of payload (without type field)
1638 */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001639 if ((r = sshbuf_get_u8(state->incoming_packet, typep)) != 0)
1640 goto out;
djm@openbsd.org28136472016-01-29 05:46:01 +00001641 if (ssh_packet_log_type(*typep))
1642 debug3("receive packet: type %u", *typep);
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001643 if (*typep < SSH2_MSG_MIN || *typep >= SSH2_MSG_LOCAL_MIN) {
1644 if ((r = sshpkt_disconnect(ssh,
1645 "Invalid ssh2 packet type: %d", *typep)) != 0 ||
1646 (r = ssh_packet_write_wait(ssh)) != 0)
1647 return r;
1648 return SSH_ERR_PROTOCOL_ERROR;
1649 }
djm@openbsd.org39af7b42016-10-11 21:47:45 +00001650 if (state->hook_in != NULL &&
1651 (r = state->hook_in(ssh, state->incoming_packet, typep,
1652 state->hook_in_ctx)) != 0)
1653 return r;
markus@openbsd.org28652bc2016-09-19 19:02:19 +00001654 if (*typep == SSH2_MSG_USERAUTH_SUCCESS && !state->server_side)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001655 r = ssh_packet_enable_delayed_compress(ssh);
1656 else
1657 r = 0;
Damien Miller33b13562000-04-04 14:38:59 +10001658#ifdef PACKET_DEBUG
markus@openbsd.org091c3022015-01-19 19:52:16 +00001659 fprintf(stderr, "read/plain[%d]:\r\n", *typep);
1660 sshbuf_dump(state->incoming_packet, stderr);
Damien Miller33b13562000-04-04 14:38:59 +10001661#endif
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001662 /* reset for next packet */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001663 state->packlen = 0;
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001664
1665 /* do we need to rekey? */
1666 if (ssh_packet_need_rekeying(ssh, 0)) {
1667 debug3("%s: rekex triggered", __func__);
1668 if ((r = kex_start_rekex(ssh)) != 0)
1669 return r;
1670 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001671 out:
1672 return r;
Damien Miller33b13562000-04-04 14:38:59 +10001673}
1674
1675int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001676ssh_packet_read_poll_seqnr(struct ssh *ssh, u_char *typep, u_int32_t *seqnr_p)
Damien Miller33b13562000-04-04 14:38:59 +10001677{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001678 struct session_state *state = ssh->state;
Ben Lindstrom3f584742002-06-23 21:49:25 +00001679 u_int reason, seqnr;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001680 int r;
1681 u_char *msg;
Damien Miller33b13562000-04-04 14:38:59 +10001682
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001683 for (;;) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001684 msg = NULL;
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001685 r = ssh_packet_read_poll2(ssh, typep, seqnr_p);
1686 if (r != 0)
1687 return r;
1688 if (*typep) {
1689 state->keep_alive_timeouts = 0;
1690 DBG(debug("received packet type %d", *typep));
1691 }
1692 switch (*typep) {
1693 case SSH2_MSG_IGNORE:
1694 debug3("Received SSH2_MSG_IGNORE");
1695 break;
1696 case SSH2_MSG_DEBUG:
1697 if ((r = sshpkt_get_u8(ssh, NULL)) != 0 ||
1698 (r = sshpkt_get_string(ssh, &msg, NULL)) != 0 ||
1699 (r = sshpkt_get_string(ssh, NULL, NULL)) != 0) {
1700 free(msg);
markus@openbsd.org091c3022015-01-19 19:52:16 +00001701 return r;
Darren Tucker136e56f2008-06-08 12:49:30 +10001702 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001703 debug("Remote: %.900s", msg);
1704 free(msg);
1705 break;
1706 case SSH2_MSG_DISCONNECT:
1707 if ((r = sshpkt_get_u32(ssh, &reason)) != 0 ||
1708 (r = sshpkt_get_string(ssh, &msg, NULL)) != 0)
1709 return r;
1710 /* Ignore normal client exit notifications */
1711 do_log2(ssh->state->server_side &&
1712 reason == SSH2_DISCONNECT_BY_APPLICATION ?
1713 SYSLOG_LEVEL_INFO : SYSLOG_LEVEL_ERROR,
1714 "Received disconnect from %s port %d:"
1715 "%u: %.400s", ssh_remote_ipaddr(ssh),
1716 ssh_remote_port(ssh), reason, msg);
1717 free(msg);
1718 return SSH_ERR_DISCONNECTED;
1719 case SSH2_MSG_UNIMPLEMENTED:
1720 if ((r = sshpkt_get_u32(ssh, &seqnr)) != 0)
1721 return r;
1722 debug("Received SSH2_MSG_UNIMPLEMENTED for %u",
1723 seqnr);
1724 break;
1725 default:
1726 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10001727 }
1728 }
1729}
1730
Damien Miller5428f641999-11-25 11:54:57 +11001731/*
1732 * Buffers the given amount of input characters. This is intended to be used
1733 * together with packet_read_poll.
1734 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001735
djm@openbsd.orgfae7bbe2015-01-28 21:15:47 +00001736int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001737ssh_packet_process_incoming(struct ssh *ssh, const char *buf, u_int len)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001738{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001739 struct session_state *state = ssh->state;
1740 int r;
1741
1742 if (state->packet_discard) {
1743 state->keep_alive_timeouts = 0; /* ?? */
1744 if (len >= state->packet_discard) {
1745 if ((r = ssh_packet_stop_discard(ssh)) != 0)
djm@openbsd.orgfae7bbe2015-01-28 21:15:47 +00001746 return r;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001747 }
1748 state->packet_discard -= len;
djm@openbsd.orgfae7bbe2015-01-28 21:15:47 +00001749 return 0;
Damien Miller13ae44c2009-01-28 16:38:41 +11001750 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001751 if ((r = sshbuf_put(ssh->state->input, buf, len)) != 0)
djm@openbsd.orgfae7bbe2015-01-28 21:15:47 +00001752 return r;
1753
1754 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10001755}
1756
Damien Miller4af51302000-04-16 11:18:38 +10001757int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001758ssh_packet_remaining(struct ssh *ssh)
Damien Miller4af51302000-04-16 11:18:38 +10001759{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001760 return sshbuf_len(ssh->state->incoming_packet);
Damien Millerda108ec2010-08-31 22:36:39 +10001761}
1762
Damien Miller5428f641999-11-25 11:54:57 +11001763/*
1764 * Sends a diagnostic message from the server to the client. This message
1765 * can be sent at any time (but not while constructing another message). The
1766 * message is printed immediately, but only if the client is being executed
1767 * in verbose mode. These messages are primarily intended to ease debugging
1768 * authentication problems. The length of the formatted message must not
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001769 * exceed 1024 bytes. This will automatically call ssh_packet_write_wait.
Damien Miller5428f641999-11-25 11:54:57 +11001770 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001771void
markus@openbsd.org091c3022015-01-19 19:52:16 +00001772ssh_packet_send_debug(struct ssh *ssh, const char *fmt,...)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001773{
Damien Miller95def091999-11-25 00:26:21 +11001774 char buf[1024];
1775 va_list args;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001776 int r;
Damien Miller95def091999-11-25 00:26:21 +11001777
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001778 if ((ssh->compat & SSH_BUG_DEBUG))
Ben Lindstroma14ee472000-12-07 01:24:58 +00001779 return;
1780
Damien Miller95def091999-11-25 00:26:21 +11001781 va_start(args, fmt);
1782 vsnprintf(buf, sizeof(buf), fmt, args);
1783 va_end(args);
1784
djm@openbsd.orgeb80e262017-10-13 21:13:54 +00001785 debug3("sending debug message: %s", buf);
1786
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001787 if ((r = sshpkt_start(ssh, SSH2_MSG_DEBUG)) != 0 ||
1788 (r = sshpkt_put_u8(ssh, 0)) != 0 || /* always display */
1789 (r = sshpkt_put_cstring(ssh, buf)) != 0 ||
1790 (r = sshpkt_put_cstring(ssh, "")) != 0 ||
1791 (r = sshpkt_send(ssh)) != 0 ||
1792 (r = ssh_packet_write_wait(ssh)) != 0)
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001793 fatal("%s: %s", __func__, ssh_err(r));
1794}
1795
dtucker@openbsd.org48c23a32017-12-10 05:55:29 +00001796void
1797sshpkt_fmt_connection_id(struct ssh *ssh, char *s, size_t l)
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001798{
1799 snprintf(s, l, "%.200s%s%s port %d",
1800 ssh->log_preamble ? ssh->log_preamble : "",
1801 ssh->log_preamble ? " " : "",
1802 ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
1803}
1804
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001805/*
1806 * Pretty-print connection-terminating errors and exit.
1807 */
1808void
1809sshpkt_fatal(struct ssh *ssh, const char *tag, int r)
1810{
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001811 char remote_id[512];
1812
dtucker@openbsd.org48c23a32017-12-10 05:55:29 +00001813 sshpkt_fmt_connection_id(ssh, remote_id, sizeof(remote_id));
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001814
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001815 switch (r) {
1816 case SSH_ERR_CONN_CLOSED:
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001817 ssh_packet_clear_keys(ssh);
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001818 logdie("Connection closed by %s", remote_id);
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001819 case SSH_ERR_CONN_TIMEOUT:
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001820 ssh_packet_clear_keys(ssh);
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001821 logdie("Connection %s %s timed out",
1822 ssh->state->server_side ? "from" : "to", remote_id);
djm@openbsd.org639d6bc2015-05-01 07:10:01 +00001823 case SSH_ERR_DISCONNECTED:
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001824 ssh_packet_clear_keys(ssh);
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001825 logdie("Disconnected from %s", remote_id);
djm@openbsd.org639d6bc2015-05-01 07:10:01 +00001826 case SSH_ERR_SYSTEM_ERROR:
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001827 if (errno == ECONNRESET) {
1828 ssh_packet_clear_keys(ssh);
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001829 logdie("Connection reset by %s", remote_id);
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001830 }
djm@openbsd.org639d6bc2015-05-01 07:10:01 +00001831 /* FALLTHROUGH */
djm@openbsd.orgf3199122015-07-29 04:43:06 +00001832 case SSH_ERR_NO_CIPHER_ALG_MATCH:
1833 case SSH_ERR_NO_MAC_ALG_MATCH:
1834 case SSH_ERR_NO_COMPRESS_ALG_MATCH:
1835 case SSH_ERR_NO_KEX_ALG_MATCH:
1836 case SSH_ERR_NO_HOSTKEY_ALG_MATCH:
1837 if (ssh && ssh->kex && ssh->kex->failed_choice) {
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001838 ssh_packet_clear_keys(ssh);
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001839 logdie("Unable to negotiate with %s: %s. "
1840 "Their offer: %s", remote_id, ssh_err(r),
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +00001841 ssh->kex->failed_choice);
djm@openbsd.orgf3199122015-07-29 04:43:06 +00001842 }
1843 /* FALLTHROUGH */
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001844 default:
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001845 ssh_packet_clear_keys(ssh);
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001846 logdie("%s%sConnection %s %s: %s",
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001847 tag != NULL ? tag : "", tag != NULL ? ": " : "",
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +00001848 ssh->state->server_side ? "from" : "to",
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001849 remote_id, ssh_err(r));
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001850 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001851}
1852
Damien Miller5428f641999-11-25 11:54:57 +11001853/*
1854 * Logs the error plus constructs and sends a disconnect packet, closes the
1855 * connection, and exits. This function never returns. The error message
1856 * should not contain a newline. The length of the formatted message must
1857 * not exceed 1024 bytes.
1858 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001859void
markus@openbsd.org091c3022015-01-19 19:52:16 +00001860ssh_packet_disconnect(struct ssh *ssh, const char *fmt,...)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001861{
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001862 char buf[1024], remote_id[512];
Damien Miller95def091999-11-25 00:26:21 +11001863 va_list args;
1864 static int disconnecting = 0;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001865 int r;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001866
Damien Miller95def091999-11-25 00:26:21 +11001867 if (disconnecting) /* Guard against recursive invocations. */
1868 fatal("packet_disconnect called recursively.");
1869 disconnecting = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001870
Damien Miller5428f641999-11-25 11:54:57 +11001871 /*
1872 * Format the message. Note that the caller must make sure the
1873 * message is of limited size.
1874 */
dtucker@openbsd.org48c23a32017-12-10 05:55:29 +00001875 sshpkt_fmt_connection_id(ssh, remote_id, sizeof(remote_id));
Damien Miller95def091999-11-25 00:26:21 +11001876 va_start(args, fmt);
1877 vsnprintf(buf, sizeof(buf), fmt, args);
1878 va_end(args);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001879
Ben Lindstrom9bda7ae2002-11-09 15:46:24 +00001880 /* Display the error locally */
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001881 logit("Disconnecting %s: %.100s", remote_id, buf);
Ben Lindstrom9bda7ae2002-11-09 15:46:24 +00001882
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001883 /*
1884 * Send the disconnect message to the other side, and wait
1885 * for it to get sent.
1886 */
1887 if ((r = sshpkt_disconnect(ssh, "%s", buf)) != 0)
1888 sshpkt_fatal(ssh, __func__, r);
1889
1890 if ((r = ssh_packet_write_wait(ssh)) != 0)
1891 sshpkt_fatal(ssh, __func__, r);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001892
Damien Miller95def091999-11-25 00:26:21 +11001893 /* Close the connection. */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001894 ssh_packet_close(ssh);
Darren Tucker3e33cec2003-10-02 16:12:36 +10001895 cleanup_exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001896}
1897
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001898/*
1899 * Checks if there is any buffered output, and tries to write some of
1900 * the output.
1901 */
1902int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001903ssh_packet_write_poll(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001904{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001905 struct session_state *state = ssh->state;
1906 int len = sshbuf_len(state->output);
markus@openbsd.orga3068632016-01-14 16:17:39 +00001907 int r;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001908
Damien Miller95def091999-11-25 00:26:21 +11001909 if (len > 0) {
markus@openbsd.orga3068632016-01-14 16:17:39 +00001910 len = write(state->connection_out,
1911 sshbuf_ptr(state->output), len);
Damien Millerd874fa52008-07-05 09:40:56 +10001912 if (len == -1) {
Damien Millerea437422009-10-02 11:49:03 +10001913 if (errno == EINTR || errno == EAGAIN ||
1914 errno == EWOULDBLOCK)
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001915 return 0;
1916 return SSH_ERR_SYSTEM_ERROR;
Damien Miller95def091999-11-25 00:26:21 +11001917 }
markus@openbsd.orga3068632016-01-14 16:17:39 +00001918 if (len == 0)
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001919 return SSH_ERR_CONN_CLOSED;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001920 if ((r = sshbuf_consume(state->output, len)) != 0)
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001921 return r;
Damien Miller95def091999-11-25 00:26:21 +11001922 }
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001923 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001924}
1925
Damien Miller5428f641999-11-25 11:54:57 +11001926/*
1927 * Calls packet_write_poll repeatedly until all pending output data has been
1928 * written.
1929 */
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001930int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001931ssh_packet_write_wait(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001932{
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001933 fd_set *setp;
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001934 int ret, r, ms_remain = 0;
Darren Tucker3fc464e2008-06-13 06:42:45 +10001935 struct timeval start, timeout, *timeoutp = NULL;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001936 struct session_state *state = ssh->state;
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001937
deraadt@openbsd.orgce445b02015-08-20 22:32:42 +00001938 setp = calloc(howmany(state->connection_out + 1,
Darren Tuckerf7288d72009-06-21 18:12:20 +10001939 NFDBITS), sizeof(fd_mask));
markus@openbsd.org091c3022015-01-19 19:52:16 +00001940 if (setp == NULL)
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001941 return SSH_ERR_ALLOC_FAIL;
gsoares@openbsd.org66d2e222015-10-21 11:33:03 +00001942 if ((r = ssh_packet_write_poll(ssh)) != 0) {
1943 free(setp);
djm@openbsd.org84082182015-09-21 04:31:00 +00001944 return r;
gsoares@openbsd.org66d2e222015-10-21 11:33:03 +00001945 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001946 while (ssh_packet_have_data_to_write(ssh)) {
1947 memset(setp, 0, howmany(state->connection_out + 1,
Darren Tuckerf7288d72009-06-21 18:12:20 +10001948 NFDBITS) * sizeof(fd_mask));
markus@openbsd.org091c3022015-01-19 19:52:16 +00001949 FD_SET(state->connection_out, setp);
Darren Tucker3fc464e2008-06-13 06:42:45 +10001950
markus@openbsd.org091c3022015-01-19 19:52:16 +00001951 if (state->packet_timeout_ms > 0) {
1952 ms_remain = state->packet_timeout_ms;
Darren Tucker3fc464e2008-06-13 06:42:45 +10001953 timeoutp = &timeout;
1954 }
1955 for (;;) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001956 if (state->packet_timeout_ms != -1) {
Darren Tucker3fc464e2008-06-13 06:42:45 +10001957 ms_to_timeval(&timeout, ms_remain);
dtucker@openbsd.org@openbsd.org5db6fbf2017-11-25 06:46:22 +00001958 monotime_tv(&start);
Darren Tucker3fc464e2008-06-13 06:42:45 +10001959 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001960 if ((ret = select(state->connection_out + 1,
Darren Tuckerf7288d72009-06-21 18:12:20 +10001961 NULL, setp, NULL, timeoutp)) >= 0)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001962 break;
Damien Millerea437422009-10-02 11:49:03 +10001963 if (errno != EAGAIN && errno != EINTR &&
1964 errno != EWOULDBLOCK)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001965 break;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001966 if (state->packet_timeout_ms == -1)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001967 continue;
1968 ms_subtract_diff(&start, &ms_remain);
1969 if (ms_remain <= 0) {
1970 ret = 0;
1971 break;
1972 }
1973 }
1974 if (ret == 0) {
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001975 free(setp);
1976 return SSH_ERR_CONN_TIMEOUT;
Darren Tucker3fc464e2008-06-13 06:42:45 +10001977 }
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001978 if ((r = ssh_packet_write_poll(ssh)) != 0) {
1979 free(setp);
1980 return r;
1981 }
Damien Miller95def091999-11-25 00:26:21 +11001982 }
Darren Tuckera627d422013-06-02 07:31:17 +10001983 free(setp);
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001984 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001985}
1986
1987/* Returns true if there is buffered data to write to the connection. */
1988
1989int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001990ssh_packet_have_data_to_write(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001991{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001992 return sshbuf_len(ssh->state->output) != 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001993}
1994
1995/* Returns true if there is not too much data to write to the connection. */
1996
1997int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001998ssh_packet_not_very_much_data_to_write(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001999{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002000 if (ssh->state->interactive_mode)
2001 return sshbuf_len(ssh->state->output) < 16384;
Damien Miller95def091999-11-25 00:26:21 +11002002 else
markus@openbsd.org091c3022015-01-19 19:52:16 +00002003 return sshbuf_len(ssh->state->output) < 128 * 1024;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002004}
2005
markus@openbsd.org091c3022015-01-19 19:52:16 +00002006void
2007ssh_packet_set_tos(struct ssh *ssh, int tos)
Ben Lindstroma7433982002-12-23 02:41:41 +00002008{
Damien Millerd2ac5d72011-05-15 08:43:13 +10002009#ifndef IP_TOS_IS_BROKEN
djm@openbsd.org51676ec2017-07-23 23:37:02 +00002010 if (!ssh_packet_connection_is_on_socket(ssh) || tos == INT_MAX)
Ben Lindstroma7433982002-12-23 02:41:41 +00002011 return;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002012 switch (ssh_packet_connection_af(ssh)) {
Damien Millerd2ac5d72011-05-15 08:43:13 +10002013# ifdef IP_TOS
2014 case AF_INET:
2015 debug3("%s: set IP_TOS 0x%02x", __func__, tos);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002016 if (setsockopt(ssh->state->connection_in,
Damien Millerd2ac5d72011-05-15 08:43:13 +10002017 IPPROTO_IP, IP_TOS, &tos, sizeof(tos)) < 0)
2018 error("setsockopt IP_TOS %d: %.100s:",
2019 tos, strerror(errno));
2020 break;
2021# endif /* IP_TOS */
2022# ifdef IPV6_TCLASS
2023 case AF_INET6:
2024 debug3("%s: set IPV6_TCLASS 0x%02x", __func__, tos);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002025 if (setsockopt(ssh->state->connection_in,
Damien Millerd2ac5d72011-05-15 08:43:13 +10002026 IPPROTO_IPV6, IPV6_TCLASS, &tos, sizeof(tos)) < 0)
2027 error("setsockopt IPV6_TCLASS %d: %.100s:",
2028 tos, strerror(errno));
2029 break;
Damien Millerd2ac5d72011-05-15 08:43:13 +10002030# endif /* IPV6_TCLASS */
Damien Miller23f425b2011-05-15 08:58:15 +10002031 }
Damien Millerd2ac5d72011-05-15 08:43:13 +10002032#endif /* IP_TOS_IS_BROKEN */
Damien Miller5924ceb2003-11-22 15:02:42 +11002033}
Ben Lindstroma7433982002-12-23 02:41:41 +00002034
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002035/* Informs that the current session is interactive. Sets IP flags for that. */
2036
2037void
markus@openbsd.org091c3022015-01-19 19:52:16 +00002038ssh_packet_set_interactive(struct ssh *ssh, int interactive, int qos_interactive, int qos_bulk)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002039{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002040 struct session_state *state = ssh->state;
2041
2042 if (state->set_interactive_called)
Ben Lindstrombf555ba2001-01-18 02:04:35 +00002043 return;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002044 state->set_interactive_called = 1;
Ben Lindstrombf555ba2001-01-18 02:04:35 +00002045
Damien Miller95def091999-11-25 00:26:21 +11002046 /* Record that we are in interactive mode. */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002047 state->interactive_mode = interactive;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002048
Damien Miller34132e52000-01-14 15:45:46 +11002049 /* Only set socket options if using a socket. */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002050 if (!ssh_packet_connection_is_on_socket(ssh))
Ben Lindstrom93b6b772003-04-27 17:55:33 +00002051 return;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002052 set_nodelay(state->connection_in);
2053 ssh_packet_set_tos(ssh, interactive ? qos_interactive :
2054 qos_bulk);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002055}
2056
2057/* Returns true if the current connection is interactive. */
2058
2059int
markus@openbsd.org091c3022015-01-19 19:52:16 +00002060ssh_packet_is_interactive(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002061{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002062 return ssh->state->interactive_mode;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002063}
Damien Miller6162d121999-11-21 13:23:52 +11002064
Darren Tucker1f8311c2004-05-13 16:39:33 +10002065int
markus@openbsd.org091c3022015-01-19 19:52:16 +00002066ssh_packet_set_maxsize(struct ssh *ssh, u_int s)
Damien Miller6162d121999-11-21 13:23:52 +11002067{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002068 struct session_state *state = ssh->state;
2069
2070 if (state->set_maxsize_called) {
Damien Miller996acd22003-04-09 20:59:48 +10002071 logit("packet_set_maxsize: called twice: old %d new %d",
markus@openbsd.org091c3022015-01-19 19:52:16 +00002072 state->max_packet_size, s);
Damien Miller95def091999-11-25 00:26:21 +11002073 return -1;
2074 }
2075 if (s < 4 * 1024 || s > 1024 * 1024) {
Damien Miller996acd22003-04-09 20:59:48 +10002076 logit("packet_set_maxsize: bad size %d", s);
Damien Miller95def091999-11-25 00:26:21 +11002077 return -1;
2078 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00002079 state->set_maxsize_called = 1;
Ben Lindstrom16d45b32001-06-13 04:39:18 +00002080 debug("packet_set_maxsize: setting to %d", s);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002081 state->max_packet_size = s;
Damien Miller95def091999-11-25 00:26:21 +11002082 return s;
Damien Miller6162d121999-11-21 13:23:52 +11002083}
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00002084
Darren Tuckerf7288d72009-06-21 18:12:20 +10002085int
markus@openbsd.org091c3022015-01-19 19:52:16 +00002086ssh_packet_inc_alive_timeouts(struct ssh *ssh)
Darren Tuckerf7288d72009-06-21 18:12:20 +10002087{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002088 return ++ssh->state->keep_alive_timeouts;
Darren Tuckerf7288d72009-06-21 18:12:20 +10002089}
2090
2091void
markus@openbsd.org091c3022015-01-19 19:52:16 +00002092ssh_packet_set_alive_timeouts(struct ssh *ssh, int ka)
Darren Tuckerf7288d72009-06-21 18:12:20 +10002093{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002094 ssh->state->keep_alive_timeouts = ka;
Darren Tuckerf7288d72009-06-21 18:12:20 +10002095}
2096
2097u_int
markus@openbsd.org091c3022015-01-19 19:52:16 +00002098ssh_packet_get_maxsize(struct ssh *ssh)
Darren Tuckerf7288d72009-06-21 18:12:20 +10002099{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002100 return ssh->state->max_packet_size;
Damien Miller9f643902001-11-12 11:02:52 +11002101}
2102
Damien Millera5539d22003-04-09 20:50:06 +10002103void
dtucker@openbsd.orgc998bf02017-02-03 02:56:00 +00002104ssh_packet_set_rekey_limits(struct ssh *ssh, u_int64_t bytes, u_int32_t seconds)
Damien Millera5539d22003-04-09 20:50:06 +10002105{
dtucker@openbsd.orgc998bf02017-02-03 02:56:00 +00002106 debug3("rekey after %llu bytes, %u seconds", (unsigned long long)bytes,
2107 (unsigned int)seconds);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002108 ssh->state->rekey_limit = bytes;
2109 ssh->state->rekey_interval = seconds;
Darren Tuckerc53c2af2013-05-16 20:28:16 +10002110}
2111
2112time_t
markus@openbsd.org091c3022015-01-19 19:52:16 +00002113ssh_packet_get_rekey_timeout(struct ssh *ssh)
Darren Tuckerc53c2af2013-05-16 20:28:16 +10002114{
2115 time_t seconds;
2116
markus@openbsd.org091c3022015-01-19 19:52:16 +00002117 seconds = ssh->state->rekey_time + ssh->state->rekey_interval -
Darren Tuckerb759c9c2013-06-02 07:46:16 +10002118 monotime();
Darren Tucker5f96f3b2013-05-16 20:29:28 +10002119 return (seconds <= 0 ? 1 : seconds);
Damien Millera5539d22003-04-09 20:50:06 +10002120}
Damien Miller9786e6e2005-07-26 21:54:56 +10002121
2122void
markus@openbsd.org091c3022015-01-19 19:52:16 +00002123ssh_packet_set_server(struct ssh *ssh)
Damien Miller9786e6e2005-07-26 21:54:56 +10002124{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002125 ssh->state->server_side = 1;
Damien Miller9786e6e2005-07-26 21:54:56 +10002126}
2127
2128void
markus@openbsd.org091c3022015-01-19 19:52:16 +00002129ssh_packet_set_authenticated(struct ssh *ssh)
Damien Miller9786e6e2005-07-26 21:54:56 +10002130{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002131 ssh->state->after_authentication = 1;
Darren Tuckerf7288d72009-06-21 18:12:20 +10002132}
2133
2134void *
markus@openbsd.org091c3022015-01-19 19:52:16 +00002135ssh_packet_get_input(struct ssh *ssh)
Darren Tuckerf7288d72009-06-21 18:12:20 +10002136{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002137 return (void *)ssh->state->input;
Darren Tuckerf7288d72009-06-21 18:12:20 +10002138}
2139
2140void *
markus@openbsd.org091c3022015-01-19 19:52:16 +00002141ssh_packet_get_output(struct ssh *ssh)
Darren Tuckerf7288d72009-06-21 18:12:20 +10002142{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002143 return (void *)ssh->state->output;
Darren Tuckerf7288d72009-06-21 18:12:20 +10002144}
2145
Damien Millerc31a0cd2014-05-15 14:37:39 +10002146/* Reset after_authentication and reset compression in post-auth privsep */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002147static int
2148ssh_packet_set_postauth(struct ssh *ssh)
Damien Millerc31a0cd2014-05-15 14:37:39 +10002149{
djm@openbsd.org0082fba2016-09-28 16:33:06 +00002150 int r;
Damien Millerc31a0cd2014-05-15 14:37:39 +10002151
2152 debug("%s: called", __func__);
2153 /* This was set in net child, but is not visible in user child */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002154 ssh->state->after_authentication = 1;
2155 ssh->state->rekeying = 0;
djm@openbsd.org0082fba2016-09-28 16:33:06 +00002156 if ((r = ssh_packet_enable_delayed_compress(ssh)) != 0)
2157 return r;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002158 return 0;
2159}
2160
2161/* Packet state (de-)serialization for privsep */
2162
2163/* turn kex into a blob for packet state serialization */
2164static int
2165kex_to_blob(struct sshbuf *m, struct kex *kex)
2166{
2167 int r;
2168
2169 if ((r = sshbuf_put_string(m, kex->session_id,
2170 kex->session_id_len)) != 0 ||
2171 (r = sshbuf_put_u32(m, kex->we_need)) != 0 ||
djm@openbsd.org349ecd42017-12-18 23:13:42 +00002172 (r = sshbuf_put_cstring(m, kex->hostkey_alg)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +00002173 (r = sshbuf_put_u32(m, kex->hostkey_type)) != 0 ||
djm@openbsd.org349ecd42017-12-18 23:13:42 +00002174 (r = sshbuf_put_u32(m, kex->hostkey_nid)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +00002175 (r = sshbuf_put_u32(m, kex->kex_type)) != 0 ||
2176 (r = sshbuf_put_stringb(m, kex->my)) != 0 ||
2177 (r = sshbuf_put_stringb(m, kex->peer)) != 0 ||
2178 (r = sshbuf_put_u32(m, kex->flags)) != 0 ||
2179 (r = sshbuf_put_cstring(m, kex->client_version_string)) != 0 ||
2180 (r = sshbuf_put_cstring(m, kex->server_version_string)) != 0)
2181 return r;
2182 return 0;
2183}
2184
2185/* turn key exchange results into a blob for packet state serialization */
2186static int
2187newkeys_to_blob(struct sshbuf *m, struct ssh *ssh, int mode)
2188{
2189 struct sshbuf *b;
2190 struct sshcipher_ctx *cc;
2191 struct sshcomp *comp;
2192 struct sshenc *enc;
2193 struct sshmac *mac;
2194 struct newkeys *newkey;
2195 int r;
2196
2197 if ((newkey = ssh->state->newkeys[mode]) == NULL)
2198 return SSH_ERR_INTERNAL_ERROR;
2199 enc = &newkey->enc;
2200 mac = &newkey->mac;
2201 comp = &newkey->comp;
djm@openbsd.org4706c1d2016-08-03 05:41:57 +00002202 cc = (mode == MODE_OUT) ? ssh->state->send_context :
2203 ssh->state->receive_context;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002204 if ((r = cipher_get_keyiv(cc, enc->iv, enc->iv_len)) != 0)
2205 return r;
2206 if ((b = sshbuf_new()) == NULL)
2207 return SSH_ERR_ALLOC_FAIL;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002208 if ((r = sshbuf_put_cstring(b, enc->name)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +00002209 (r = sshbuf_put_u32(b, enc->enabled)) != 0 ||
2210 (r = sshbuf_put_u32(b, enc->block_size)) != 0 ||
2211 (r = sshbuf_put_string(b, enc->key, enc->key_len)) != 0 ||
2212 (r = sshbuf_put_string(b, enc->iv, enc->iv_len)) != 0)
2213 goto out;
2214 if (cipher_authlen(enc->cipher) == 0) {
2215 if ((r = sshbuf_put_cstring(b, mac->name)) != 0 ||
2216 (r = sshbuf_put_u32(b, mac->enabled)) != 0 ||
2217 (r = sshbuf_put_string(b, mac->key, mac->key_len)) != 0)
2218 goto out;
2219 }
2220 if ((r = sshbuf_put_u32(b, comp->type)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +00002221 (r = sshbuf_put_cstring(b, comp->name)) != 0)
2222 goto out;
2223 r = sshbuf_put_stringb(m, b);
2224 out:
mmcc@openbsd.org52d70782015-12-11 04:21:11 +00002225 sshbuf_free(b);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002226 return r;
2227}
2228
2229/* serialize packet state into a blob */
2230int
2231ssh_packet_get_state(struct ssh *ssh, struct sshbuf *m)
2232{
2233 struct session_state *state = ssh->state;
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002234 int r;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002235
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002236 if ((r = kex_to_blob(m, ssh->kex)) != 0 ||
2237 (r = newkeys_to_blob(m, ssh, MODE_OUT)) != 0 ||
2238 (r = newkeys_to_blob(m, ssh, MODE_IN)) != 0 ||
2239 (r = sshbuf_put_u64(m, state->rekey_limit)) != 0 ||
2240 (r = sshbuf_put_u32(m, state->rekey_interval)) != 0 ||
2241 (r = sshbuf_put_u32(m, state->p_send.seqnr)) != 0 ||
2242 (r = sshbuf_put_u64(m, state->p_send.blocks)) != 0 ||
2243 (r = sshbuf_put_u32(m, state->p_send.packets)) != 0 ||
2244 (r = sshbuf_put_u64(m, state->p_send.bytes)) != 0 ||
2245 (r = sshbuf_put_u32(m, state->p_read.seqnr)) != 0 ||
2246 (r = sshbuf_put_u64(m, state->p_read.blocks)) != 0 ||
2247 (r = sshbuf_put_u32(m, state->p_read.packets)) != 0 ||
djm@openbsd.org7461a5b2017-05-08 00:21:36 +00002248 (r = sshbuf_put_u64(m, state->p_read.bytes)) != 0 ||
2249 (r = sshbuf_put_stringb(m, state->input)) != 0 ||
2250 (r = sshbuf_put_stringb(m, state->output)) != 0)
djm@openbsd.org2e58a692017-05-08 06:03:39 +00002251 return r;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002252
markus@openbsd.org091c3022015-01-19 19:52:16 +00002253 return 0;
2254}
2255
2256/* restore key exchange results from blob for packet state de-serialization */
2257static int
2258newkeys_from_blob(struct sshbuf *m, struct ssh *ssh, int mode)
2259{
2260 struct sshbuf *b = NULL;
2261 struct sshcomp *comp;
2262 struct sshenc *enc;
2263 struct sshmac *mac;
2264 struct newkeys *newkey = NULL;
2265 size_t keylen, ivlen, maclen;
2266 int r;
2267
2268 if ((newkey = calloc(1, sizeof(*newkey))) == NULL) {
2269 r = SSH_ERR_ALLOC_FAIL;
2270 goto out;
2271 }
2272 if ((r = sshbuf_froms(m, &b)) != 0)
2273 goto out;
2274#ifdef DEBUG_PK
2275 sshbuf_dump(b, stderr);
2276#endif
2277 enc = &newkey->enc;
2278 mac = &newkey->mac;
2279 comp = &newkey->comp;
2280
2281 if ((r = sshbuf_get_cstring(b, &enc->name, NULL)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +00002282 (r = sshbuf_get_u32(b, (u_int *)&enc->enabled)) != 0 ||
2283 (r = sshbuf_get_u32(b, &enc->block_size)) != 0 ||
2284 (r = sshbuf_get_string(b, &enc->key, &keylen)) != 0 ||
2285 (r = sshbuf_get_string(b, &enc->iv, &ivlen)) != 0)
2286 goto out;
djm@openbsd.org33f86262017-06-24 06:38:11 +00002287 if ((enc->cipher = cipher_by_name(enc->name)) == NULL) {
2288 r = SSH_ERR_INVALID_FORMAT;
2289 goto out;
2290 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00002291 if (cipher_authlen(enc->cipher) == 0) {
2292 if ((r = sshbuf_get_cstring(b, &mac->name, NULL)) != 0)
2293 goto out;
2294 if ((r = mac_setup(mac, mac->name)) != 0)
2295 goto out;
2296 if ((r = sshbuf_get_u32(b, (u_int *)&mac->enabled)) != 0 ||
2297 (r = sshbuf_get_string(b, &mac->key, &maclen)) != 0)
2298 goto out;
2299 if (maclen > mac->key_len) {
2300 r = SSH_ERR_INVALID_FORMAT;
2301 goto out;
2302 }
2303 mac->key_len = maclen;
2304 }
2305 if ((r = sshbuf_get_u32(b, &comp->type)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +00002306 (r = sshbuf_get_cstring(b, &comp->name, NULL)) != 0)
2307 goto out;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002308 if (sshbuf_len(b) != 0) {
2309 r = SSH_ERR_INVALID_FORMAT;
2310 goto out;
2311 }
2312 enc->key_len = keylen;
2313 enc->iv_len = ivlen;
2314 ssh->kex->newkeys[mode] = newkey;
2315 newkey = NULL;
2316 r = 0;
2317 out:
mmcc@openbsd.orgd59ce082015-12-10 17:08:40 +00002318 free(newkey);
mmcc@openbsd.org52d70782015-12-11 04:21:11 +00002319 sshbuf_free(b);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002320 return r;
2321}
2322
2323/* restore kex from blob for packet state de-serialization */
2324static int
2325kex_from_blob(struct sshbuf *m, struct kex **kexp)
2326{
2327 struct kex *kex;
2328 int r;
2329
2330 if ((kex = calloc(1, sizeof(struct kex))) == NULL ||
2331 (kex->my = sshbuf_new()) == NULL ||
2332 (kex->peer = sshbuf_new()) == NULL) {
2333 r = SSH_ERR_ALLOC_FAIL;
2334 goto out;
2335 }
2336 if ((r = sshbuf_get_string(m, &kex->session_id, &kex->session_id_len)) != 0 ||
2337 (r = sshbuf_get_u32(m, &kex->we_need)) != 0 ||
djm@openbsd.org349ecd42017-12-18 23:13:42 +00002338 (r = sshbuf_get_cstring(m, &kex->hostkey_alg, NULL)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +00002339 (r = sshbuf_get_u32(m, (u_int *)&kex->hostkey_type)) != 0 ||
djm@openbsd.org349ecd42017-12-18 23:13:42 +00002340 (r = sshbuf_get_u32(m, (u_int *)&kex->hostkey_nid)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +00002341 (r = sshbuf_get_u32(m, &kex->kex_type)) != 0 ||
2342 (r = sshbuf_get_stringb(m, kex->my)) != 0 ||
2343 (r = sshbuf_get_stringb(m, kex->peer)) != 0 ||
2344 (r = sshbuf_get_u32(m, &kex->flags)) != 0 ||
2345 (r = sshbuf_get_cstring(m, &kex->client_version_string, NULL)) != 0 ||
2346 (r = sshbuf_get_cstring(m, &kex->server_version_string, NULL)) != 0)
2347 goto out;
2348 kex->server = 1;
2349 kex->done = 1;
2350 r = 0;
2351 out:
2352 if (r != 0 || kexp == NULL) {
2353 if (kex != NULL) {
mmcc@openbsd.org52d70782015-12-11 04:21:11 +00002354 sshbuf_free(kex->my);
2355 sshbuf_free(kex->peer);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002356 free(kex);
2357 }
2358 if (kexp != NULL)
2359 *kexp = NULL;
2360 } else {
2361 *kexp = kex;
2362 }
2363 return r;
2364}
2365
2366/*
2367 * Restore packet state from content of blob 'm' (de-serialization).
2368 * Note that 'm' will be partially consumed on parsing or any other errors.
2369 */
2370int
2371ssh_packet_set_state(struct ssh *ssh, struct sshbuf *m)
2372{
2373 struct session_state *state = ssh->state;
djm@openbsd.orgacaf34f2017-05-07 23:12:57 +00002374 const u_char *input, *output;
2375 size_t ilen, olen;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002376 int r;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002377
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002378 if ((r = kex_from_blob(m, &ssh->kex)) != 0 ||
2379 (r = newkeys_from_blob(m, ssh, MODE_OUT)) != 0 ||
2380 (r = newkeys_from_blob(m, ssh, MODE_IN)) != 0 ||
2381 (r = sshbuf_get_u64(m, &state->rekey_limit)) != 0 ||
2382 (r = sshbuf_get_u32(m, &state->rekey_interval)) != 0 ||
2383 (r = sshbuf_get_u32(m, &state->p_send.seqnr)) != 0 ||
2384 (r = sshbuf_get_u64(m, &state->p_send.blocks)) != 0 ||
2385 (r = sshbuf_get_u32(m, &state->p_send.packets)) != 0 ||
2386 (r = sshbuf_get_u64(m, &state->p_send.bytes)) != 0 ||
2387 (r = sshbuf_get_u32(m, &state->p_read.seqnr)) != 0 ||
2388 (r = sshbuf_get_u64(m, &state->p_read.blocks)) != 0 ||
2389 (r = sshbuf_get_u32(m, &state->p_read.packets)) != 0 ||
2390 (r = sshbuf_get_u64(m, &state->p_read.bytes)) != 0)
2391 return r;
2392 /*
2393 * We set the time here so that in post-auth privsep slave we
2394 * count from the completion of the authentication.
2395 */
2396 state->rekey_time = monotime();
2397 /* XXX ssh_set_newkeys overrides p_read.packets? XXX */
2398 if ((r = ssh_set_newkeys(ssh, MODE_IN)) != 0 ||
2399 (r = ssh_set_newkeys(ssh, MODE_OUT)) != 0)
2400 return r;
2401
djm@openbsd.org0082fba2016-09-28 16:33:06 +00002402 if ((r = ssh_packet_set_postauth(ssh)) != 0)
markus@openbsd.org091c3022015-01-19 19:52:16 +00002403 return r;
2404
2405 sshbuf_reset(state->input);
2406 sshbuf_reset(state->output);
2407 if ((r = sshbuf_get_string_direct(m, &input, &ilen)) != 0 ||
2408 (r = sshbuf_get_string_direct(m, &output, &olen)) != 0 ||
2409 (r = sshbuf_put(state->input, input, ilen)) != 0 ||
2410 (r = sshbuf_put(state->output, output, olen)) != 0)
2411 return r;
2412
markus@openbsd.org091c3022015-01-19 19:52:16 +00002413 if (sshbuf_len(m))
2414 return SSH_ERR_INVALID_FORMAT;
2415 debug3("%s: done", __func__);
2416 return 0;
2417}
2418
2419/* NEW API */
2420
2421/* put data to the outgoing packet */
2422
2423int
2424sshpkt_put(struct ssh *ssh, const void *v, size_t len)
2425{
2426 return sshbuf_put(ssh->state->outgoing_packet, v, len);
2427}
2428
2429int
2430sshpkt_putb(struct ssh *ssh, const struct sshbuf *b)
2431{
2432 return sshbuf_putb(ssh->state->outgoing_packet, b);
2433}
2434
2435int
2436sshpkt_put_u8(struct ssh *ssh, u_char val)
2437{
2438 return sshbuf_put_u8(ssh->state->outgoing_packet, val);
2439}
2440
2441int
2442sshpkt_put_u32(struct ssh *ssh, u_int32_t val)
2443{
2444 return sshbuf_put_u32(ssh->state->outgoing_packet, val);
2445}
2446
2447int
2448sshpkt_put_u64(struct ssh *ssh, u_int64_t val)
2449{
2450 return sshbuf_put_u64(ssh->state->outgoing_packet, val);
2451}
2452
2453int
2454sshpkt_put_string(struct ssh *ssh, const void *v, size_t len)
2455{
2456 return sshbuf_put_string(ssh->state->outgoing_packet, v, len);
2457}
2458
2459int
2460sshpkt_put_cstring(struct ssh *ssh, const void *v)
2461{
2462 return sshbuf_put_cstring(ssh->state->outgoing_packet, v);
2463}
2464
2465int
2466sshpkt_put_stringb(struct ssh *ssh, const struct sshbuf *v)
2467{
2468 return sshbuf_put_stringb(ssh->state->outgoing_packet, v);
2469}
2470
djm@openbsd.org734226b2015-04-27 01:52:30 +00002471#ifdef WITH_OPENSSL
2472#ifdef OPENSSL_HAS_ECC
markus@openbsd.org091c3022015-01-19 19:52:16 +00002473int
2474sshpkt_put_ec(struct ssh *ssh, const EC_POINT *v, const EC_GROUP *g)
2475{
2476 return sshbuf_put_ec(ssh->state->outgoing_packet, v, g);
2477}
djm@openbsd.org734226b2015-04-27 01:52:30 +00002478#endif /* OPENSSL_HAS_ECC */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002479
markus@openbsd.org091c3022015-01-19 19:52:16 +00002480
2481int
2482sshpkt_put_bignum2(struct ssh *ssh, const BIGNUM *v)
2483{
2484 return sshbuf_put_bignum2(ssh->state->outgoing_packet, v);
2485}
Damien Miller773dda22015-01-30 23:10:17 +11002486#endif /* WITH_OPENSSL */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002487
2488/* fetch data from the incoming packet */
2489
2490int
2491sshpkt_get(struct ssh *ssh, void *valp, size_t len)
2492{
2493 return sshbuf_get(ssh->state->incoming_packet, valp, len);
2494}
2495
2496int
2497sshpkt_get_u8(struct ssh *ssh, u_char *valp)
2498{
2499 return sshbuf_get_u8(ssh->state->incoming_packet, valp);
2500}
2501
2502int
2503sshpkt_get_u32(struct ssh *ssh, u_int32_t *valp)
2504{
2505 return sshbuf_get_u32(ssh->state->incoming_packet, valp);
2506}
2507
2508int
2509sshpkt_get_u64(struct ssh *ssh, u_int64_t *valp)
2510{
2511 return sshbuf_get_u64(ssh->state->incoming_packet, valp);
2512}
2513
2514int
2515sshpkt_get_string(struct ssh *ssh, u_char **valp, size_t *lenp)
2516{
2517 return sshbuf_get_string(ssh->state->incoming_packet, valp, lenp);
2518}
2519
2520int
2521sshpkt_get_string_direct(struct ssh *ssh, const u_char **valp, size_t *lenp)
2522{
2523 return sshbuf_get_string_direct(ssh->state->incoming_packet, valp, lenp);
2524}
2525
2526int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002527sshpkt_peek_string_direct(struct ssh *ssh, const u_char **valp, size_t *lenp)
2528{
2529 return sshbuf_peek_string_direct(ssh->state->incoming_packet, valp, lenp);
2530}
2531
2532int
markus@openbsd.org091c3022015-01-19 19:52:16 +00002533sshpkt_get_cstring(struct ssh *ssh, char **valp, size_t *lenp)
2534{
2535 return sshbuf_get_cstring(ssh->state->incoming_packet, valp, lenp);
2536}
2537
djm@openbsd.org734226b2015-04-27 01:52:30 +00002538#ifdef WITH_OPENSSL
2539#ifdef OPENSSL_HAS_ECC
markus@openbsd.org091c3022015-01-19 19:52:16 +00002540int
2541sshpkt_get_ec(struct ssh *ssh, EC_POINT *v, const EC_GROUP *g)
2542{
2543 return sshbuf_get_ec(ssh->state->incoming_packet, v, g);
2544}
djm@openbsd.org734226b2015-04-27 01:52:30 +00002545#endif /* OPENSSL_HAS_ECC */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002546
markus@openbsd.org091c3022015-01-19 19:52:16 +00002547
2548int
2549sshpkt_get_bignum2(struct ssh *ssh, BIGNUM *v)
2550{
2551 return sshbuf_get_bignum2(ssh->state->incoming_packet, v);
2552}
Damien Miller773dda22015-01-30 23:10:17 +11002553#endif /* WITH_OPENSSL */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002554
2555int
2556sshpkt_get_end(struct ssh *ssh)
2557{
2558 if (sshbuf_len(ssh->state->incoming_packet) > 0)
2559 return SSH_ERR_UNEXPECTED_TRAILING_DATA;
2560 return 0;
2561}
2562
2563const u_char *
2564sshpkt_ptr(struct ssh *ssh, size_t *lenp)
2565{
2566 if (lenp != NULL)
2567 *lenp = sshbuf_len(ssh->state->incoming_packet);
2568 return sshbuf_ptr(ssh->state->incoming_packet);
2569}
2570
2571/* start a new packet */
2572
2573int
2574sshpkt_start(struct ssh *ssh, u_char type)
2575{
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002576 u_char buf[6]; /* u32 packet length, u8 pad len, u8 type */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002577
2578 DBG(debug("packet_start[%d]", type));
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002579 memset(buf, 0, sizeof(buf));
2580 buf[sizeof(buf) - 1] = type;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002581 sshbuf_reset(ssh->state->outgoing_packet);
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002582 return sshbuf_put(ssh->state->outgoing_packet, buf, sizeof(buf));
markus@openbsd.org091c3022015-01-19 19:52:16 +00002583}
2584
markus@openbsd.org8d057842016-09-30 09:19:13 +00002585static int
2586ssh_packet_send_mux(struct ssh *ssh)
2587{
2588 struct session_state *state = ssh->state;
2589 u_char type, *cp;
2590 size_t len;
2591 int r;
2592
2593 if (ssh->kex)
2594 return SSH_ERR_INTERNAL_ERROR;
2595 len = sshbuf_len(state->outgoing_packet);
2596 if (len < 6)
2597 return SSH_ERR_INTERNAL_ERROR;
2598 cp = sshbuf_mutable_ptr(state->outgoing_packet);
2599 type = cp[5];
2600 if (ssh_packet_log_type(type))
2601 debug3("%s: type %u", __func__, type);
2602 /* drop everything, but the connection protocol */
2603 if (type >= SSH2_MSG_CONNECTION_MIN &&
2604 type <= SSH2_MSG_CONNECTION_MAX) {
2605 POKE_U32(cp, len - 4);
2606 if ((r = sshbuf_putb(state->output,
2607 state->outgoing_packet)) != 0)
2608 return r;
2609 /* sshbuf_dump(state->output, stderr); */
2610 }
2611 sshbuf_reset(state->outgoing_packet);
2612 return 0;
2613}
2614
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002615/*
2616 * 9.2. Ignored Data Message
2617 *
2618 * byte SSH_MSG_IGNORE
2619 * string data
2620 *
2621 * All implementations MUST understand (and ignore) this message at any
2622 * time (after receiving the protocol version). No implementation is
2623 * required to send them. This message can be used as an additional
2624 * protection measure against advanced traffic analysis techniques.
2625 */
2626int
2627sshpkt_msg_ignore(struct ssh *ssh, u_int nbytes)
2628{
2629 u_int32_t rnd = 0;
2630 int r;
2631 u_int i;
2632
2633 if ((r = sshpkt_start(ssh, SSH2_MSG_IGNORE)) != 0 ||
2634 (r = sshpkt_put_u32(ssh, nbytes)) != 0)
2635 return r;
2636 for (i = 0; i < nbytes; i++) {
2637 if (i % 4 == 0)
2638 rnd = arc4random();
2639 if ((r = sshpkt_put_u8(ssh, (u_char)rnd & 0xff)) != 0)
2640 return r;
2641 rnd >>= 8;
2642 }
2643 return 0;
2644}
2645
markus@openbsd.org091c3022015-01-19 19:52:16 +00002646/* send it */
2647
2648int
2649sshpkt_send(struct ssh *ssh)
2650{
markus@openbsd.org8d057842016-09-30 09:19:13 +00002651 if (ssh->state && ssh->state->mux)
2652 return ssh_packet_send_mux(ssh);
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002653 return ssh_packet_send2(ssh);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002654}
2655
2656int
2657sshpkt_disconnect(struct ssh *ssh, const char *fmt,...)
2658{
2659 char buf[1024];
2660 va_list args;
2661 int r;
2662
2663 va_start(args, fmt);
2664 vsnprintf(buf, sizeof(buf), fmt, args);
2665 va_end(args);
2666
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002667 if ((r = sshpkt_start(ssh, SSH2_MSG_DISCONNECT)) != 0 ||
2668 (r = sshpkt_put_u32(ssh, SSH2_DISCONNECT_PROTOCOL_ERROR)) != 0 ||
2669 (r = sshpkt_put_cstring(ssh, buf)) != 0 ||
2670 (r = sshpkt_put_cstring(ssh, "")) != 0 ||
2671 (r = sshpkt_send(ssh)) != 0)
2672 return r;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002673 return 0;
2674}
2675
2676/* roundup current message to pad bytes */
2677int
2678sshpkt_add_padding(struct ssh *ssh, u_char pad)
2679{
2680 ssh->state->extra_pad = pad;
2681 return 0;
Damien Millerc31a0cd2014-05-15 14:37:39 +10002682}