blob: ff69b66017635b5fe9d51ee702dfb5075f0ea35a [file] [log] [blame]
djm@openbsd.org51676ec2017-07-23 23:37:02 +00001/* $OpenBSD: packet.c,v 1.263 2017/07/23 23:37:02 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
markus@openbsd.org091c3022015-01-19 19:52:16 +000064#include <zlib.h>
65
66#include "buffer.h" /* typedefs XXX */
67#include "key.h" /* typedefs XXX */
68
Damien Millerd4a8b7e1999-10-27 13:42:43 +100069#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100070#include "crc32.h"
Damien Miller33b13562000-04-04 14:38:59 +100071#include "compat.h"
72#include "ssh2.h"
Damien Miller874d77b2000-10-14 16:23:11 +110073#include "cipher.h"
markus@openbsd.org091c3022015-01-19 19:52:16 +000074#include "sshkey.h"
Damien Miller33b13562000-04-04 14:38:59 +100075#include "kex.h"
markus@openbsd.org128343b2015-01-13 19:31:40 +000076#include "digest.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000077#include "mac.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000078#include "log.h"
79#include "canohost.h"
Damien Miller4d007762002-02-05 11:52:54 +110080#include "misc.h"
Damien Miller7acefbb2014-07-18 14:11:24 +100081#include "channels.h"
Ben Lindstrom402c6cc2002-06-21 00:43:42 +000082#include "ssh.h"
markus@openbsd.org091c3022015-01-19 19:52:16 +000083#include "packet.h"
markus@openbsd.org091c3022015-01-19 19:52:16 +000084#include "ssherr.h"
85#include "sshbuf.h"
Damien Miller33b13562000-04-04 14:38:59 +100086
87#ifdef PACKET_DEBUG
88#define DBG(x) x
89#else
90#define DBG(x)
91#endif
92
Damien Miller13ae44c2009-01-28 16:38:41 +110093#define PACKET_MAX_SIZE (256 * 1024)
94
Darren Tuckerf7288d72009-06-21 18:12:20 +100095struct packet_state {
Damien Millera5539d22003-04-09 20:50:06 +100096 u_int32_t seqnr;
97 u_int32_t packets;
98 u_int64_t blocks;
Damien Millerb61f3fc2008-07-11 17:36:48 +100099 u_int64_t bytes;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000100};
Damien Miller13ae44c2009-01-28 16:38:41 +1100101
Damien Millera5539d22003-04-09 20:50:06 +1000102struct packet {
103 TAILQ_ENTRY(packet) next;
104 u_char type;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000105 struct sshbuf *payload;
Damien Millera5539d22003-04-09 20:50:06 +1000106};
Darren Tuckerf7288d72009-06-21 18:12:20 +1000107
108struct session_state {
109 /*
110 * This variable contains the file descriptors used for
111 * communicating with the other side. connection_in is used for
112 * reading; connection_out for writing. These can be the same
113 * descriptor, in which case it is assumed to be a socket.
114 */
115 int connection_in;
116 int connection_out;
117
118 /* Protocol flags for the remote side. */
119 u_int remote_protocol_flags;
120
121 /* Encryption context for receiving data. Only used for decryption. */
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000122 struct sshcipher_ctx *receive_context;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000123
124 /* Encryption context for sending data. Only used for encryption. */
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000125 struct sshcipher_ctx *send_context;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000126
127 /* Buffer for raw input data from the socket. */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000128 struct sshbuf *input;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000129
130 /* Buffer for raw output data going to the socket. */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000131 struct sshbuf *output;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000132
133 /* Buffer for the partial outgoing packet being constructed. */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000134 struct sshbuf *outgoing_packet;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000135
136 /* Buffer for the incoming packet currently being processed. */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000137 struct sshbuf *incoming_packet;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000138
139 /* Scratch buffer for packet compression/decompression. */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000140 struct sshbuf *compression_buffer;
141
142 /* Incoming/outgoing compression dictionaries */
143 z_stream compression_in_stream;
144 z_stream compression_out_stream;
145 int compression_in_started;
146 int compression_out_started;
147 int compression_in_failures;
148 int compression_out_failures;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000149
150 /*
151 * Flag indicating whether packet compression/decompression is
152 * enabled.
153 */
154 int packet_compression;
155
156 /* default maximum packet size */
157 u_int max_packet_size;
158
159 /* Flag indicating whether this module has been initialized. */
160 int initialized;
161
162 /* Set to true if the connection is interactive. */
163 int interactive_mode;
164
165 /* Set to true if we are the server side. */
166 int server_side;
167
168 /* Set to true if we are authenticated. */
169 int after_authentication;
170
171 int keep_alive_timeouts;
172
173 /* The maximum time that we will wait to send or receive a packet */
174 int packet_timeout_ms;
175
176 /* Session key information for Encryption and MAC */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000177 struct newkeys *newkeys[MODE_MAX];
Darren Tuckerf7288d72009-06-21 18:12:20 +1000178 struct packet_state p_read, p_send;
179
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000180 /* Volume-based rekeying */
dtucker@openbsd.org921ff002016-01-29 02:54:45 +0000181 u_int64_t max_blocks_in, max_blocks_out, rekey_limit;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000182
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000183 /* Time-based rekeying */
markus@openbsd.org02db4682015-02-13 18:57:00 +0000184 u_int32_t rekey_interval; /* how often in seconds */
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000185 time_t rekey_time; /* time of last rekeying */
186
Darren Tuckerf7288d72009-06-21 18:12:20 +1000187 /* roundup current message to extra_pad bytes */
188 u_char extra_pad;
189
190 /* XXX discard incoming data after MAC error */
191 u_int packet_discard;
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +0000192 size_t packet_discard_mac_already;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000193 struct sshmac *packet_discard_mac;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000194
195 /* Used in packet_read_poll2() */
196 u_int packlen;
197
Darren Tucker7b935c72009-06-21 18:59:36 +1000198 /* Used in packet_send2 */
199 int rekeying;
200
markus@openbsd.org8d057842016-09-30 09:19:13 +0000201 /* Used in ssh_packet_send_mux() */
202 int mux;
203
Darren Tucker7b935c72009-06-21 18:59:36 +1000204 /* Used in packet_set_interactive */
205 int set_interactive_called;
206
207 /* Used in packet_set_maxsize */
208 int set_maxsize_called;
209
markus@openbsd.org091c3022015-01-19 19:52:16 +0000210 /* One-off warning about weak ciphers */
211 int cipher_warning_done;
212
djm@openbsd.org39af7b42016-10-11 21:47:45 +0000213 /* Hook for fuzzing inbound packets */
214 ssh_packet_hook_fn *hook_in;
215 void *hook_in_ctx;
216
Darren Tuckerf7288d72009-06-21 18:12:20 +1000217 TAILQ_HEAD(, packet) outgoing;
218};
219
markus@openbsd.org091c3022015-01-19 19:52:16 +0000220struct ssh *
221ssh_alloc_session_state(void)
Darren Tuckerf7288d72009-06-21 18:12:20 +1000222{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000223 struct ssh *ssh = NULL;
224 struct session_state *state = NULL;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000225
markus@openbsd.org091c3022015-01-19 19:52:16 +0000226 if ((ssh = calloc(1, sizeof(*ssh))) == NULL ||
227 (state = calloc(1, sizeof(*state))) == NULL ||
228 (state->input = sshbuf_new()) == NULL ||
229 (state->output = sshbuf_new()) == NULL ||
230 (state->outgoing_packet = sshbuf_new()) == NULL ||
231 (state->incoming_packet = sshbuf_new()) == NULL)
232 goto fail;
233 TAILQ_INIT(&state->outgoing);
markus@openbsd.orgf582f0e2015-01-19 20:30:23 +0000234 TAILQ_INIT(&ssh->private_keys);
235 TAILQ_INIT(&ssh->public_keys);
markus@openbsd.org091c3022015-01-19 19:52:16 +0000236 state->connection_in = -1;
237 state->connection_out = -1;
238 state->max_packet_size = 32768;
239 state->packet_timeout_ms = -1;
240 state->p_send.packets = state->p_read.packets = 0;
241 state->initialized = 1;
242 /*
243 * ssh_packet_send2() needs to queue packets until
244 * we've done the initial key exchange.
245 */
246 state->rekeying = 1;
247 ssh->state = state;
248 return ssh;
249 fail:
250 if (state) {
251 sshbuf_free(state->input);
252 sshbuf_free(state->output);
253 sshbuf_free(state->incoming_packet);
254 sshbuf_free(state->outgoing_packet);
255 free(state);
256 }
257 free(ssh);
258 return NULL;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000259}
Damien Millera5539d22003-04-09 20:50:06 +1000260
djm@openbsd.org39af7b42016-10-11 21:47:45 +0000261void
262ssh_packet_set_input_hook(struct ssh *ssh, ssh_packet_hook_fn *hook, void *ctx)
263{
264 ssh->state->hook_in = hook;
265 ssh->state->hook_in_ctx = ctx;
266}
267
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000268/* Returns nonzero if rekeying is in progress */
269int
270ssh_packet_is_rekeying(struct ssh *ssh)
271{
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000272 return ssh->state->rekeying ||
273 (ssh->kex != NULL && ssh->kex->done == 0);
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000274}
275
Damien Miller5428f641999-11-25 11:54:57 +1100276/*
naddy@openbsd.org768405f2017-05-03 21:08:09 +0000277 * Sets the descriptors used for communication.
Damien Miller5428f641999-11-25 11:54:57 +1100278 */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000279struct ssh *
280ssh_packet_set_connection(struct ssh *ssh, int fd_in, int fd_out)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000281{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000282 struct session_state *state;
283 const struct sshcipher *none = cipher_by_name("none");
Damien Miller86687062014-07-02 15:28:02 +1000284 int r;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000285
djm@openbsd.org4509b5d2015-01-30 01:13:33 +0000286 if (none == NULL) {
287 error("%s: cannot load cipher 'none'", __func__);
288 return NULL;
289 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000290 if (ssh == NULL)
291 ssh = ssh_alloc_session_state();
djm@openbsd.org4509b5d2015-01-30 01:13:33 +0000292 if (ssh == NULL) {
293 error("%s: cound not allocate state", __func__);
294 return NULL;
295 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000296 state = ssh->state;
297 state->connection_in = fd_in;
298 state->connection_out = fd_out;
299 if ((r = cipher_init(&state->send_context, none,
Damien Miller86687062014-07-02 15:28:02 +1000300 (const u_char *)"", 0, NULL, 0, CIPHER_ENCRYPT)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +0000301 (r = cipher_init(&state->receive_context, none,
djm@openbsd.org4509b5d2015-01-30 01:13:33 +0000302 (const u_char *)"", 0, NULL, 0, CIPHER_DECRYPT)) != 0) {
303 error("%s: cipher_init failed: %s", __func__, ssh_err(r));
djm@openbsd.org95767262016-03-07 19:02:43 +0000304 free(ssh); /* XXX need ssh_free_session_state? */
djm@openbsd.org4509b5d2015-01-30 01:13:33 +0000305 return NULL;
306 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000307 state->newkeys[MODE_IN] = state->newkeys[MODE_OUT] = NULL;
djm@openbsd.orgd4c02952015-02-11 01:20:38 +0000308 /*
309 * Cache the IP address of the remote connection for use in error
310 * messages that might be generated after the connection has closed.
311 */
312 (void)ssh_remote_ipaddr(ssh);
markus@openbsd.org091c3022015-01-19 19:52:16 +0000313 return ssh;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000314}
315
Darren Tucker3fc464e2008-06-13 06:42:45 +1000316void
markus@openbsd.org091c3022015-01-19 19:52:16 +0000317ssh_packet_set_timeout(struct ssh *ssh, int timeout, int count)
Darren Tucker3fc464e2008-06-13 06:42:45 +1000318{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000319 struct session_state *state = ssh->state;
320
Damien Miller8ed4de82011-12-19 10:52:50 +1100321 if (timeout <= 0 || count <= 0) {
markus@openbsd.org091c3022015-01-19 19:52:16 +0000322 state->packet_timeout_ms = -1;
Darren Tucker3fc464e2008-06-13 06:42:45 +1000323 return;
324 }
325 if ((INT_MAX / 1000) / count < timeout)
markus@openbsd.org091c3022015-01-19 19:52:16 +0000326 state->packet_timeout_ms = INT_MAX;
Darren Tucker3fc464e2008-06-13 06:42:45 +1000327 else
markus@openbsd.org091c3022015-01-19 19:52:16 +0000328 state->packet_timeout_ms = timeout * count * 1000;
Darren Tucker3fc464e2008-06-13 06:42:45 +1000329}
330
markus@openbsd.org8d057842016-09-30 09:19:13 +0000331void
332ssh_packet_set_mux(struct ssh *ssh)
333{
334 ssh->state->mux = 1;
335 ssh->state->rekeying = 0;
336}
337
338int
339ssh_packet_get_mux(struct ssh *ssh)
340{
341 return ssh->state->mux;
342}
343
markus@openbsd.org091c3022015-01-19 19:52:16 +0000344int
djm@openbsd.org07edd7e2017-02-03 23:03:33 +0000345ssh_packet_set_log_preamble(struct ssh *ssh, const char *fmt, ...)
346{
347 va_list args;
348 int r;
349
350 free(ssh->log_preamble);
351 if (fmt == NULL)
352 ssh->log_preamble = NULL;
353 else {
354 va_start(args, fmt);
355 r = vasprintf(&ssh->log_preamble, fmt, args);
356 va_end(args);
357 if (r < 0 || ssh->log_preamble == NULL)
358 return SSH_ERR_ALLOC_FAIL;
359 }
360 return 0;
361}
362
363int
markus@openbsd.org091c3022015-01-19 19:52:16 +0000364ssh_packet_stop_discard(struct ssh *ssh)
Damien Miller13ae44c2009-01-28 16:38:41 +1100365{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000366 struct session_state *state = ssh->state;
367 int r;
368
369 if (state->packet_discard_mac) {
Damien Miller13ae44c2009-01-28 16:38:41 +1100370 char buf[1024];
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +0000371 size_t dlen = PACKET_MAX_SIZE;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000372
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +0000373 if (dlen > state->packet_discard_mac_already)
374 dlen -= state->packet_discard_mac_already;
Damien Miller13ae44c2009-01-28 16:38:41 +1100375 memset(buf, 'a', sizeof(buf));
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +0000376 while (sshbuf_len(state->incoming_packet) < dlen)
markus@openbsd.org091c3022015-01-19 19:52:16 +0000377 if ((r = sshbuf_put(state->incoming_packet, buf,
378 sizeof(buf))) != 0)
379 return r;
380 (void) mac_compute(state->packet_discard_mac,
381 state->p_read.seqnr,
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +0000382 sshbuf_ptr(state->incoming_packet), dlen,
markus@openbsd.org091c3022015-01-19 19:52:16 +0000383 NULL, 0);
Damien Miller13ae44c2009-01-28 16:38:41 +1100384 }
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +0000385 logit("Finished discarding for %.200s port %d",
386 ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
markus@openbsd.org091c3022015-01-19 19:52:16 +0000387 return SSH_ERR_MAC_INVALID;
Damien Miller13ae44c2009-01-28 16:38:41 +1100388}
389
markus@openbsd.org091c3022015-01-19 19:52:16 +0000390static int
391ssh_packet_start_discard(struct ssh *ssh, struct sshenc *enc,
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +0000392 struct sshmac *mac, size_t mac_already, u_int discard)
Damien Miller13ae44c2009-01-28 16:38:41 +1100393{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000394 struct session_state *state = ssh->state;
395 int r;
396
397 if (enc == NULL || !cipher_is_cbc(enc->cipher) || (mac && mac->etm)) {
398 if ((r = sshpkt_disconnect(ssh, "Packet corrupt")) != 0)
399 return r;
400 return SSH_ERR_MAC_INVALID;
401 }
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +0000402 /*
403 * Record number of bytes over which the mac has already
404 * been computed in order to minimize timing attacks.
405 */
406 if (mac && mac->enabled) {
markus@openbsd.org091c3022015-01-19 19:52:16 +0000407 state->packet_discard_mac = mac;
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +0000408 state->packet_discard_mac_already = mac_already;
409 }
410 if (sshbuf_len(state->input) >= discard)
411 return ssh_packet_stop_discard(ssh);
markus@openbsd.org091c3022015-01-19 19:52:16 +0000412 state->packet_discard = discard - sshbuf_len(state->input);
413 return 0;
Damien Miller13ae44c2009-01-28 16:38:41 +1100414}
415
Damien Miller34132e52000-01-14 15:45:46 +1100416/* Returns 1 if remote host is connected via socket, 0 if not. */
417
418int
markus@openbsd.org091c3022015-01-19 19:52:16 +0000419ssh_packet_connection_is_on_socket(struct ssh *ssh)
Damien Miller34132e52000-01-14 15:45:46 +1100420{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000421 struct session_state *state = ssh->state;
Damien Miller34132e52000-01-14 15:45:46 +1100422 struct sockaddr_storage from, to;
423 socklen_t fromlen, tolen;
424
djm@openbsd.org95767262016-03-07 19:02:43 +0000425 if (state->connection_in == -1 || state->connection_out == -1)
426 return 0;
427
Damien Miller34132e52000-01-14 15:45:46 +1100428 /* filedescriptors in and out are the same, so it's a socket */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000429 if (state->connection_in == state->connection_out)
Damien Miller34132e52000-01-14 15:45:46 +1100430 return 1;
431 fromlen = sizeof(from);
432 memset(&from, 0, sizeof(from));
markus@openbsd.org091c3022015-01-19 19:52:16 +0000433 if (getpeername(state->connection_in, (struct sockaddr *)&from,
Darren Tuckerf7288d72009-06-21 18:12:20 +1000434 &fromlen) < 0)
Damien Miller34132e52000-01-14 15:45:46 +1100435 return 0;
436 tolen = sizeof(to);
437 memset(&to, 0, sizeof(to));
markus@openbsd.org091c3022015-01-19 19:52:16 +0000438 if (getpeername(state->connection_out, (struct sockaddr *)&to,
Darren Tuckerf7288d72009-06-21 18:12:20 +1000439 &tolen) < 0)
Damien Miller34132e52000-01-14 15:45:46 +1100440 return 0;
441 if (fromlen != tolen || memcmp(&from, &to, fromlen) != 0)
442 return 0;
443 if (from.ss_family != AF_INET && from.ss_family != AF_INET6)
444 return 0;
445 return 1;
446}
447
Ben Lindstromf6027d32002-03-22 01:42:04 +0000448void
markus@openbsd.org091c3022015-01-19 19:52:16 +0000449ssh_packet_get_bytes(struct ssh *ssh, u_int64_t *ibytes, u_int64_t *obytes)
Ben Lindstromf6027d32002-03-22 01:42:04 +0000450{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000451 if (ibytes)
452 *ibytes = ssh->state->p_read.bytes;
453 if (obytes)
454 *obytes = ssh->state->p_send.bytes;
Ben Lindstromf6027d32002-03-22 01:42:04 +0000455}
456
457int
markus@openbsd.org091c3022015-01-19 19:52:16 +0000458ssh_packet_connection_af(struct ssh *ssh)
Damien Miller34132e52000-01-14 15:45:46 +1100459{
460 struct sockaddr_storage to;
Damien Miller6fe375d2000-01-23 09:38:00 +1100461 socklen_t tolen = sizeof(to);
Damien Miller34132e52000-01-14 15:45:46 +1100462
463 memset(&to, 0, sizeof(to));
markus@openbsd.org091c3022015-01-19 19:52:16 +0000464 if (getsockname(ssh->state->connection_out, (struct sockaddr *)&to,
Darren Tuckerf7288d72009-06-21 18:12:20 +1000465 &tolen) < 0)
Damien Miller34132e52000-01-14 15:45:46 +1100466 return 0;
Damien Milleraa100c52002-04-26 16:54:34 +1000467#ifdef IPV4_IN_IPV6
Damien Millera8e06ce2003-11-21 23:48:55 +1100468 if (to.ss_family == AF_INET6 &&
Damien Milleraa100c52002-04-26 16:54:34 +1000469 IN6_IS_ADDR_V4MAPPED(&((struct sockaddr_in6 *)&to)->sin6_addr))
Damien Millerd2ac5d72011-05-15 08:43:13 +1000470 return AF_INET;
Damien Milleraa100c52002-04-26 16:54:34 +1000471#endif
Damien Millerd2ac5d72011-05-15 08:43:13 +1000472 return to.ss_family;
Damien Miller34132e52000-01-14 15:45:46 +1100473}
474
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000475/* Sets the connection into non-blocking mode. */
476
477void
markus@openbsd.org091c3022015-01-19 19:52:16 +0000478ssh_packet_set_nonblocking(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000479{
Damien Miller95def091999-11-25 00:26:21 +1100480 /* Set the socket into non-blocking mode. */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000481 set_nonblock(ssh->state->connection_in);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000482
markus@openbsd.org091c3022015-01-19 19:52:16 +0000483 if (ssh->state->connection_out != ssh->state->connection_in)
484 set_nonblock(ssh->state->connection_out);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000485}
486
487/* Returns the socket used for reading. */
488
489int
markus@openbsd.org091c3022015-01-19 19:52:16 +0000490ssh_packet_get_connection_in(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000491{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000492 return ssh->state->connection_in;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000493}
494
495/* Returns the descriptor used for writing. */
496
497int
markus@openbsd.org091c3022015-01-19 19:52:16 +0000498ssh_packet_get_connection_out(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000499{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000500 return ssh->state->connection_out;
501}
502
503/*
504 * Returns the IP-address of the remote host as a string. The returned
505 * string must not be freed.
506 */
507
508const char *
509ssh_remote_ipaddr(struct ssh *ssh)
510{
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +0000511 const int sock = ssh->state->connection_in;
512
markus@openbsd.org091c3022015-01-19 19:52:16 +0000513 /* Check whether we have cached the ipaddr. */
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +0000514 if (ssh->remote_ipaddr == NULL) {
515 if (ssh_packet_connection_is_on_socket(ssh)) {
516 ssh->remote_ipaddr = get_peer_ipaddr(sock);
djm@openbsd.org95767262016-03-07 19:02:43 +0000517 ssh->remote_port = get_peer_port(sock);
518 ssh->local_ipaddr = get_local_ipaddr(sock);
519 ssh->local_port = get_local_port(sock);
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +0000520 } else {
521 ssh->remote_ipaddr = strdup("UNKNOWN");
djm@openbsd.org95767262016-03-07 19:02:43 +0000522 ssh->remote_port = 65535;
523 ssh->local_ipaddr = strdup("UNKNOWN");
524 ssh->local_port = 65535;
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +0000525 }
526 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000527 return ssh->remote_ipaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000528}
529
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +0000530/* Returns the port number of the remote host. */
531
532int
533ssh_remote_port(struct ssh *ssh)
534{
535 (void)ssh_remote_ipaddr(ssh); /* Will lookup and cache. */
536 return ssh->remote_port;
537}
538
djm@openbsd.org95767262016-03-07 19:02:43 +0000539/*
540 * Returns the IP-address of the local host as a string. The returned
541 * string must not be freed.
542 */
543
544const char *
545ssh_local_ipaddr(struct ssh *ssh)
546{
547 (void)ssh_remote_ipaddr(ssh); /* Will lookup and cache. */
548 return ssh->local_ipaddr;
549}
550
551/* Returns the port number of the local host. */
552
553int
554ssh_local_port(struct ssh *ssh)
555{
556 (void)ssh_remote_ipaddr(ssh); /* Will lookup and cache. */
557 return ssh->local_port;
558}
559
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000560/* Closes the connection and clears and frees internal data structures. */
561
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000562static void
563ssh_packet_close_internal(struct ssh *ssh, int do_close)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000564{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000565 struct session_state *state = ssh->state;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000566 u_int mode;
567
568 if (!state->initialized)
Damien Miller95def091999-11-25 00:26:21 +1100569 return;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000570 state->initialized = 0;
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000571 if (do_close) {
572 if (state->connection_in == state->connection_out) {
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000573 close(state->connection_out);
574 } else {
575 close(state->connection_in);
576 close(state->connection_out);
577 }
Damien Miller95def091999-11-25 00:26:21 +1100578 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000579 sshbuf_free(state->input);
580 sshbuf_free(state->output);
581 sshbuf_free(state->outgoing_packet);
582 sshbuf_free(state->incoming_packet);
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000583 for (mode = 0; mode < MODE_MAX; mode++) {
584 kex_free_newkeys(state->newkeys[mode]); /* current keys */
585 state->newkeys[mode] = NULL;
586 ssh_clear_newkeys(ssh, mode); /* next keys */
587 }
588 /* comression state is in shared mem, so we can only release it once */
589 if (do_close && state->compression_buffer) {
markus@openbsd.org091c3022015-01-19 19:52:16 +0000590 sshbuf_free(state->compression_buffer);
591 if (state->compression_out_started) {
592 z_streamp stream = &state->compression_out_stream;
593 debug("compress outgoing: "
594 "raw data %llu, compressed %llu, factor %.2f",
595 (unsigned long long)stream->total_in,
596 (unsigned long long)stream->total_out,
597 stream->total_in == 0 ? 0.0 :
598 (double) stream->total_out / stream->total_in);
599 if (state->compression_out_failures == 0)
600 deflateEnd(stream);
601 }
602 if (state->compression_in_started) {
dtucker@openbsd.org550c0532017-06-06 09:12:17 +0000603 z_streamp stream = &state->compression_in_stream;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000604 debug("compress incoming: "
605 "raw data %llu, compressed %llu, factor %.2f",
606 (unsigned long long)stream->total_out,
607 (unsigned long long)stream->total_in,
608 stream->total_out == 0 ? 0.0 :
609 (double) stream->total_in / stream->total_out);
610 if (state->compression_in_failures == 0)
611 inflateEnd(stream);
612 }
Damien Miller95def091999-11-25 00:26:21 +1100613 }
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000614 cipher_free(state->send_context);
615 cipher_free(state->receive_context);
616 state->send_context = state->receive_context = NULL;
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000617 if (do_close) {
618 free(ssh->remote_ipaddr);
619 ssh->remote_ipaddr = NULL;
620 free(ssh->state);
621 ssh->state = NULL;
622 }
623}
624
625void
626ssh_packet_close(struct ssh *ssh)
627{
628 ssh_packet_close_internal(ssh, 1);
629}
630
631void
632ssh_packet_clear_keys(struct ssh *ssh)
633{
634 ssh_packet_close_internal(ssh, 0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000635}
636
637/* Sets remote side protocol flags. */
638
639void
markus@openbsd.org091c3022015-01-19 19:52:16 +0000640ssh_packet_set_protocol_flags(struct ssh *ssh, u_int protocol_flags)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000641{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000642 ssh->state->remote_protocol_flags = protocol_flags;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000643}
644
645/* Returns the remote protocol flags set earlier by the above function. */
646
Ben Lindstrom46c16222000-12-22 01:43:59 +0000647u_int
markus@openbsd.org091c3022015-01-19 19:52:16 +0000648ssh_packet_get_protocol_flags(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000649{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000650 return ssh->state->remote_protocol_flags;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000651}
652
Damien Miller5428f641999-11-25 11:54:57 +1100653/*
654 * Starts packet compression from the next packet on in both directions.
655 * Level is compression level 1 (fastest) - 9 (slow, best) as in gzip.
656 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000657
markus@openbsd.org091c3022015-01-19 19:52:16 +0000658static int
659ssh_packet_init_compression(struct ssh *ssh)
Ben Lindstromfb50cdf2001-04-05 23:20:46 +0000660{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000661 if (!ssh->state->compression_buffer &&
662 ((ssh->state->compression_buffer = sshbuf_new()) == NULL))
663 return SSH_ERR_ALLOC_FAIL;
664 return 0;
665}
666
667static int
668start_compression_out(struct ssh *ssh, int level)
669{
670 if (level < 1 || level > 9)
671 return SSH_ERR_INVALID_ARGUMENT;
672 debug("Enabling compression at level %d.", level);
673 if (ssh->state->compression_out_started == 1)
674 deflateEnd(&ssh->state->compression_out_stream);
675 switch (deflateInit(&ssh->state->compression_out_stream, level)) {
676 case Z_OK:
677 ssh->state->compression_out_started = 1;
678 break;
679 case Z_MEM_ERROR:
680 return SSH_ERR_ALLOC_FAIL;
681 default:
682 return SSH_ERR_INTERNAL_ERROR;
683 }
684 return 0;
685}
686
687static int
688start_compression_in(struct ssh *ssh)
689{
690 if (ssh->state->compression_in_started == 1)
691 inflateEnd(&ssh->state->compression_in_stream);
692 switch (inflateInit(&ssh->state->compression_in_stream)) {
693 case Z_OK:
694 ssh->state->compression_in_started = 1;
695 break;
696 case Z_MEM_ERROR:
697 return SSH_ERR_ALLOC_FAIL;
698 default:
699 return SSH_ERR_INTERNAL_ERROR;
700 }
701 return 0;
702}
703
704int
705ssh_packet_start_compression(struct ssh *ssh, int level)
706{
707 int r;
708
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000709 if (ssh->state->packet_compression)
markus@openbsd.org091c3022015-01-19 19:52:16 +0000710 return SSH_ERR_INTERNAL_ERROR;
711 ssh->state->packet_compression = 1;
712 if ((r = ssh_packet_init_compression(ssh)) != 0 ||
713 (r = start_compression_in(ssh)) != 0 ||
714 (r = start_compression_out(ssh, level)) != 0)
715 return r;
716 return 0;
717}
718
719/* XXX remove need for separate compression buffer */
720static int
721compress_buffer(struct ssh *ssh, struct sshbuf *in, struct sshbuf *out)
722{
723 u_char buf[4096];
724 int r, status;
725
726 if (ssh->state->compression_out_started != 1)
727 return SSH_ERR_INTERNAL_ERROR;
728
729 /* This case is not handled below. */
730 if (sshbuf_len(in) == 0)
731 return 0;
732
733 /* Input is the contents of the input buffer. */
734 if ((ssh->state->compression_out_stream.next_in =
735 sshbuf_mutable_ptr(in)) == NULL)
736 return SSH_ERR_INTERNAL_ERROR;
737 ssh->state->compression_out_stream.avail_in = sshbuf_len(in);
738
739 /* Loop compressing until deflate() returns with avail_out != 0. */
740 do {
741 /* Set up fixed-size output buffer. */
742 ssh->state->compression_out_stream.next_out = buf;
743 ssh->state->compression_out_stream.avail_out = sizeof(buf);
744
745 /* Compress as much data into the buffer as possible. */
746 status = deflate(&ssh->state->compression_out_stream,
747 Z_PARTIAL_FLUSH);
748 switch (status) {
749 case Z_MEM_ERROR:
750 return SSH_ERR_ALLOC_FAIL;
751 case Z_OK:
752 /* Append compressed data to output_buffer. */
753 if ((r = sshbuf_put(out, buf, sizeof(buf) -
754 ssh->state->compression_out_stream.avail_out)) != 0)
755 return r;
756 break;
757 case Z_STREAM_ERROR:
758 default:
759 ssh->state->compression_out_failures++;
760 return SSH_ERR_INVALID_FORMAT;
761 }
762 } while (ssh->state->compression_out_stream.avail_out == 0);
763 return 0;
764}
765
766static int
767uncompress_buffer(struct ssh *ssh, struct sshbuf *in, struct sshbuf *out)
768{
769 u_char buf[4096];
770 int r, status;
771
772 if (ssh->state->compression_in_started != 1)
773 return SSH_ERR_INTERNAL_ERROR;
774
775 if ((ssh->state->compression_in_stream.next_in =
776 sshbuf_mutable_ptr(in)) == NULL)
777 return SSH_ERR_INTERNAL_ERROR;
778 ssh->state->compression_in_stream.avail_in = sshbuf_len(in);
779
780 for (;;) {
781 /* Set up fixed-size output buffer. */
782 ssh->state->compression_in_stream.next_out = buf;
783 ssh->state->compression_in_stream.avail_out = sizeof(buf);
784
785 status = inflate(&ssh->state->compression_in_stream,
786 Z_PARTIAL_FLUSH);
787 switch (status) {
788 case Z_OK:
789 if ((r = sshbuf_put(out, buf, sizeof(buf) -
790 ssh->state->compression_in_stream.avail_out)) != 0)
791 return r;
792 break;
793 case Z_BUF_ERROR:
794 /*
795 * Comments in zlib.h say that we should keep calling
796 * inflate() until we get an error. This appears to
797 * be the error that we get.
798 */
799 return 0;
800 case Z_DATA_ERROR:
801 return SSH_ERR_INVALID_FORMAT;
802 case Z_MEM_ERROR:
803 return SSH_ERR_ALLOC_FAIL;
804 case Z_STREAM_ERROR:
805 default:
806 ssh->state->compression_in_failures++;
807 return SSH_ERR_INTERNAL_ERROR;
808 }
809 }
810 /* NOTREACHED */
811}
812
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000813void
814ssh_clear_newkeys(struct ssh *ssh, int mode)
815{
djm@openbsd.org2d75d742017-06-01 06:16:43 +0000816 if (ssh->kex && ssh->kex->newkeys[mode]) {
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000817 kex_free_newkeys(ssh->kex->newkeys[mode]);
818 ssh->kex->newkeys[mode] = NULL;
819 }
820}
821
markus@openbsd.org091c3022015-01-19 19:52:16 +0000822int
823ssh_set_newkeys(struct ssh *ssh, int mode)
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000824{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000825 struct session_state *state = ssh->state;
826 struct sshenc *enc;
827 struct sshmac *mac;
828 struct sshcomp *comp;
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000829 struct sshcipher_ctx **ccp;
markus@openbsd.org06ce56b2016-09-06 09:22:56 +0000830 struct packet_state *ps;
Damien Millera5539d22003-04-09 20:50:06 +1000831 u_int64_t *max_blocks;
djm@openbsd.org2d75d742017-06-01 06:16:43 +0000832 const char *wmsg;
Damien Miller86687062014-07-02 15:28:02 +1000833 int r, crypt_type;
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000834
Ben Lindstrom064496f2002-12-23 02:04:22 +0000835 debug2("set_newkeys: mode %d", mode);
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000836
Damien Miller963f6b22002-02-19 15:21:23 +1100837 if (mode == MODE_OUT) {
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000838 ccp = &state->send_context;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000839 crypt_type = CIPHER_ENCRYPT;
markus@openbsd.org06ce56b2016-09-06 09:22:56 +0000840 ps = &state->p_send;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000841 max_blocks = &state->max_blocks_out;
Damien Miller963f6b22002-02-19 15:21:23 +1100842 } else {
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000843 ccp = &state->receive_context;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000844 crypt_type = CIPHER_DECRYPT;
markus@openbsd.org06ce56b2016-09-06 09:22:56 +0000845 ps = &state->p_read;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000846 max_blocks = &state->max_blocks_in;
Damien Miller963f6b22002-02-19 15:21:23 +1100847 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000848 if (state->newkeys[mode] != NULL) {
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000849 debug("set_newkeys: rekeying, input %llu bytes %llu blocks, "
850 "output %llu bytes %llu blocks",
851 (unsigned long long)state->p_read.bytes,
852 (unsigned long long)state->p_read.blocks,
853 (unsigned long long)state->p_send.bytes,
854 (unsigned long long)state->p_send.blocks);
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000855 cipher_free(*ccp);
856 *ccp = NULL;
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000857 kex_free_newkeys(state->newkeys[mode]);
858 state->newkeys[mode] = NULL;
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000859 }
markus@openbsd.org06ce56b2016-09-06 09:22:56 +0000860 /* note that both bytes and the seqnr are not reset */
861 ps->packets = ps->blocks = 0;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000862 /* move newkeys from kex to state */
863 if ((state->newkeys[mode] = ssh->kex->newkeys[mode]) == NULL)
864 return SSH_ERR_INTERNAL_ERROR;
865 ssh->kex->newkeys[mode] = NULL;
866 enc = &state->newkeys[mode]->enc;
867 mac = &state->newkeys[mode]->mac;
868 comp = &state->newkeys[mode]->comp;
869 if (cipher_authlen(enc->cipher) == 0) {
870 if ((r = mac_init(mac)) != 0)
871 return r;
872 }
873 mac->enabled = 1;
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000874 DBG(debug("cipher_init_context: %d", mode));
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000875 if ((r = cipher_init(ccp, enc->cipher, enc->key, enc->key_len,
Damien Miller86687062014-07-02 15:28:02 +1000876 enc->iv, enc->iv_len, crypt_type)) != 0)
markus@openbsd.org091c3022015-01-19 19:52:16 +0000877 return r;
878 if (!state->cipher_warning_done &&
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000879 (wmsg = cipher_warning_message(*ccp)) != NULL) {
markus@openbsd.org091c3022015-01-19 19:52:16 +0000880 error("Warning: %s", wmsg);
881 state->cipher_warning_done = 1;
882 }
Ben Lindstromf6027d32002-03-22 01:42:04 +0000883 /* Deleting the keys does not gain extra security */
Damien Millera5103f42014-02-04 11:20:14 +1100884 /* explicit_bzero(enc->iv, enc->block_size);
885 explicit_bzero(enc->key, enc->key_len);
886 explicit_bzero(mac->key, mac->key_len); */
djm@openbsd.orgb7689152016-09-28 21:44:52 +0000887 if ((comp->type == COMP_ZLIB ||
888 (comp->type == COMP_DELAYED &&
889 state->after_authentication)) && comp->enabled == 0) {
markus@openbsd.org091c3022015-01-19 19:52:16 +0000890 if ((r = ssh_packet_init_compression(ssh)) < 0)
891 return r;
892 if (mode == MODE_OUT) {
893 if ((r = start_compression_out(ssh, 6)) != 0)
894 return r;
895 } else {
896 if ((r = start_compression_in(ssh)) != 0)
897 return r;
898 }
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000899 comp->enabled = 1;
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000900 }
Darren Tucker81a0b372003-07-14 17:31:06 +1000901 /*
902 * The 2^(blocksize*2) limit is too expensive for 3DES,
djm@openbsd.orgacaf34f2017-05-07 23:12:57 +0000903 * so enforce a 1GB limit for small blocksizes.
dtucker@openbsd.orgad053162017-06-09 04:40:04 +0000904 * See RFC4344 section 3.2.
Darren Tucker81a0b372003-07-14 17:31:06 +1000905 */
906 if (enc->block_size >= 16)
907 *max_blocks = (u_int64_t)1 << (enc->block_size*2);
908 else
909 *max_blocks = ((u_int64_t)1 << 30) / enc->block_size;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000910 if (state->rekey_limit)
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +0000911 *max_blocks = MINIMUM(*max_blocks,
markus@openbsd.org091c3022015-01-19 19:52:16 +0000912 state->rekey_limit / enc->block_size);
djm@openbsd.org696d1262016-02-04 23:43:48 +0000913 debug("rekey after %llu blocks", (unsigned long long)*max_blocks);
markus@openbsd.org091c3022015-01-19 19:52:16 +0000914 return 0;
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000915}
916
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000917#define MAX_PACKETS (1U<<31)
918static int
919ssh_packet_need_rekeying(struct ssh *ssh, u_int outbound_packet_len)
920{
921 struct session_state *state = ssh->state;
922 u_int32_t out_blocks;
923
924 /* XXX client can't cope with rekeying pre-auth */
925 if (!state->after_authentication)
926 return 0;
927
928 /* Haven't keyed yet or KEX in progress. */
929 if (ssh->kex == NULL || ssh_packet_is_rekeying(ssh))
930 return 0;
931
932 /* Peer can't rekey */
933 if (ssh->compat & SSH_BUG_NOREKEY)
934 return 0;
935
936 /*
937 * Permit one packet in or out per rekey - this allows us to
938 * make progress when rekey limits are very small.
939 */
940 if (state->p_send.packets == 0 && state->p_read.packets == 0)
941 return 0;
942
943 /* Time-based rekeying */
944 if (state->rekey_interval != 0 &&
dtucker@openbsd.orgc998bf02017-02-03 02:56:00 +0000945 (int64_t)state->rekey_time + state->rekey_interval <= monotime())
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000946 return 1;
947
dtucker@openbsd.orgad053162017-06-09 04:40:04 +0000948 /*
949 * Always rekey when MAX_PACKETS sent in either direction
950 * As per RFC4344 section 3.1 we do this after 2^31 packets.
951 */
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000952 if (state->p_send.packets > MAX_PACKETS ||
953 state->p_read.packets > MAX_PACKETS)
954 return 1;
955
956 /* Rekey after (cipher-specific) maxiumum blocks */
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +0000957 out_blocks = ROUNDUP(outbound_packet_len,
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000958 state->newkeys[MODE_OUT]->enc.block_size);
959 return (state->max_blocks_out &&
960 (state->p_send.blocks + out_blocks > state->max_blocks_out)) ||
961 (state->max_blocks_in &&
962 (state->p_read.blocks > state->max_blocks_in));
963}
964
Damien Miller5428f641999-11-25 11:54:57 +1100965/*
Damien Miller9786e6e2005-07-26 21:54:56 +1000966 * Delayed compression for SSH2 is enabled after authentication:
Darren Tuckerf676c572006-08-05 18:51:08 +1000967 * This happens on the server side after a SSH2_MSG_USERAUTH_SUCCESS is sent,
Damien Miller9786e6e2005-07-26 21:54:56 +1000968 * and on the client side after a SSH2_MSG_USERAUTH_SUCCESS is received.
969 */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000970static int
971ssh_packet_enable_delayed_compress(struct ssh *ssh)
Damien Miller9786e6e2005-07-26 21:54:56 +1000972{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000973 struct session_state *state = ssh->state;
974 struct sshcomp *comp = NULL;
975 int r, mode;
Damien Miller9786e6e2005-07-26 21:54:56 +1000976
977 /*
978 * Remember that we are past the authentication step, so rekeying
979 * with COMP_DELAYED will turn on compression immediately.
980 */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000981 state->after_authentication = 1;
Damien Miller9786e6e2005-07-26 21:54:56 +1000982 for (mode = 0; mode < MODE_MAX; mode++) {
Darren Tucker4aa665b2006-09-21 13:00:25 +1000983 /* protocol error: USERAUTH_SUCCESS received before NEWKEYS */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000984 if (state->newkeys[mode] == NULL)
Darren Tucker4aa665b2006-09-21 13:00:25 +1000985 continue;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000986 comp = &state->newkeys[mode]->comp;
Damien Miller9786e6e2005-07-26 21:54:56 +1000987 if (comp && !comp->enabled && comp->type == COMP_DELAYED) {
markus@openbsd.org091c3022015-01-19 19:52:16 +0000988 if ((r = ssh_packet_init_compression(ssh)) != 0)
989 return r;
990 if (mode == MODE_OUT) {
991 if ((r = start_compression_out(ssh, 6)) != 0)
992 return r;
993 } else {
994 if ((r = start_compression_in(ssh)) != 0)
995 return r;
996 }
Damien Miller9786e6e2005-07-26 21:54:56 +1000997 comp->enabled = 1;
998 }
999 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001000 return 0;
Damien Miller9786e6e2005-07-26 21:54:56 +10001001}
1002
djm@openbsd.org28136472016-01-29 05:46:01 +00001003/* Used to mute debug logging for noisy packet types */
markus@openbsd.org8d057842016-09-30 09:19:13 +00001004int
djm@openbsd.org28136472016-01-29 05:46:01 +00001005ssh_packet_log_type(u_char type)
1006{
1007 switch (type) {
1008 case SSH2_MSG_CHANNEL_DATA:
1009 case SSH2_MSG_CHANNEL_EXTENDED_DATA:
1010 case SSH2_MSG_CHANNEL_WINDOW_ADJUST:
1011 return 0;
1012 default:
1013 return 1;
1014 }
1015}
1016
Damien Miller9786e6e2005-07-26 21:54:56 +10001017/*
Damien Miller33b13562000-04-04 14:38:59 +10001018 * Finalize packet in SSH2 format (compress, mac, encrypt, enqueue)
1019 */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001020int
1021ssh_packet_send2_wrapped(struct ssh *ssh)
Damien Miller33b13562000-04-04 14:38:59 +10001022{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001023 struct session_state *state = ssh->state;
markus@openbsd.org128343b2015-01-13 19:31:40 +00001024 u_char type, *cp, macbuf[SSH_DIGEST_MAX_LENGTH];
djm@openbsd.orgeb999a42016-07-18 06:08:01 +00001025 u_char tmp, padlen, pad = 0;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001026 u_int authlen = 0, aadlen = 0;
1027 u_int len;
1028 struct sshenc *enc = NULL;
1029 struct sshmac *mac = NULL;
1030 struct sshcomp *comp = NULL;
1031 int r, block_size;
Damien Miller33b13562000-04-04 14:38:59 +10001032
markus@openbsd.org091c3022015-01-19 19:52:16 +00001033 if (state->newkeys[MODE_OUT] != NULL) {
1034 enc = &state->newkeys[MODE_OUT]->enc;
1035 mac = &state->newkeys[MODE_OUT]->mac;
1036 comp = &state->newkeys[MODE_OUT]->comp;
Damien Miller1d75abf2013-01-09 16:12:19 +11001037 /* disable mac for authenticated encryption */
1038 if ((authlen = cipher_authlen(enc->cipher)) != 0)
1039 mac = NULL;
Damien Miller33b13562000-04-04 14:38:59 +10001040 }
Damien Miller963f6b22002-02-19 15:21:23 +11001041 block_size = enc ? enc->block_size : 8;
Damien Miller1d75abf2013-01-09 16:12:19 +11001042 aadlen = (mac && mac->enabled && mac->etm) || authlen ? 4 : 0;
Damien Miller33b13562000-04-04 14:38:59 +10001043
markus@openbsd.org091c3022015-01-19 19:52:16 +00001044 type = (sshbuf_ptr(state->outgoing_packet))[5];
djm@openbsd.org28136472016-01-29 05:46:01 +00001045 if (ssh_packet_log_type(type))
1046 debug3("send packet: type %u", type);
Damien Miller33b13562000-04-04 14:38:59 +10001047#ifdef PACKET_DEBUG
1048 fprintf(stderr, "plain: ");
markus@openbsd.org091c3022015-01-19 19:52:16 +00001049 sshbuf_dump(state->outgoing_packet, stderr);
Damien Miller33b13562000-04-04 14:38:59 +10001050#endif
1051
1052 if (comp && comp->enabled) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001053 len = sshbuf_len(state->outgoing_packet);
Damien Miller33b13562000-04-04 14:38:59 +10001054 /* skip header, compress only payload */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001055 if ((r = sshbuf_consume(state->outgoing_packet, 5)) != 0)
1056 goto out;
1057 sshbuf_reset(state->compression_buffer);
1058 if ((r = compress_buffer(ssh, state->outgoing_packet,
1059 state->compression_buffer)) != 0)
1060 goto out;
1061 sshbuf_reset(state->outgoing_packet);
1062 if ((r = sshbuf_put(state->outgoing_packet,
1063 "\0\0\0\0\0", 5)) != 0 ||
1064 (r = sshbuf_putb(state->outgoing_packet,
1065 state->compression_buffer)) != 0)
1066 goto out;
1067 DBG(debug("compression: raw %d compressed %zd", len,
1068 sshbuf_len(state->outgoing_packet)));
Damien Miller33b13562000-04-04 14:38:59 +10001069 }
1070
1071 /* sizeof (packet_len + pad_len + payload) */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001072 len = sshbuf_len(state->outgoing_packet);
Damien Miller33b13562000-04-04 14:38:59 +10001073
1074 /*
1075 * calc size of padding, alloc space, get random data,
1076 * minimum padding is 4 bytes
1077 */
Damien Milleraf43a7a2012-12-12 10:46:31 +11001078 len -= aadlen; /* packet length is not encrypted for EtM modes */
Damien Miller33b13562000-04-04 14:38:59 +10001079 padlen = block_size - (len % block_size);
1080 if (padlen < 4)
1081 padlen += block_size;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001082 if (state->extra_pad) {
djm@openbsd.orgeb999a42016-07-18 06:08:01 +00001083 tmp = state->extra_pad;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001084 state->extra_pad =
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +00001085 ROUNDUP(state->extra_pad, block_size);
djm@openbsd.orgeb999a42016-07-18 06:08:01 +00001086 /* check if roundup overflowed */
1087 if (state->extra_pad < tmp)
1088 return SSH_ERR_INVALID_ARGUMENT;
1089 tmp = (len + padlen) % state->extra_pad;
1090 /* Check whether pad calculation below will underflow */
1091 if (tmp > state->extra_pad)
1092 return SSH_ERR_INVALID_ARGUMENT;
1093 pad = state->extra_pad - tmp;
Damien Miller2a328432014-04-20 13:24:01 +10001094 DBG(debug3("%s: adding %d (len %d padlen %d extra_pad %d)",
markus@openbsd.org091c3022015-01-19 19:52:16 +00001095 __func__, pad, len, padlen, state->extra_pad));
djm@openbsd.orgeb999a42016-07-18 06:08:01 +00001096 tmp = padlen;
Damien Miller9f643902001-11-12 11:02:52 +11001097 padlen += pad;
djm@openbsd.orgeb999a42016-07-18 06:08:01 +00001098 /* Check whether padlen calculation overflowed */
1099 if (padlen < tmp)
1100 return SSH_ERR_INVALID_ARGUMENT; /* overflow */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001101 state->extra_pad = 0;
Damien Miller9f643902001-11-12 11:02:52 +11001102 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001103 if ((r = sshbuf_reserve(state->outgoing_packet, padlen, &cp)) != 0)
1104 goto out;
djm@openbsd.org4706c1d2016-08-03 05:41:57 +00001105 if (enc && !cipher_ctx_is_plaintext(state->send_context)) {
Damien Millere247cc42000-05-07 12:03:14 +10001106 /* random padding */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001107 arc4random_buf(cp, padlen);
Damien Millere247cc42000-05-07 12:03:14 +10001108 } else {
1109 /* clear padding */
Damien Millera5103f42014-02-04 11:20:14 +11001110 explicit_bzero(cp, padlen);
Damien Miller33b13562000-04-04 14:38:59 +10001111 }
Damien Milleraf43a7a2012-12-12 10:46:31 +11001112 /* sizeof (packet_len + pad_len + payload + padding) */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001113 len = sshbuf_len(state->outgoing_packet);
1114 cp = sshbuf_mutable_ptr(state->outgoing_packet);
1115 if (cp == NULL) {
1116 r = SSH_ERR_INTERNAL_ERROR;
1117 goto out;
1118 }
Damien Milleraf43a7a2012-12-12 10:46:31 +11001119 /* packet_length includes payload, padding and padding length field */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001120 POKE_U32(cp, len - 4);
Ben Lindstrom4a7714a2002-02-26 18:04:38 +00001121 cp[4] = padlen;
Damien Milleraf43a7a2012-12-12 10:46:31 +11001122 DBG(debug("send: len %d (includes padlen %d, aadlen %d)",
1123 len, padlen, aadlen));
Damien Miller33b13562000-04-04 14:38:59 +10001124
1125 /* compute MAC over seqnr and packet(length fields, payload, padding) */
Damien Milleraf43a7a2012-12-12 10:46:31 +11001126 if (mac && mac->enabled && !mac->etm) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001127 if ((r = mac_compute(mac, state->p_send.seqnr,
1128 sshbuf_ptr(state->outgoing_packet), len,
markus@openbsd.org128343b2015-01-13 19:31:40 +00001129 macbuf, sizeof(macbuf))) != 0)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001130 goto out;
1131 DBG(debug("done calc MAC out #%d", state->p_send.seqnr));
Damien Miller33b13562000-04-04 14:38:59 +10001132 }
1133 /* encrypt packet and append to output buffer. */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001134 if ((r = sshbuf_reserve(state->output,
1135 sshbuf_len(state->outgoing_packet) + authlen, &cp)) != 0)
1136 goto out;
djm@openbsd.org4706c1d2016-08-03 05:41:57 +00001137 if ((r = cipher_crypt(state->send_context, state->p_send.seqnr, cp,
markus@openbsd.org091c3022015-01-19 19:52:16 +00001138 sshbuf_ptr(state->outgoing_packet),
1139 len - aadlen, aadlen, authlen)) != 0)
1140 goto out;
Damien Miller33b13562000-04-04 14:38:59 +10001141 /* append unencrypted MAC */
Damien Milleraf43a7a2012-12-12 10:46:31 +11001142 if (mac && mac->enabled) {
1143 if (mac->etm) {
1144 /* EtM: compute mac over aadlen + cipher text */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001145 if ((r = mac_compute(mac, state->p_send.seqnr,
1146 cp, len, macbuf, sizeof(macbuf))) != 0)
1147 goto out;
Damien Milleraf43a7a2012-12-12 10:46:31 +11001148 DBG(debug("done calc MAC(EtM) out #%d",
markus@openbsd.org091c3022015-01-19 19:52:16 +00001149 state->p_send.seqnr));
Damien Milleraf43a7a2012-12-12 10:46:31 +11001150 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001151 if ((r = sshbuf_put(state->output, macbuf, mac->mac_len)) != 0)
1152 goto out;
Damien Milleraf43a7a2012-12-12 10:46:31 +11001153 }
Damien Miller33b13562000-04-04 14:38:59 +10001154#ifdef PACKET_DEBUG
1155 fprintf(stderr, "encrypted: ");
markus@openbsd.org091c3022015-01-19 19:52:16 +00001156 sshbuf_dump(state->output, stderr);
Damien Miller33b13562000-04-04 14:38:59 +10001157#endif
Damien Miller4af51302000-04-16 11:18:38 +10001158 /* increment sequence number for outgoing packets */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001159 if (++state->p_send.seqnr == 0)
Damien Miller996acd22003-04-09 20:59:48 +10001160 logit("outgoing seqnr wraps around");
markus@openbsd.org091c3022015-01-19 19:52:16 +00001161 if (++state->p_send.packets == 0)
1162 if (!(ssh->compat & SSH_BUG_NOREKEY))
1163 return SSH_ERR_NEED_REKEY;
1164 state->p_send.blocks += len / block_size;
1165 state->p_send.bytes += len;
1166 sshbuf_reset(state->outgoing_packet);
Damien Miller33b13562000-04-04 14:38:59 +10001167
Ben Lindstrom2d90e002001-04-04 02:00:54 +00001168 if (type == SSH2_MSG_NEWKEYS)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001169 r = ssh_set_newkeys(ssh, MODE_OUT);
1170 else if (type == SSH2_MSG_USERAUTH_SUCCESS && state->server_side)
1171 r = ssh_packet_enable_delayed_compress(ssh);
1172 else
1173 r = 0;
1174 out:
1175 return r;
Damien Miller33b13562000-04-04 14:38:59 +10001176}
1177
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001178/* returns non-zero if the specified packet type is usec by KEX */
1179static int
1180ssh_packet_type_is_kex(u_char type)
1181{
1182 return
1183 type >= SSH2_MSG_TRANSPORT_MIN &&
1184 type <= SSH2_MSG_TRANSPORT_MAX &&
1185 type != SSH2_MSG_SERVICE_REQUEST &&
1186 type != SSH2_MSG_SERVICE_ACCEPT &&
1187 type != SSH2_MSG_EXT_INFO;
1188}
1189
markus@openbsd.org091c3022015-01-19 19:52:16 +00001190int
1191ssh_packet_send2(struct ssh *ssh)
Damien Millera5539d22003-04-09 20:50:06 +10001192{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001193 struct session_state *state = ssh->state;
Damien Millera5539d22003-04-09 20:50:06 +10001194 struct packet *p;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001195 u_char type;
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001196 int r, need_rekey;
Damien Millera5539d22003-04-09 20:50:06 +10001197
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001198 if (sshbuf_len(state->outgoing_packet) < 6)
1199 return SSH_ERR_INTERNAL_ERROR;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001200 type = sshbuf_ptr(state->outgoing_packet)[5];
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001201 need_rekey = !ssh_packet_type_is_kex(type) &&
1202 ssh_packet_need_rekeying(ssh, sshbuf_len(state->outgoing_packet));
Damien Millera5539d22003-04-09 20:50:06 +10001203
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001204 /*
1205 * During rekeying we can only send key exchange messages.
1206 * Queue everything else.
1207 */
1208 if ((need_rekey || state->rekeying) && !ssh_packet_type_is_kex(type)) {
1209 if (need_rekey)
1210 debug3("%s: rekex triggered", __func__);
1211 debug("enqueue packet: %u", type);
1212 p = calloc(1, sizeof(*p));
1213 if (p == NULL)
1214 return SSH_ERR_ALLOC_FAIL;
1215 p->type = type;
1216 p->payload = state->outgoing_packet;
1217 TAILQ_INSERT_TAIL(&state->outgoing, p, next);
1218 state->outgoing_packet = sshbuf_new();
1219 if (state->outgoing_packet == NULL)
1220 return SSH_ERR_ALLOC_FAIL;
1221 if (need_rekey) {
1222 /*
1223 * This packet triggered a rekey, so send the
1224 * KEXINIT now.
1225 * NB. reenters this function via kex_start_rekex().
1226 */
1227 return kex_start_rekex(ssh);
Damien Millera5539d22003-04-09 20:50:06 +10001228 }
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001229 return 0;
Damien Millera5539d22003-04-09 20:50:06 +10001230 }
1231
1232 /* rekeying starts with sending KEXINIT */
1233 if (type == SSH2_MSG_KEXINIT)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001234 state->rekeying = 1;
Damien Millera5539d22003-04-09 20:50:06 +10001235
markus@openbsd.org091c3022015-01-19 19:52:16 +00001236 if ((r = ssh_packet_send2_wrapped(ssh)) != 0)
1237 return r;
Damien Millera5539d22003-04-09 20:50:06 +10001238
1239 /* after a NEWKEYS message we can send the complete queue */
1240 if (type == SSH2_MSG_NEWKEYS) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001241 state->rekeying = 0;
1242 state->rekey_time = monotime();
1243 while ((p = TAILQ_FIRST(&state->outgoing))) {
Damien Millera5539d22003-04-09 20:50:06 +10001244 type = p->type;
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001245 /*
1246 * If this packet triggers a rekex, then skip the
1247 * remaining packets in the queue for now.
1248 * NB. re-enters this function via kex_start_rekex.
1249 */
1250 if (ssh_packet_need_rekeying(ssh,
1251 sshbuf_len(p->payload))) {
1252 debug3("%s: queued packet triggered rekex",
1253 __func__);
1254 return kex_start_rekex(ssh);
1255 }
Damien Millera5539d22003-04-09 20:50:06 +10001256 debug("dequeue packet: %u", type);
markus@openbsd.org091c3022015-01-19 19:52:16 +00001257 sshbuf_free(state->outgoing_packet);
1258 state->outgoing_packet = p->payload;
1259 TAILQ_REMOVE(&state->outgoing, p, next);
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001260 memset(p, 0, sizeof(*p));
Darren Tuckera627d422013-06-02 07:31:17 +10001261 free(p);
markus@openbsd.org091c3022015-01-19 19:52:16 +00001262 if ((r = ssh_packet_send2_wrapped(ssh)) != 0)
1263 return r;
Damien Millera5539d22003-04-09 20:50:06 +10001264 }
1265 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001266 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10001267}
1268
Damien Miller33b13562000-04-04 14:38:59 +10001269/*
Damien Miller5428f641999-11-25 11:54:57 +11001270 * Waits until a packet has been received, and returns its type. Note that
1271 * no other data is processed until this returns, so this function should not
1272 * be used during the interactive session.
1273 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001274
1275int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001276ssh_packet_read_seqnr(struct ssh *ssh, u_char *typep, u_int32_t *seqnr_p)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001277{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001278 struct session_state *state = ssh->state;
markus@openbsd.orga3068632016-01-14 16:17:39 +00001279 int len, r, ms_remain;
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001280 fd_set *setp;
Damien Miller95def091999-11-25 00:26:21 +11001281 char buf[8192];
Darren Tucker3fc464e2008-06-13 06:42:45 +10001282 struct timeval timeout, start, *timeoutp = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001283
Darren Tucker99bb7612008-06-13 22:02:50 +10001284 DBG(debug("packet_read()"));
1285
deraadt@openbsd.orgce445b02015-08-20 22:32:42 +00001286 setp = calloc(howmany(state->connection_in + 1,
Darren Tuckerf7288d72009-06-21 18:12:20 +10001287 NFDBITS), sizeof(fd_mask));
markus@openbsd.org091c3022015-01-19 19:52:16 +00001288 if (setp == NULL)
1289 return SSH_ERR_ALLOC_FAIL;
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001290
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001291 /*
1292 * Since we are blocking, ensure that all written packets have
1293 * been sent.
1294 */
markus@openbsd.org4daeb672015-03-24 20:10:08 +00001295 if ((r = ssh_packet_write_wait(ssh)) != 0)
1296 goto out;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001297
Damien Miller95def091999-11-25 00:26:21 +11001298 /* Stay in the loop until we have received a complete packet. */
1299 for (;;) {
1300 /* Try to read a packet from the buffer. */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001301 r = ssh_packet_read_poll_seqnr(ssh, typep, seqnr_p);
1302 if (r != 0)
1303 break;
Damien Miller95def091999-11-25 00:26:21 +11001304 /* If we got a packet, return it. */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001305 if (*typep != SSH_MSG_NONE)
1306 break;
Damien Miller5428f641999-11-25 11:54:57 +11001307 /*
1308 * Otherwise, wait for some data to arrive, add it to the
1309 * buffer, and try again.
1310 */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001311 memset(setp, 0, howmany(state->connection_in + 1,
Darren Tuckerf7288d72009-06-21 18:12:20 +10001312 NFDBITS) * sizeof(fd_mask));
markus@openbsd.org091c3022015-01-19 19:52:16 +00001313 FD_SET(state->connection_in, setp);
Damien Miller5428f641999-11-25 11:54:57 +11001314
markus@openbsd.org091c3022015-01-19 19:52:16 +00001315 if (state->packet_timeout_ms > 0) {
1316 ms_remain = state->packet_timeout_ms;
Darren Tucker3fc464e2008-06-13 06:42:45 +10001317 timeoutp = &timeout;
1318 }
Damien Miller95def091999-11-25 00:26:21 +11001319 /* Wait for some data to arrive. */
Darren Tucker3fc464e2008-06-13 06:42:45 +10001320 for (;;) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001321 if (state->packet_timeout_ms != -1) {
Darren Tucker3fc464e2008-06-13 06:42:45 +10001322 ms_to_timeval(&timeout, ms_remain);
1323 gettimeofday(&start, NULL);
1324 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001325 if ((r = select(state->connection_in + 1, setp,
Darren Tuckerf7288d72009-06-21 18:12:20 +10001326 NULL, NULL, timeoutp)) >= 0)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001327 break;
Damien Millerea437422009-10-02 11:49:03 +10001328 if (errno != EAGAIN && errno != EINTR &&
1329 errno != EWOULDBLOCK)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001330 break;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001331 if (state->packet_timeout_ms == -1)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001332 continue;
1333 ms_subtract_diff(&start, &ms_remain);
1334 if (ms_remain <= 0) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001335 r = 0;
Darren Tucker3fc464e2008-06-13 06:42:45 +10001336 break;
1337 }
1338 }
djm@openbsd.orgd7abb772017-02-28 06:10:08 +00001339 if (r == 0) {
1340 r = SSH_ERR_CONN_TIMEOUT;
1341 goto out;
1342 }
Damien Miller95def091999-11-25 00:26:21 +11001343 /* Read data from the socket. */
markus@openbsd.orga3068632016-01-14 16:17:39 +00001344 len = read(state->connection_in, buf, sizeof(buf));
markus@openbsd.org4daeb672015-03-24 20:10:08 +00001345 if (len == 0) {
1346 r = SSH_ERR_CONN_CLOSED;
1347 goto out;
1348 }
1349 if (len < 0) {
1350 r = SSH_ERR_SYSTEM_ERROR;
1351 goto out;
1352 }
djm@openbsd.orgfae7bbe2015-01-28 21:15:47 +00001353
Damien Miller95def091999-11-25 00:26:21 +11001354 /* Append it to the buffer. */
djm@openbsd.orgfae7bbe2015-01-28 21:15:47 +00001355 if ((r = ssh_packet_process_incoming(ssh, buf, len)) != 0)
markus@openbsd.org4daeb672015-03-24 20:10:08 +00001356 goto out;
Damien Miller95def091999-11-25 00:26:21 +11001357 }
markus@openbsd.org4daeb672015-03-24 20:10:08 +00001358 out:
markus@openbsd.org091c3022015-01-19 19:52:16 +00001359 free(setp);
1360 return r;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001361}
1362
Damien Miller278f9072001-12-21 15:00:19 +11001363int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001364ssh_packet_read(struct ssh *ssh)
Damien Miller278f9072001-12-21 15:00:19 +11001365{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001366 u_char type;
1367 int r;
1368
1369 if ((r = ssh_packet_read_seqnr(ssh, &type, NULL)) != 0)
1370 fatal("%s: %s", __func__, ssh_err(r));
1371 return type;
Damien Miller278f9072001-12-21 15:00:19 +11001372}
1373
Damien Miller5428f641999-11-25 11:54:57 +11001374/*
1375 * Waits until a packet has been received, verifies that its type matches
1376 * that given, and gives a fatal error and exits if there is a mismatch.
1377 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001378
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001379int
1380ssh_packet_read_expect(struct ssh *ssh, u_int expected_type)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001381{
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001382 int r;
1383 u_char type;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001384
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001385 if ((r = ssh_packet_read_seqnr(ssh, &type, NULL)) != 0)
1386 return r;
1387 if (type != expected_type) {
1388 if ((r = sshpkt_disconnect(ssh,
markus@openbsd.org091c3022015-01-19 19:52:16 +00001389 "Protocol error: expected packet type %d, got %d",
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001390 expected_type, type)) != 0)
1391 return r;
1392 return SSH_ERR_PROTOCOL_ERROR;
1393 }
1394 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001395}
1396
markus@openbsd.org8d057842016-09-30 09:19:13 +00001397static int
1398ssh_packet_read_poll2_mux(struct ssh *ssh, u_char *typep, u_int32_t *seqnr_p)
1399{
1400 struct session_state *state = ssh->state;
1401 const u_char *cp;
1402 size_t need;
1403 int r;
1404
1405 if (ssh->kex)
1406 return SSH_ERR_INTERNAL_ERROR;
1407 *typep = SSH_MSG_NONE;
1408 cp = sshbuf_ptr(state->input);
1409 if (state->packlen == 0) {
1410 if (sshbuf_len(state->input) < 4 + 1)
1411 return 0; /* packet is incomplete */
1412 state->packlen = PEEK_U32(cp);
1413 if (state->packlen < 4 + 1 ||
1414 state->packlen > PACKET_MAX_SIZE)
1415 return SSH_ERR_MESSAGE_INCOMPLETE;
1416 }
1417 need = state->packlen + 4;
1418 if (sshbuf_len(state->input) < need)
1419 return 0; /* packet is incomplete */
1420 sshbuf_reset(state->incoming_packet);
1421 if ((r = sshbuf_put(state->incoming_packet, cp + 4,
1422 state->packlen)) != 0 ||
1423 (r = sshbuf_consume(state->input, need)) != 0 ||
1424 (r = sshbuf_get_u8(state->incoming_packet, NULL)) != 0 ||
1425 (r = sshbuf_get_u8(state->incoming_packet, typep)) != 0)
1426 return r;
1427 if (ssh_packet_log_type(*typep))
1428 debug3("%s: type %u", __func__, *typep);
1429 /* sshbuf_dump(state->incoming_packet, stderr); */
1430 /* reset for next packet */
1431 state->packlen = 0;
1432 return r;
1433}
1434
markus@openbsd.org091c3022015-01-19 19:52:16 +00001435int
1436ssh_packet_read_poll2(struct ssh *ssh, u_char *typep, u_int32_t *seqnr_p)
Damien Miller33b13562000-04-04 14:38:59 +10001437{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001438 struct session_state *state = ssh->state;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001439 u_int padlen, need;
djm@openbsd.org6d311932016-07-08 03:44:42 +00001440 u_char *cp;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001441 u_int maclen, aadlen = 0, authlen = 0, block_size;
1442 struct sshenc *enc = NULL;
1443 struct sshmac *mac = NULL;
1444 struct sshcomp *comp = NULL;
markus@openbsd.org128343b2015-01-13 19:31:40 +00001445 int r;
Damien Miller33b13562000-04-04 14:38:59 +10001446
markus@openbsd.org8d057842016-09-30 09:19:13 +00001447 if (state->mux)
1448 return ssh_packet_read_poll2_mux(ssh, typep, seqnr_p);
1449
markus@openbsd.org091c3022015-01-19 19:52:16 +00001450 *typep = SSH_MSG_NONE;
Damien Miller13ae44c2009-01-28 16:38:41 +11001451
markus@openbsd.org091c3022015-01-19 19:52:16 +00001452 if (state->packet_discard)
1453 return 0;
1454
1455 if (state->newkeys[MODE_IN] != NULL) {
1456 enc = &state->newkeys[MODE_IN]->enc;
1457 mac = &state->newkeys[MODE_IN]->mac;
1458 comp = &state->newkeys[MODE_IN]->comp;
Damien Miller1d75abf2013-01-09 16:12:19 +11001459 /* disable mac for authenticated encryption */
1460 if ((authlen = cipher_authlen(enc->cipher)) != 0)
1461 mac = NULL;
Damien Miller33b13562000-04-04 14:38:59 +10001462 }
1463 maclen = mac && mac->enabled ? mac->mac_len : 0;
Damien Miller963f6b22002-02-19 15:21:23 +11001464 block_size = enc ? enc->block_size : 8;
Damien Miller1d75abf2013-01-09 16:12:19 +11001465 aadlen = (mac && mac->enabled && mac->etm) || authlen ? 4 : 0;
Damien Miller33b13562000-04-04 14:38:59 +10001466
markus@openbsd.org091c3022015-01-19 19:52:16 +00001467 if (aadlen && state->packlen == 0) {
djm@openbsd.org4706c1d2016-08-03 05:41:57 +00001468 if (cipher_get_length(state->receive_context,
markus@openbsd.org091c3022015-01-19 19:52:16 +00001469 &state->packlen, state->p_read.seqnr,
1470 sshbuf_ptr(state->input), sshbuf_len(state->input)) != 0)
1471 return 0;
1472 if (state->packlen < 1 + 4 ||
1473 state->packlen > PACKET_MAX_SIZE) {
Damien Milleraf43a7a2012-12-12 10:46:31 +11001474#ifdef PACKET_DEBUG
markus@openbsd.org091c3022015-01-19 19:52:16 +00001475 sshbuf_dump(state->input, stderr);
Damien Milleraf43a7a2012-12-12 10:46:31 +11001476#endif
markus@openbsd.org091c3022015-01-19 19:52:16 +00001477 logit("Bad packet length %u.", state->packlen);
1478 if ((r = sshpkt_disconnect(ssh, "Packet corrupt")) != 0)
1479 return r;
djm@openbsd.org2fecfd42015-11-08 21:59:11 +00001480 return SSH_ERR_CONN_CORRUPT;
Damien Milleraf43a7a2012-12-12 10:46:31 +11001481 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001482 sshbuf_reset(state->incoming_packet);
1483 } else if (state->packlen == 0) {
Damien Miller33b13562000-04-04 14:38:59 +10001484 /*
1485 * check if input size is less than the cipher block size,
1486 * decrypt first block and extract length of incoming packet
1487 */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001488 if (sshbuf_len(state->input) < block_size)
1489 return 0;
1490 sshbuf_reset(state->incoming_packet);
1491 if ((r = sshbuf_reserve(state->incoming_packet, block_size,
1492 &cp)) != 0)
1493 goto out;
djm@openbsd.org4706c1d2016-08-03 05:41:57 +00001494 if ((r = cipher_crypt(state->receive_context,
markus@openbsd.org091c3022015-01-19 19:52:16 +00001495 state->p_send.seqnr, cp, sshbuf_ptr(state->input),
1496 block_size, 0, 0)) != 0)
1497 goto out;
1498 state->packlen = PEEK_U32(sshbuf_ptr(state->incoming_packet));
1499 if (state->packlen < 1 + 4 ||
1500 state->packlen > PACKET_MAX_SIZE) {
Darren Tuckera8151da2003-09-22 21:06:46 +10001501#ifdef PACKET_DEBUG
markus@openbsd.org091c3022015-01-19 19:52:16 +00001502 fprintf(stderr, "input: \n");
1503 sshbuf_dump(state->input, stderr);
1504 fprintf(stderr, "incoming_packet: \n");
1505 sshbuf_dump(state->incoming_packet, stderr);
Darren Tuckera8151da2003-09-22 21:06:46 +10001506#endif
markus@openbsd.org091c3022015-01-19 19:52:16 +00001507 logit("Bad packet length %u.", state->packlen);
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +00001508 return ssh_packet_start_discard(ssh, enc, mac, 0,
1509 PACKET_MAX_SIZE);
Damien Miller33b13562000-04-04 14:38:59 +10001510 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001511 if ((r = sshbuf_consume(state->input, block_size)) != 0)
1512 goto out;
Damien Miller33b13562000-04-04 14:38:59 +10001513 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001514 DBG(debug("input: packet len %u", state->packlen+4));
1515
Damien Milleraf43a7a2012-12-12 10:46:31 +11001516 if (aadlen) {
1517 /* only the payload is encrypted */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001518 need = state->packlen;
Damien Milleraf43a7a2012-12-12 10:46:31 +11001519 } else {
1520 /*
1521 * the payload size and the payload are encrypted, but we
1522 * have a partial packet of block_size bytes
1523 */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001524 need = 4 + state->packlen - block_size;
Damien Milleraf43a7a2012-12-12 10:46:31 +11001525 }
Damien Miller1d75abf2013-01-09 16:12:19 +11001526 DBG(debug("partial packet: block %d, need %d, maclen %d, authlen %d,"
1527 " aadlen %d", block_size, need, maclen, authlen, aadlen));
Darren Tucker99d11a32008-12-01 21:40:48 +11001528 if (need % block_size != 0) {
1529 logit("padding error: need %d block %d mod %d",
Damien Miller33b13562000-04-04 14:38:59 +10001530 need, block_size, need % block_size);
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +00001531 return ssh_packet_start_discard(ssh, enc, mac, 0,
1532 PACKET_MAX_SIZE - block_size);
Darren Tucker99d11a32008-12-01 21:40:48 +11001533 }
Damien Miller33b13562000-04-04 14:38:59 +10001534 /*
1535 * check if the entire packet has been received and
Damien Milleraf43a7a2012-12-12 10:46:31 +11001536 * decrypt into incoming_packet:
1537 * 'aadlen' bytes are unencrypted, but authenticated.
Damien Miller1d75abf2013-01-09 16:12:19 +11001538 * 'need' bytes are encrypted, followed by either
1539 * 'authlen' bytes of authentication tag or
Damien Milleraf43a7a2012-12-12 10:46:31 +11001540 * 'maclen' bytes of message authentication code.
Damien Miller33b13562000-04-04 14:38:59 +10001541 */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001542 if (sshbuf_len(state->input) < aadlen + need + authlen + maclen)
djm@openbsd.org6d311932016-07-08 03:44:42 +00001543 return 0; /* packet is incomplete */
Damien Miller33b13562000-04-04 14:38:59 +10001544#ifdef PACKET_DEBUG
1545 fprintf(stderr, "read_poll enc/full: ");
markus@openbsd.org091c3022015-01-19 19:52:16 +00001546 sshbuf_dump(state->input, stderr);
Damien Miller33b13562000-04-04 14:38:59 +10001547#endif
djm@openbsd.org6d311932016-07-08 03:44:42 +00001548 /* EtM: check mac over encrypted input */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001549 if (mac && mac->enabled && mac->etm) {
djm@openbsd.org6d311932016-07-08 03:44:42 +00001550 if ((r = mac_check(mac, state->p_read.seqnr,
markus@openbsd.org091c3022015-01-19 19:52:16 +00001551 sshbuf_ptr(state->input), aadlen + need,
djm@openbsd.org6d311932016-07-08 03:44:42 +00001552 sshbuf_ptr(state->input) + aadlen + need + authlen,
1553 maclen)) != 0) {
1554 if (r == SSH_ERR_MAC_INVALID)
1555 logit("Corrupted MAC on input.");
markus@openbsd.org091c3022015-01-19 19:52:16 +00001556 goto out;
djm@openbsd.org6d311932016-07-08 03:44:42 +00001557 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001558 }
1559 if ((r = sshbuf_reserve(state->incoming_packet, aadlen + need,
1560 &cp)) != 0)
1561 goto out;
djm@openbsd.org4706c1d2016-08-03 05:41:57 +00001562 if ((r = cipher_crypt(state->receive_context, state->p_read.seqnr, cp,
markus@openbsd.org091c3022015-01-19 19:52:16 +00001563 sshbuf_ptr(state->input), need, aadlen, authlen)) != 0)
1564 goto out;
1565 if ((r = sshbuf_consume(state->input, aadlen + need + authlen)) != 0)
1566 goto out;
Damien Miller4af51302000-04-16 11:18:38 +10001567 if (mac && mac->enabled) {
djm@openbsd.org6d311932016-07-08 03:44:42 +00001568 /* Not EtM: check MAC over cleartext */
1569 if (!mac->etm && (r = mac_check(mac, state->p_read.seqnr,
1570 sshbuf_ptr(state->incoming_packet),
1571 sshbuf_len(state->incoming_packet),
1572 sshbuf_ptr(state->input), maclen)) != 0) {
1573 if (r != SSH_ERR_MAC_INVALID)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001574 goto out;
Damien Miller13ae44c2009-01-28 16:38:41 +11001575 logit("Corrupted MAC on input.");
markus@openbsd.org0fb1a612017-03-11 13:07:35 +00001576 if (need + block_size > PACKET_MAX_SIZE)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001577 return SSH_ERR_INTERNAL_ERROR;
1578 return ssh_packet_start_discard(ssh, enc, mac,
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +00001579 sshbuf_len(state->incoming_packet),
markus@openbsd.org0fb1a612017-03-11 13:07:35 +00001580 PACKET_MAX_SIZE - need - block_size);
Damien Miller13ae44c2009-01-28 16:38:41 +11001581 }
djm@openbsd.org6d311932016-07-08 03:44:42 +00001582 /* Remove MAC from input buffer */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001583 DBG(debug("MAC #%d ok", state->p_read.seqnr));
1584 if ((r = sshbuf_consume(state->input, mac->mac_len)) != 0)
1585 goto out;
Damien Miller33b13562000-04-04 14:38:59 +10001586 }
Damien Miller278f9072001-12-21 15:00:19 +11001587 if (seqnr_p != NULL)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001588 *seqnr_p = state->p_read.seqnr;
1589 if (++state->p_read.seqnr == 0)
Damien Miller996acd22003-04-09 20:59:48 +10001590 logit("incoming seqnr wraps around");
markus@openbsd.org091c3022015-01-19 19:52:16 +00001591 if (++state->p_read.packets == 0)
1592 if (!(ssh->compat & SSH_BUG_NOREKEY))
1593 return SSH_ERR_NEED_REKEY;
1594 state->p_read.blocks += (state->packlen + 4) / block_size;
1595 state->p_read.bytes += state->packlen + 4;
Damien Miller33b13562000-04-04 14:38:59 +10001596
1597 /* get padlen */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001598 padlen = sshbuf_ptr(state->incoming_packet)[4];
Damien Miller33b13562000-04-04 14:38:59 +10001599 DBG(debug("input: padlen %d", padlen));
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001600 if (padlen < 4) {
1601 if ((r = sshpkt_disconnect(ssh,
1602 "Corrupted padlen %d on input.", padlen)) != 0 ||
1603 (r = ssh_packet_write_wait(ssh)) != 0)
1604 return r;
1605 return SSH_ERR_CONN_CORRUPT;
1606 }
Damien Miller33b13562000-04-04 14:38:59 +10001607
1608 /* skip packet size + padlen, discard padding */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001609 if ((r = sshbuf_consume(state->incoming_packet, 4 + 1)) != 0 ||
1610 ((r = sshbuf_consume_end(state->incoming_packet, padlen)) != 0))
1611 goto out;
Damien Miller33b13562000-04-04 14:38:59 +10001612
markus@openbsd.org091c3022015-01-19 19:52:16 +00001613 DBG(debug("input: len before de-compress %zd",
1614 sshbuf_len(state->incoming_packet)));
Damien Miller33b13562000-04-04 14:38:59 +10001615 if (comp && comp->enabled) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001616 sshbuf_reset(state->compression_buffer);
1617 if ((r = uncompress_buffer(ssh, state->incoming_packet,
1618 state->compression_buffer)) != 0)
1619 goto out;
1620 sshbuf_reset(state->incoming_packet);
1621 if ((r = sshbuf_putb(state->incoming_packet,
1622 state->compression_buffer)) != 0)
1623 goto out;
1624 DBG(debug("input: len after de-compress %zd",
1625 sshbuf_len(state->incoming_packet)));
Damien Miller33b13562000-04-04 14:38:59 +10001626 }
1627 /*
1628 * get packet type, implies consume.
1629 * return length of payload (without type field)
1630 */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001631 if ((r = sshbuf_get_u8(state->incoming_packet, typep)) != 0)
1632 goto out;
djm@openbsd.org28136472016-01-29 05:46:01 +00001633 if (ssh_packet_log_type(*typep))
1634 debug3("receive packet: type %u", *typep);
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001635 if (*typep < SSH2_MSG_MIN || *typep >= SSH2_MSG_LOCAL_MIN) {
1636 if ((r = sshpkt_disconnect(ssh,
1637 "Invalid ssh2 packet type: %d", *typep)) != 0 ||
1638 (r = ssh_packet_write_wait(ssh)) != 0)
1639 return r;
1640 return SSH_ERR_PROTOCOL_ERROR;
1641 }
djm@openbsd.org39af7b42016-10-11 21:47:45 +00001642 if (state->hook_in != NULL &&
1643 (r = state->hook_in(ssh, state->incoming_packet, typep,
1644 state->hook_in_ctx)) != 0)
1645 return r;
markus@openbsd.org28652bc2016-09-19 19:02:19 +00001646 if (*typep == SSH2_MSG_USERAUTH_SUCCESS && !state->server_side)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001647 r = ssh_packet_enable_delayed_compress(ssh);
1648 else
1649 r = 0;
Damien Miller33b13562000-04-04 14:38:59 +10001650#ifdef PACKET_DEBUG
markus@openbsd.org091c3022015-01-19 19:52:16 +00001651 fprintf(stderr, "read/plain[%d]:\r\n", *typep);
1652 sshbuf_dump(state->incoming_packet, stderr);
Damien Miller33b13562000-04-04 14:38:59 +10001653#endif
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001654 /* reset for next packet */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001655 state->packlen = 0;
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001656
1657 /* do we need to rekey? */
1658 if (ssh_packet_need_rekeying(ssh, 0)) {
1659 debug3("%s: rekex triggered", __func__);
1660 if ((r = kex_start_rekex(ssh)) != 0)
1661 return r;
1662 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001663 out:
1664 return r;
Damien Miller33b13562000-04-04 14:38:59 +10001665}
1666
1667int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001668ssh_packet_read_poll_seqnr(struct ssh *ssh, u_char *typep, u_int32_t *seqnr_p)
Damien Miller33b13562000-04-04 14:38:59 +10001669{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001670 struct session_state *state = ssh->state;
Ben Lindstrom3f584742002-06-23 21:49:25 +00001671 u_int reason, seqnr;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001672 int r;
1673 u_char *msg;
Damien Miller33b13562000-04-04 14:38:59 +10001674
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001675 for (;;) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001676 msg = NULL;
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001677 r = ssh_packet_read_poll2(ssh, typep, seqnr_p);
1678 if (r != 0)
1679 return r;
1680 if (*typep) {
1681 state->keep_alive_timeouts = 0;
1682 DBG(debug("received packet type %d", *typep));
1683 }
1684 switch (*typep) {
1685 case SSH2_MSG_IGNORE:
1686 debug3("Received SSH2_MSG_IGNORE");
1687 break;
1688 case SSH2_MSG_DEBUG:
1689 if ((r = sshpkt_get_u8(ssh, NULL)) != 0 ||
1690 (r = sshpkt_get_string(ssh, &msg, NULL)) != 0 ||
1691 (r = sshpkt_get_string(ssh, NULL, NULL)) != 0) {
1692 free(msg);
markus@openbsd.org091c3022015-01-19 19:52:16 +00001693 return r;
Darren Tucker136e56f2008-06-08 12:49:30 +10001694 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001695 debug("Remote: %.900s", msg);
1696 free(msg);
1697 break;
1698 case SSH2_MSG_DISCONNECT:
1699 if ((r = sshpkt_get_u32(ssh, &reason)) != 0 ||
1700 (r = sshpkt_get_string(ssh, &msg, NULL)) != 0)
1701 return r;
1702 /* Ignore normal client exit notifications */
1703 do_log2(ssh->state->server_side &&
1704 reason == SSH2_DISCONNECT_BY_APPLICATION ?
1705 SYSLOG_LEVEL_INFO : SYSLOG_LEVEL_ERROR,
1706 "Received disconnect from %s port %d:"
1707 "%u: %.400s", ssh_remote_ipaddr(ssh),
1708 ssh_remote_port(ssh), reason, msg);
1709 free(msg);
1710 return SSH_ERR_DISCONNECTED;
1711 case SSH2_MSG_UNIMPLEMENTED:
1712 if ((r = sshpkt_get_u32(ssh, &seqnr)) != 0)
1713 return r;
1714 debug("Received SSH2_MSG_UNIMPLEMENTED for %u",
1715 seqnr);
1716 break;
1717 default:
1718 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10001719 }
1720 }
1721}
1722
Damien Miller5428f641999-11-25 11:54:57 +11001723/*
1724 * Buffers the given amount of input characters. This is intended to be used
1725 * together with packet_read_poll.
1726 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001727
djm@openbsd.orgfae7bbe2015-01-28 21:15:47 +00001728int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001729ssh_packet_process_incoming(struct ssh *ssh, const char *buf, u_int len)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001730{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001731 struct session_state *state = ssh->state;
1732 int r;
1733
1734 if (state->packet_discard) {
1735 state->keep_alive_timeouts = 0; /* ?? */
1736 if (len >= state->packet_discard) {
1737 if ((r = ssh_packet_stop_discard(ssh)) != 0)
djm@openbsd.orgfae7bbe2015-01-28 21:15:47 +00001738 return r;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001739 }
1740 state->packet_discard -= len;
djm@openbsd.orgfae7bbe2015-01-28 21:15:47 +00001741 return 0;
Damien Miller13ae44c2009-01-28 16:38:41 +11001742 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001743 if ((r = sshbuf_put(ssh->state->input, buf, len)) != 0)
djm@openbsd.orgfae7bbe2015-01-28 21:15:47 +00001744 return r;
1745
1746 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10001747}
1748
Damien Miller4af51302000-04-16 11:18:38 +10001749int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001750ssh_packet_remaining(struct ssh *ssh)
Damien Miller4af51302000-04-16 11:18:38 +10001751{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001752 return sshbuf_len(ssh->state->incoming_packet);
Damien Millerda108ec2010-08-31 22:36:39 +10001753}
1754
Damien Miller5428f641999-11-25 11:54:57 +11001755/*
1756 * Sends a diagnostic message from the server to the client. This message
1757 * can be sent at any time (but not while constructing another message). The
1758 * message is printed immediately, but only if the client is being executed
1759 * in verbose mode. These messages are primarily intended to ease debugging
1760 * authentication problems. The length of the formatted message must not
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001761 * exceed 1024 bytes. This will automatically call ssh_packet_write_wait.
Damien Miller5428f641999-11-25 11:54:57 +11001762 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001763void
markus@openbsd.org091c3022015-01-19 19:52:16 +00001764ssh_packet_send_debug(struct ssh *ssh, const char *fmt,...)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001765{
Damien Miller95def091999-11-25 00:26:21 +11001766 char buf[1024];
1767 va_list args;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001768 int r;
Damien Miller95def091999-11-25 00:26:21 +11001769
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001770 if ((ssh->compat & SSH_BUG_DEBUG))
Ben Lindstroma14ee472000-12-07 01:24:58 +00001771 return;
1772
Damien Miller95def091999-11-25 00:26:21 +11001773 va_start(args, fmt);
1774 vsnprintf(buf, sizeof(buf), fmt, args);
1775 va_end(args);
1776
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001777 if ((r = sshpkt_start(ssh, SSH2_MSG_DEBUG)) != 0 ||
1778 (r = sshpkt_put_u8(ssh, 0)) != 0 || /* always display */
1779 (r = sshpkt_put_cstring(ssh, buf)) != 0 ||
1780 (r = sshpkt_put_cstring(ssh, "")) != 0 ||
1781 (r = sshpkt_send(ssh)) != 0 ||
1782 (r = ssh_packet_write_wait(ssh)) != 0)
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001783 fatal("%s: %s", __func__, ssh_err(r));
1784}
1785
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001786static void
1787fmt_connection_id(struct ssh *ssh, char *s, size_t l)
1788{
1789 snprintf(s, l, "%.200s%s%s port %d",
1790 ssh->log_preamble ? ssh->log_preamble : "",
1791 ssh->log_preamble ? " " : "",
1792 ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
1793}
1794
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001795/*
1796 * Pretty-print connection-terminating errors and exit.
1797 */
1798void
1799sshpkt_fatal(struct ssh *ssh, const char *tag, int r)
1800{
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001801 char remote_id[512];
1802
1803 fmt_connection_id(ssh, remote_id, sizeof(remote_id));
1804
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001805 switch (r) {
1806 case SSH_ERR_CONN_CLOSED:
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001807 ssh_packet_clear_keys(ssh);
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001808 logdie("Connection closed by %s", remote_id);
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001809 case SSH_ERR_CONN_TIMEOUT:
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001810 ssh_packet_clear_keys(ssh);
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001811 logdie("Connection %s %s timed out",
1812 ssh->state->server_side ? "from" : "to", remote_id);
djm@openbsd.org639d6bc2015-05-01 07:10:01 +00001813 case SSH_ERR_DISCONNECTED:
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001814 ssh_packet_clear_keys(ssh);
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001815 logdie("Disconnected from %s", remote_id);
djm@openbsd.org639d6bc2015-05-01 07:10:01 +00001816 case SSH_ERR_SYSTEM_ERROR:
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001817 if (errno == ECONNRESET) {
1818 ssh_packet_clear_keys(ssh);
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001819 logdie("Connection reset by %s", remote_id);
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001820 }
djm@openbsd.org639d6bc2015-05-01 07:10:01 +00001821 /* FALLTHROUGH */
djm@openbsd.orgf3199122015-07-29 04:43:06 +00001822 case SSH_ERR_NO_CIPHER_ALG_MATCH:
1823 case SSH_ERR_NO_MAC_ALG_MATCH:
1824 case SSH_ERR_NO_COMPRESS_ALG_MATCH:
1825 case SSH_ERR_NO_KEX_ALG_MATCH:
1826 case SSH_ERR_NO_HOSTKEY_ALG_MATCH:
1827 if (ssh && ssh->kex && ssh->kex->failed_choice) {
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001828 ssh_packet_clear_keys(ssh);
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001829 logdie("Unable to negotiate with %s: %s. "
1830 "Their offer: %s", remote_id, ssh_err(r),
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +00001831 ssh->kex->failed_choice);
djm@openbsd.orgf3199122015-07-29 04:43:06 +00001832 }
1833 /* FALLTHROUGH */
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001834 default:
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001835 ssh_packet_clear_keys(ssh);
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001836 logdie("%s%sConnection %s %s: %s",
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001837 tag != NULL ? tag : "", tag != NULL ? ": " : "",
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +00001838 ssh->state->server_side ? "from" : "to",
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001839 remote_id, ssh_err(r));
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001840 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001841}
1842
Damien Miller5428f641999-11-25 11:54:57 +11001843/*
1844 * Logs the error plus constructs and sends a disconnect packet, closes the
1845 * connection, and exits. This function never returns. The error message
1846 * should not contain a newline. The length of the formatted message must
1847 * not exceed 1024 bytes.
1848 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001849void
markus@openbsd.org091c3022015-01-19 19:52:16 +00001850ssh_packet_disconnect(struct ssh *ssh, const char *fmt,...)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001851{
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001852 char buf[1024], remote_id[512];
Damien Miller95def091999-11-25 00:26:21 +11001853 va_list args;
1854 static int disconnecting = 0;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001855 int r;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001856
Damien Miller95def091999-11-25 00:26:21 +11001857 if (disconnecting) /* Guard against recursive invocations. */
1858 fatal("packet_disconnect called recursively.");
1859 disconnecting = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001860
Damien Miller5428f641999-11-25 11:54:57 +11001861 /*
1862 * Format the message. Note that the caller must make sure the
1863 * message is of limited size.
1864 */
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001865 fmt_connection_id(ssh, remote_id, sizeof(remote_id));
Damien Miller95def091999-11-25 00:26:21 +11001866 va_start(args, fmt);
1867 vsnprintf(buf, sizeof(buf), fmt, args);
1868 va_end(args);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001869
Ben Lindstrom9bda7ae2002-11-09 15:46:24 +00001870 /* Display the error locally */
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001871 logit("Disconnecting %s: %.100s", remote_id, buf);
Ben Lindstrom9bda7ae2002-11-09 15:46:24 +00001872
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001873 /*
1874 * Send the disconnect message to the other side, and wait
1875 * for it to get sent.
1876 */
1877 if ((r = sshpkt_disconnect(ssh, "%s", buf)) != 0)
1878 sshpkt_fatal(ssh, __func__, r);
1879
1880 if ((r = ssh_packet_write_wait(ssh)) != 0)
1881 sshpkt_fatal(ssh, __func__, r);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001882
Damien Miller95def091999-11-25 00:26:21 +11001883 /* Close the connection. */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001884 ssh_packet_close(ssh);
Darren Tucker3e33cec2003-10-02 16:12:36 +10001885 cleanup_exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001886}
1887
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001888/*
1889 * Checks if there is any buffered output, and tries to write some of
1890 * the output.
1891 */
1892int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001893ssh_packet_write_poll(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001894{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001895 struct session_state *state = ssh->state;
1896 int len = sshbuf_len(state->output);
markus@openbsd.orga3068632016-01-14 16:17:39 +00001897 int r;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001898
Damien Miller95def091999-11-25 00:26:21 +11001899 if (len > 0) {
markus@openbsd.orga3068632016-01-14 16:17:39 +00001900 len = write(state->connection_out,
1901 sshbuf_ptr(state->output), len);
Damien Millerd874fa52008-07-05 09:40:56 +10001902 if (len == -1) {
Damien Millerea437422009-10-02 11:49:03 +10001903 if (errno == EINTR || errno == EAGAIN ||
1904 errno == EWOULDBLOCK)
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001905 return 0;
1906 return SSH_ERR_SYSTEM_ERROR;
Damien Miller95def091999-11-25 00:26:21 +11001907 }
markus@openbsd.orga3068632016-01-14 16:17:39 +00001908 if (len == 0)
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001909 return SSH_ERR_CONN_CLOSED;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001910 if ((r = sshbuf_consume(state->output, len)) != 0)
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001911 return r;
Damien Miller95def091999-11-25 00:26:21 +11001912 }
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001913 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001914}
1915
Damien Miller5428f641999-11-25 11:54:57 +11001916/*
1917 * Calls packet_write_poll repeatedly until all pending output data has been
1918 * written.
1919 */
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001920int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001921ssh_packet_write_wait(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001922{
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001923 fd_set *setp;
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001924 int ret, r, ms_remain = 0;
Darren Tucker3fc464e2008-06-13 06:42:45 +10001925 struct timeval start, timeout, *timeoutp = NULL;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001926 struct session_state *state = ssh->state;
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001927
deraadt@openbsd.orgce445b02015-08-20 22:32:42 +00001928 setp = calloc(howmany(state->connection_out + 1,
Darren Tuckerf7288d72009-06-21 18:12:20 +10001929 NFDBITS), sizeof(fd_mask));
markus@openbsd.org091c3022015-01-19 19:52:16 +00001930 if (setp == NULL)
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001931 return SSH_ERR_ALLOC_FAIL;
gsoares@openbsd.org66d2e222015-10-21 11:33:03 +00001932 if ((r = ssh_packet_write_poll(ssh)) != 0) {
1933 free(setp);
djm@openbsd.org84082182015-09-21 04:31:00 +00001934 return r;
gsoares@openbsd.org66d2e222015-10-21 11:33:03 +00001935 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001936 while (ssh_packet_have_data_to_write(ssh)) {
1937 memset(setp, 0, howmany(state->connection_out + 1,
Darren Tuckerf7288d72009-06-21 18:12:20 +10001938 NFDBITS) * sizeof(fd_mask));
markus@openbsd.org091c3022015-01-19 19:52:16 +00001939 FD_SET(state->connection_out, setp);
Darren Tucker3fc464e2008-06-13 06:42:45 +10001940
markus@openbsd.org091c3022015-01-19 19:52:16 +00001941 if (state->packet_timeout_ms > 0) {
1942 ms_remain = state->packet_timeout_ms;
Darren Tucker3fc464e2008-06-13 06:42:45 +10001943 timeoutp = &timeout;
1944 }
1945 for (;;) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001946 if (state->packet_timeout_ms != -1) {
Darren Tucker3fc464e2008-06-13 06:42:45 +10001947 ms_to_timeval(&timeout, ms_remain);
1948 gettimeofday(&start, NULL);
1949 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001950 if ((ret = select(state->connection_out + 1,
Darren Tuckerf7288d72009-06-21 18:12:20 +10001951 NULL, setp, NULL, timeoutp)) >= 0)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001952 break;
Damien Millerea437422009-10-02 11:49:03 +10001953 if (errno != EAGAIN && errno != EINTR &&
1954 errno != EWOULDBLOCK)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001955 break;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001956 if (state->packet_timeout_ms == -1)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001957 continue;
1958 ms_subtract_diff(&start, &ms_remain);
1959 if (ms_remain <= 0) {
1960 ret = 0;
1961 break;
1962 }
1963 }
1964 if (ret == 0) {
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001965 free(setp);
1966 return SSH_ERR_CONN_TIMEOUT;
Darren Tucker3fc464e2008-06-13 06:42:45 +10001967 }
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001968 if ((r = ssh_packet_write_poll(ssh)) != 0) {
1969 free(setp);
1970 return r;
1971 }
Damien Miller95def091999-11-25 00:26:21 +11001972 }
Darren Tuckera627d422013-06-02 07:31:17 +10001973 free(setp);
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001974 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001975}
1976
1977/* Returns true if there is buffered data to write to the connection. */
1978
1979int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001980ssh_packet_have_data_to_write(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001981{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001982 return sshbuf_len(ssh->state->output) != 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001983}
1984
1985/* Returns true if there is not too much data to write to the connection. */
1986
1987int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001988ssh_packet_not_very_much_data_to_write(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001989{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001990 if (ssh->state->interactive_mode)
1991 return sshbuf_len(ssh->state->output) < 16384;
Damien Miller95def091999-11-25 00:26:21 +11001992 else
markus@openbsd.org091c3022015-01-19 19:52:16 +00001993 return sshbuf_len(ssh->state->output) < 128 * 1024;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001994}
1995
markus@openbsd.org091c3022015-01-19 19:52:16 +00001996void
1997ssh_packet_set_tos(struct ssh *ssh, int tos)
Ben Lindstroma7433982002-12-23 02:41:41 +00001998{
Damien Millerd2ac5d72011-05-15 08:43:13 +10001999#ifndef IP_TOS_IS_BROKEN
djm@openbsd.org51676ec2017-07-23 23:37:02 +00002000 if (!ssh_packet_connection_is_on_socket(ssh) || tos == INT_MAX)
Ben Lindstroma7433982002-12-23 02:41:41 +00002001 return;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002002 switch (ssh_packet_connection_af(ssh)) {
Damien Millerd2ac5d72011-05-15 08:43:13 +10002003# ifdef IP_TOS
2004 case AF_INET:
2005 debug3("%s: set IP_TOS 0x%02x", __func__, tos);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002006 if (setsockopt(ssh->state->connection_in,
Damien Millerd2ac5d72011-05-15 08:43:13 +10002007 IPPROTO_IP, IP_TOS, &tos, sizeof(tos)) < 0)
2008 error("setsockopt IP_TOS %d: %.100s:",
2009 tos, strerror(errno));
2010 break;
2011# endif /* IP_TOS */
2012# ifdef IPV6_TCLASS
2013 case AF_INET6:
2014 debug3("%s: set IPV6_TCLASS 0x%02x", __func__, tos);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002015 if (setsockopt(ssh->state->connection_in,
Damien Millerd2ac5d72011-05-15 08:43:13 +10002016 IPPROTO_IPV6, IPV6_TCLASS, &tos, sizeof(tos)) < 0)
2017 error("setsockopt IPV6_TCLASS %d: %.100s:",
2018 tos, strerror(errno));
2019 break;
Damien Millerd2ac5d72011-05-15 08:43:13 +10002020# endif /* IPV6_TCLASS */
Damien Miller23f425b2011-05-15 08:58:15 +10002021 }
Damien Millerd2ac5d72011-05-15 08:43:13 +10002022#endif /* IP_TOS_IS_BROKEN */
Damien Miller5924ceb2003-11-22 15:02:42 +11002023}
Ben Lindstroma7433982002-12-23 02:41:41 +00002024
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002025/* Informs that the current session is interactive. Sets IP flags for that. */
2026
2027void
markus@openbsd.org091c3022015-01-19 19:52:16 +00002028ssh_packet_set_interactive(struct ssh *ssh, int interactive, int qos_interactive, int qos_bulk)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002029{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002030 struct session_state *state = ssh->state;
2031
2032 if (state->set_interactive_called)
Ben Lindstrombf555ba2001-01-18 02:04:35 +00002033 return;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002034 state->set_interactive_called = 1;
Ben Lindstrombf555ba2001-01-18 02:04:35 +00002035
Damien Miller95def091999-11-25 00:26:21 +11002036 /* Record that we are in interactive mode. */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002037 state->interactive_mode = interactive;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002038
Damien Miller34132e52000-01-14 15:45:46 +11002039 /* Only set socket options if using a socket. */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002040 if (!ssh_packet_connection_is_on_socket(ssh))
Ben Lindstrom93b6b772003-04-27 17:55:33 +00002041 return;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002042 set_nodelay(state->connection_in);
2043 ssh_packet_set_tos(ssh, interactive ? qos_interactive :
2044 qos_bulk);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002045}
2046
2047/* Returns true if the current connection is interactive. */
2048
2049int
markus@openbsd.org091c3022015-01-19 19:52:16 +00002050ssh_packet_is_interactive(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002051{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002052 return ssh->state->interactive_mode;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002053}
Damien Miller6162d121999-11-21 13:23:52 +11002054
Darren Tucker1f8311c2004-05-13 16:39:33 +10002055int
markus@openbsd.org091c3022015-01-19 19:52:16 +00002056ssh_packet_set_maxsize(struct ssh *ssh, u_int s)
Damien Miller6162d121999-11-21 13:23:52 +11002057{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002058 struct session_state *state = ssh->state;
2059
2060 if (state->set_maxsize_called) {
Damien Miller996acd22003-04-09 20:59:48 +10002061 logit("packet_set_maxsize: called twice: old %d new %d",
markus@openbsd.org091c3022015-01-19 19:52:16 +00002062 state->max_packet_size, s);
Damien Miller95def091999-11-25 00:26:21 +11002063 return -1;
2064 }
2065 if (s < 4 * 1024 || s > 1024 * 1024) {
Damien Miller996acd22003-04-09 20:59:48 +10002066 logit("packet_set_maxsize: bad size %d", s);
Damien Miller95def091999-11-25 00:26:21 +11002067 return -1;
2068 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00002069 state->set_maxsize_called = 1;
Ben Lindstrom16d45b32001-06-13 04:39:18 +00002070 debug("packet_set_maxsize: setting to %d", s);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002071 state->max_packet_size = s;
Damien Miller95def091999-11-25 00:26:21 +11002072 return s;
Damien Miller6162d121999-11-21 13:23:52 +11002073}
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00002074
Darren Tuckerf7288d72009-06-21 18:12:20 +10002075int
markus@openbsd.org091c3022015-01-19 19:52:16 +00002076ssh_packet_inc_alive_timeouts(struct ssh *ssh)
Darren Tuckerf7288d72009-06-21 18:12:20 +10002077{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002078 return ++ssh->state->keep_alive_timeouts;
Darren Tuckerf7288d72009-06-21 18:12:20 +10002079}
2080
2081void
markus@openbsd.org091c3022015-01-19 19:52:16 +00002082ssh_packet_set_alive_timeouts(struct ssh *ssh, int ka)
Darren Tuckerf7288d72009-06-21 18:12:20 +10002083{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002084 ssh->state->keep_alive_timeouts = ka;
Darren Tuckerf7288d72009-06-21 18:12:20 +10002085}
2086
2087u_int
markus@openbsd.org091c3022015-01-19 19:52:16 +00002088ssh_packet_get_maxsize(struct ssh *ssh)
Darren Tuckerf7288d72009-06-21 18:12:20 +10002089{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002090 return ssh->state->max_packet_size;
Damien Miller9f643902001-11-12 11:02:52 +11002091}
2092
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00002093/*
2094 * 9.2. Ignored Data Message
Ben Lindstroma3700052001-04-05 23:26:32 +00002095 *
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00002096 * byte SSH_MSG_IGNORE
2097 * string data
Ben Lindstroma3700052001-04-05 23:26:32 +00002098 *
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00002099 * All implementations MUST understand (and ignore) this message at any
2100 * time (after receiving the protocol version). No implementation is
2101 * required to send them. This message can be used as an additional
2102 * protection measure against advanced traffic analysis techniques.
2103 */
Ben Lindstrome229b252001-03-05 06:28:06 +00002104void
markus@openbsd.org091c3022015-01-19 19:52:16 +00002105ssh_packet_send_ignore(struct ssh *ssh, int nbytes)
Ben Lindstrome229b252001-03-05 06:28:06 +00002106{
Darren Tucker3f9fdc72004-06-22 12:56:01 +10002107 u_int32_t rnd = 0;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002108 int r, i;
Ben Lindstrome229b252001-03-05 06:28:06 +00002109
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002110 if ((r = sshpkt_start(ssh, SSH2_MSG_IGNORE)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +00002111 (r = sshpkt_put_u32(ssh, nbytes)) != 0)
2112 fatal("%s: %s", __func__, ssh_err(r));
Damien Miller9f0f5c62001-12-21 14:45:46 +11002113 for (i = 0; i < nbytes; i++) {
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00002114 if (i % 4 == 0)
Darren Tucker3f9fdc72004-06-22 12:56:01 +10002115 rnd = arc4random();
markus@openbsd.org091c3022015-01-19 19:52:16 +00002116 if ((r = sshpkt_put_u8(ssh, (u_char)rnd & 0xff)) != 0)
2117 fatal("%s: %s", __func__, ssh_err(r));
Darren Tucker3f9fdc72004-06-22 12:56:01 +10002118 rnd >>= 8;
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00002119 }
2120}
Damien Millera5539d22003-04-09 20:50:06 +10002121
Damien Millera5539d22003-04-09 20:50:06 +10002122void
dtucker@openbsd.orgc998bf02017-02-03 02:56:00 +00002123ssh_packet_set_rekey_limits(struct ssh *ssh, u_int64_t bytes, u_int32_t seconds)
Damien Millera5539d22003-04-09 20:50:06 +10002124{
dtucker@openbsd.orgc998bf02017-02-03 02:56:00 +00002125 debug3("rekey after %llu bytes, %u seconds", (unsigned long long)bytes,
2126 (unsigned int)seconds);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002127 ssh->state->rekey_limit = bytes;
2128 ssh->state->rekey_interval = seconds;
Darren Tuckerc53c2af2013-05-16 20:28:16 +10002129}
2130
2131time_t
markus@openbsd.org091c3022015-01-19 19:52:16 +00002132ssh_packet_get_rekey_timeout(struct ssh *ssh)
Darren Tuckerc53c2af2013-05-16 20:28:16 +10002133{
2134 time_t seconds;
2135
markus@openbsd.org091c3022015-01-19 19:52:16 +00002136 seconds = ssh->state->rekey_time + ssh->state->rekey_interval -
Darren Tuckerb759c9c2013-06-02 07:46:16 +10002137 monotime();
Darren Tucker5f96f3b2013-05-16 20:29:28 +10002138 return (seconds <= 0 ? 1 : seconds);
Damien Millera5539d22003-04-09 20:50:06 +10002139}
Damien Miller9786e6e2005-07-26 21:54:56 +10002140
2141void
markus@openbsd.org091c3022015-01-19 19:52:16 +00002142ssh_packet_set_server(struct ssh *ssh)
Damien Miller9786e6e2005-07-26 21:54:56 +10002143{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002144 ssh->state->server_side = 1;
Damien Miller9786e6e2005-07-26 21:54:56 +10002145}
2146
2147void
markus@openbsd.org091c3022015-01-19 19:52:16 +00002148ssh_packet_set_authenticated(struct ssh *ssh)
Damien Miller9786e6e2005-07-26 21:54:56 +10002149{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002150 ssh->state->after_authentication = 1;
Darren Tuckerf7288d72009-06-21 18:12:20 +10002151}
2152
2153void *
markus@openbsd.org091c3022015-01-19 19:52:16 +00002154ssh_packet_get_input(struct ssh *ssh)
Darren Tuckerf7288d72009-06-21 18:12:20 +10002155{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002156 return (void *)ssh->state->input;
Darren Tuckerf7288d72009-06-21 18:12:20 +10002157}
2158
2159void *
markus@openbsd.org091c3022015-01-19 19:52:16 +00002160ssh_packet_get_output(struct ssh *ssh)
Darren Tuckerf7288d72009-06-21 18:12:20 +10002161{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002162 return (void *)ssh->state->output;
Darren Tuckerf7288d72009-06-21 18:12:20 +10002163}
2164
Damien Millerc31a0cd2014-05-15 14:37:39 +10002165/* Reset after_authentication and reset compression in post-auth privsep */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002166static int
2167ssh_packet_set_postauth(struct ssh *ssh)
Damien Millerc31a0cd2014-05-15 14:37:39 +10002168{
djm@openbsd.org0082fba2016-09-28 16:33:06 +00002169 int r;
Damien Millerc31a0cd2014-05-15 14:37:39 +10002170
2171 debug("%s: called", __func__);
2172 /* This was set in net child, but is not visible in user child */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002173 ssh->state->after_authentication = 1;
2174 ssh->state->rekeying = 0;
djm@openbsd.org0082fba2016-09-28 16:33:06 +00002175 if ((r = ssh_packet_enable_delayed_compress(ssh)) != 0)
2176 return r;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002177 return 0;
2178}
2179
2180/* Packet state (de-)serialization for privsep */
2181
2182/* turn kex into a blob for packet state serialization */
2183static int
2184kex_to_blob(struct sshbuf *m, struct kex *kex)
2185{
2186 int r;
2187
2188 if ((r = sshbuf_put_string(m, kex->session_id,
2189 kex->session_id_len)) != 0 ||
2190 (r = sshbuf_put_u32(m, kex->we_need)) != 0 ||
2191 (r = sshbuf_put_u32(m, kex->hostkey_type)) != 0 ||
2192 (r = sshbuf_put_u32(m, kex->kex_type)) != 0 ||
2193 (r = sshbuf_put_stringb(m, kex->my)) != 0 ||
2194 (r = sshbuf_put_stringb(m, kex->peer)) != 0 ||
2195 (r = sshbuf_put_u32(m, kex->flags)) != 0 ||
2196 (r = sshbuf_put_cstring(m, kex->client_version_string)) != 0 ||
2197 (r = sshbuf_put_cstring(m, kex->server_version_string)) != 0)
2198 return r;
2199 return 0;
2200}
2201
2202/* turn key exchange results into a blob for packet state serialization */
2203static int
2204newkeys_to_blob(struct sshbuf *m, struct ssh *ssh, int mode)
2205{
2206 struct sshbuf *b;
2207 struct sshcipher_ctx *cc;
2208 struct sshcomp *comp;
2209 struct sshenc *enc;
2210 struct sshmac *mac;
2211 struct newkeys *newkey;
2212 int r;
2213
2214 if ((newkey = ssh->state->newkeys[mode]) == NULL)
2215 return SSH_ERR_INTERNAL_ERROR;
2216 enc = &newkey->enc;
2217 mac = &newkey->mac;
2218 comp = &newkey->comp;
djm@openbsd.org4706c1d2016-08-03 05:41:57 +00002219 cc = (mode == MODE_OUT) ? ssh->state->send_context :
2220 ssh->state->receive_context;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002221 if ((r = cipher_get_keyiv(cc, enc->iv, enc->iv_len)) != 0)
2222 return r;
2223 if ((b = sshbuf_new()) == NULL)
2224 return SSH_ERR_ALLOC_FAIL;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002225 if ((r = sshbuf_put_cstring(b, enc->name)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +00002226 (r = sshbuf_put_u32(b, enc->enabled)) != 0 ||
2227 (r = sshbuf_put_u32(b, enc->block_size)) != 0 ||
2228 (r = sshbuf_put_string(b, enc->key, enc->key_len)) != 0 ||
2229 (r = sshbuf_put_string(b, enc->iv, enc->iv_len)) != 0)
2230 goto out;
2231 if (cipher_authlen(enc->cipher) == 0) {
2232 if ((r = sshbuf_put_cstring(b, mac->name)) != 0 ||
2233 (r = sshbuf_put_u32(b, mac->enabled)) != 0 ||
2234 (r = sshbuf_put_string(b, mac->key, mac->key_len)) != 0)
2235 goto out;
2236 }
2237 if ((r = sshbuf_put_u32(b, comp->type)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +00002238 (r = sshbuf_put_cstring(b, comp->name)) != 0)
2239 goto out;
2240 r = sshbuf_put_stringb(m, b);
2241 out:
mmcc@openbsd.org52d70782015-12-11 04:21:11 +00002242 sshbuf_free(b);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002243 return r;
2244}
2245
2246/* serialize packet state into a blob */
2247int
2248ssh_packet_get_state(struct ssh *ssh, struct sshbuf *m)
2249{
2250 struct session_state *state = ssh->state;
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002251 int r;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002252
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002253 if ((r = kex_to_blob(m, ssh->kex)) != 0 ||
2254 (r = newkeys_to_blob(m, ssh, MODE_OUT)) != 0 ||
2255 (r = newkeys_to_blob(m, ssh, MODE_IN)) != 0 ||
2256 (r = sshbuf_put_u64(m, state->rekey_limit)) != 0 ||
2257 (r = sshbuf_put_u32(m, state->rekey_interval)) != 0 ||
2258 (r = sshbuf_put_u32(m, state->p_send.seqnr)) != 0 ||
2259 (r = sshbuf_put_u64(m, state->p_send.blocks)) != 0 ||
2260 (r = sshbuf_put_u32(m, state->p_send.packets)) != 0 ||
2261 (r = sshbuf_put_u64(m, state->p_send.bytes)) != 0 ||
2262 (r = sshbuf_put_u32(m, state->p_read.seqnr)) != 0 ||
2263 (r = sshbuf_put_u64(m, state->p_read.blocks)) != 0 ||
2264 (r = sshbuf_put_u32(m, state->p_read.packets)) != 0 ||
djm@openbsd.org7461a5b2017-05-08 00:21:36 +00002265 (r = sshbuf_put_u64(m, state->p_read.bytes)) != 0 ||
2266 (r = sshbuf_put_stringb(m, state->input)) != 0 ||
2267 (r = sshbuf_put_stringb(m, state->output)) != 0)
djm@openbsd.org2e58a692017-05-08 06:03:39 +00002268 return r;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002269
markus@openbsd.org091c3022015-01-19 19:52:16 +00002270 return 0;
2271}
2272
2273/* restore key exchange results from blob for packet state de-serialization */
2274static int
2275newkeys_from_blob(struct sshbuf *m, struct ssh *ssh, int mode)
2276{
2277 struct sshbuf *b = NULL;
2278 struct sshcomp *comp;
2279 struct sshenc *enc;
2280 struct sshmac *mac;
2281 struct newkeys *newkey = NULL;
2282 size_t keylen, ivlen, maclen;
2283 int r;
2284
2285 if ((newkey = calloc(1, sizeof(*newkey))) == NULL) {
2286 r = SSH_ERR_ALLOC_FAIL;
2287 goto out;
2288 }
2289 if ((r = sshbuf_froms(m, &b)) != 0)
2290 goto out;
2291#ifdef DEBUG_PK
2292 sshbuf_dump(b, stderr);
2293#endif
2294 enc = &newkey->enc;
2295 mac = &newkey->mac;
2296 comp = &newkey->comp;
2297
2298 if ((r = sshbuf_get_cstring(b, &enc->name, NULL)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +00002299 (r = sshbuf_get_u32(b, (u_int *)&enc->enabled)) != 0 ||
2300 (r = sshbuf_get_u32(b, &enc->block_size)) != 0 ||
2301 (r = sshbuf_get_string(b, &enc->key, &keylen)) != 0 ||
2302 (r = sshbuf_get_string(b, &enc->iv, &ivlen)) != 0)
2303 goto out;
djm@openbsd.org33f86262017-06-24 06:38:11 +00002304 if ((enc->cipher = cipher_by_name(enc->name)) == NULL) {
2305 r = SSH_ERR_INVALID_FORMAT;
2306 goto out;
2307 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00002308 if (cipher_authlen(enc->cipher) == 0) {
2309 if ((r = sshbuf_get_cstring(b, &mac->name, NULL)) != 0)
2310 goto out;
2311 if ((r = mac_setup(mac, mac->name)) != 0)
2312 goto out;
2313 if ((r = sshbuf_get_u32(b, (u_int *)&mac->enabled)) != 0 ||
2314 (r = sshbuf_get_string(b, &mac->key, &maclen)) != 0)
2315 goto out;
2316 if (maclen > mac->key_len) {
2317 r = SSH_ERR_INVALID_FORMAT;
2318 goto out;
2319 }
2320 mac->key_len = maclen;
2321 }
2322 if ((r = sshbuf_get_u32(b, &comp->type)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +00002323 (r = sshbuf_get_cstring(b, &comp->name, NULL)) != 0)
2324 goto out;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002325 if (sshbuf_len(b) != 0) {
2326 r = SSH_ERR_INVALID_FORMAT;
2327 goto out;
2328 }
2329 enc->key_len = keylen;
2330 enc->iv_len = ivlen;
2331 ssh->kex->newkeys[mode] = newkey;
2332 newkey = NULL;
2333 r = 0;
2334 out:
mmcc@openbsd.orgd59ce082015-12-10 17:08:40 +00002335 free(newkey);
mmcc@openbsd.org52d70782015-12-11 04:21:11 +00002336 sshbuf_free(b);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002337 return r;
2338}
2339
2340/* restore kex from blob for packet state de-serialization */
2341static int
2342kex_from_blob(struct sshbuf *m, struct kex **kexp)
2343{
2344 struct kex *kex;
2345 int r;
2346
2347 if ((kex = calloc(1, sizeof(struct kex))) == NULL ||
2348 (kex->my = sshbuf_new()) == NULL ||
2349 (kex->peer = sshbuf_new()) == NULL) {
2350 r = SSH_ERR_ALLOC_FAIL;
2351 goto out;
2352 }
2353 if ((r = sshbuf_get_string(m, &kex->session_id, &kex->session_id_len)) != 0 ||
2354 (r = sshbuf_get_u32(m, &kex->we_need)) != 0 ||
2355 (r = sshbuf_get_u32(m, (u_int *)&kex->hostkey_type)) != 0 ||
2356 (r = sshbuf_get_u32(m, &kex->kex_type)) != 0 ||
2357 (r = sshbuf_get_stringb(m, kex->my)) != 0 ||
2358 (r = sshbuf_get_stringb(m, kex->peer)) != 0 ||
2359 (r = sshbuf_get_u32(m, &kex->flags)) != 0 ||
2360 (r = sshbuf_get_cstring(m, &kex->client_version_string, NULL)) != 0 ||
2361 (r = sshbuf_get_cstring(m, &kex->server_version_string, NULL)) != 0)
2362 goto out;
2363 kex->server = 1;
2364 kex->done = 1;
2365 r = 0;
2366 out:
2367 if (r != 0 || kexp == NULL) {
2368 if (kex != NULL) {
mmcc@openbsd.org52d70782015-12-11 04:21:11 +00002369 sshbuf_free(kex->my);
2370 sshbuf_free(kex->peer);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002371 free(kex);
2372 }
2373 if (kexp != NULL)
2374 *kexp = NULL;
2375 } else {
2376 *kexp = kex;
2377 }
2378 return r;
2379}
2380
2381/*
2382 * Restore packet state from content of blob 'm' (de-serialization).
2383 * Note that 'm' will be partially consumed on parsing or any other errors.
2384 */
2385int
2386ssh_packet_set_state(struct ssh *ssh, struct sshbuf *m)
2387{
2388 struct session_state *state = ssh->state;
djm@openbsd.orgacaf34f2017-05-07 23:12:57 +00002389 const u_char *input, *output;
2390 size_t ilen, olen;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002391 int r;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002392
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002393 if ((r = kex_from_blob(m, &ssh->kex)) != 0 ||
2394 (r = newkeys_from_blob(m, ssh, MODE_OUT)) != 0 ||
2395 (r = newkeys_from_blob(m, ssh, MODE_IN)) != 0 ||
2396 (r = sshbuf_get_u64(m, &state->rekey_limit)) != 0 ||
2397 (r = sshbuf_get_u32(m, &state->rekey_interval)) != 0 ||
2398 (r = sshbuf_get_u32(m, &state->p_send.seqnr)) != 0 ||
2399 (r = sshbuf_get_u64(m, &state->p_send.blocks)) != 0 ||
2400 (r = sshbuf_get_u32(m, &state->p_send.packets)) != 0 ||
2401 (r = sshbuf_get_u64(m, &state->p_send.bytes)) != 0 ||
2402 (r = sshbuf_get_u32(m, &state->p_read.seqnr)) != 0 ||
2403 (r = sshbuf_get_u64(m, &state->p_read.blocks)) != 0 ||
2404 (r = sshbuf_get_u32(m, &state->p_read.packets)) != 0 ||
2405 (r = sshbuf_get_u64(m, &state->p_read.bytes)) != 0)
2406 return r;
2407 /*
2408 * We set the time here so that in post-auth privsep slave we
2409 * count from the completion of the authentication.
2410 */
2411 state->rekey_time = monotime();
2412 /* XXX ssh_set_newkeys overrides p_read.packets? XXX */
2413 if ((r = ssh_set_newkeys(ssh, MODE_IN)) != 0 ||
2414 (r = ssh_set_newkeys(ssh, MODE_OUT)) != 0)
2415 return r;
2416
djm@openbsd.org0082fba2016-09-28 16:33:06 +00002417 if ((r = ssh_packet_set_postauth(ssh)) != 0)
markus@openbsd.org091c3022015-01-19 19:52:16 +00002418 return r;
2419
2420 sshbuf_reset(state->input);
2421 sshbuf_reset(state->output);
2422 if ((r = sshbuf_get_string_direct(m, &input, &ilen)) != 0 ||
2423 (r = sshbuf_get_string_direct(m, &output, &olen)) != 0 ||
2424 (r = sshbuf_put(state->input, input, ilen)) != 0 ||
2425 (r = sshbuf_put(state->output, output, olen)) != 0)
2426 return r;
2427
markus@openbsd.org091c3022015-01-19 19:52:16 +00002428 if (sshbuf_len(m))
2429 return SSH_ERR_INVALID_FORMAT;
2430 debug3("%s: done", __func__);
2431 return 0;
2432}
2433
2434/* NEW API */
2435
2436/* put data to the outgoing packet */
2437
2438int
2439sshpkt_put(struct ssh *ssh, const void *v, size_t len)
2440{
2441 return sshbuf_put(ssh->state->outgoing_packet, v, len);
2442}
2443
2444int
2445sshpkt_putb(struct ssh *ssh, const struct sshbuf *b)
2446{
2447 return sshbuf_putb(ssh->state->outgoing_packet, b);
2448}
2449
2450int
2451sshpkt_put_u8(struct ssh *ssh, u_char val)
2452{
2453 return sshbuf_put_u8(ssh->state->outgoing_packet, val);
2454}
2455
2456int
2457sshpkt_put_u32(struct ssh *ssh, u_int32_t val)
2458{
2459 return sshbuf_put_u32(ssh->state->outgoing_packet, val);
2460}
2461
2462int
2463sshpkt_put_u64(struct ssh *ssh, u_int64_t val)
2464{
2465 return sshbuf_put_u64(ssh->state->outgoing_packet, val);
2466}
2467
2468int
2469sshpkt_put_string(struct ssh *ssh, const void *v, size_t len)
2470{
2471 return sshbuf_put_string(ssh->state->outgoing_packet, v, len);
2472}
2473
2474int
2475sshpkt_put_cstring(struct ssh *ssh, const void *v)
2476{
2477 return sshbuf_put_cstring(ssh->state->outgoing_packet, v);
2478}
2479
2480int
2481sshpkt_put_stringb(struct ssh *ssh, const struct sshbuf *v)
2482{
2483 return sshbuf_put_stringb(ssh->state->outgoing_packet, v);
2484}
2485
djm@openbsd.org734226b2015-04-27 01:52:30 +00002486#ifdef WITH_OPENSSL
2487#ifdef OPENSSL_HAS_ECC
markus@openbsd.org091c3022015-01-19 19:52:16 +00002488int
2489sshpkt_put_ec(struct ssh *ssh, const EC_POINT *v, const EC_GROUP *g)
2490{
2491 return sshbuf_put_ec(ssh->state->outgoing_packet, v, g);
2492}
djm@openbsd.org734226b2015-04-27 01:52:30 +00002493#endif /* OPENSSL_HAS_ECC */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002494
markus@openbsd.org091c3022015-01-19 19:52:16 +00002495
2496int
2497sshpkt_put_bignum2(struct ssh *ssh, const BIGNUM *v)
2498{
2499 return sshbuf_put_bignum2(ssh->state->outgoing_packet, v);
2500}
Damien Miller773dda22015-01-30 23:10:17 +11002501#endif /* WITH_OPENSSL */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002502
2503/* fetch data from the incoming packet */
2504
2505int
2506sshpkt_get(struct ssh *ssh, void *valp, size_t len)
2507{
2508 return sshbuf_get(ssh->state->incoming_packet, valp, len);
2509}
2510
2511int
2512sshpkt_get_u8(struct ssh *ssh, u_char *valp)
2513{
2514 return sshbuf_get_u8(ssh->state->incoming_packet, valp);
2515}
2516
2517int
2518sshpkt_get_u32(struct ssh *ssh, u_int32_t *valp)
2519{
2520 return sshbuf_get_u32(ssh->state->incoming_packet, valp);
2521}
2522
2523int
2524sshpkt_get_u64(struct ssh *ssh, u_int64_t *valp)
2525{
2526 return sshbuf_get_u64(ssh->state->incoming_packet, valp);
2527}
2528
2529int
2530sshpkt_get_string(struct ssh *ssh, u_char **valp, size_t *lenp)
2531{
2532 return sshbuf_get_string(ssh->state->incoming_packet, valp, lenp);
2533}
2534
2535int
2536sshpkt_get_string_direct(struct ssh *ssh, const u_char **valp, size_t *lenp)
2537{
2538 return sshbuf_get_string_direct(ssh->state->incoming_packet, valp, lenp);
2539}
2540
2541int
2542sshpkt_get_cstring(struct ssh *ssh, char **valp, size_t *lenp)
2543{
2544 return sshbuf_get_cstring(ssh->state->incoming_packet, valp, lenp);
2545}
2546
djm@openbsd.org734226b2015-04-27 01:52:30 +00002547#ifdef WITH_OPENSSL
2548#ifdef OPENSSL_HAS_ECC
markus@openbsd.org091c3022015-01-19 19:52:16 +00002549int
2550sshpkt_get_ec(struct ssh *ssh, EC_POINT *v, const EC_GROUP *g)
2551{
2552 return sshbuf_get_ec(ssh->state->incoming_packet, v, g);
2553}
djm@openbsd.org734226b2015-04-27 01:52:30 +00002554#endif /* OPENSSL_HAS_ECC */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002555
markus@openbsd.org091c3022015-01-19 19:52:16 +00002556
2557int
2558sshpkt_get_bignum2(struct ssh *ssh, BIGNUM *v)
2559{
2560 return sshbuf_get_bignum2(ssh->state->incoming_packet, v);
2561}
Damien Miller773dda22015-01-30 23:10:17 +11002562#endif /* WITH_OPENSSL */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002563
2564int
2565sshpkt_get_end(struct ssh *ssh)
2566{
2567 if (sshbuf_len(ssh->state->incoming_packet) > 0)
2568 return SSH_ERR_UNEXPECTED_TRAILING_DATA;
2569 return 0;
2570}
2571
2572const u_char *
2573sshpkt_ptr(struct ssh *ssh, size_t *lenp)
2574{
2575 if (lenp != NULL)
2576 *lenp = sshbuf_len(ssh->state->incoming_packet);
2577 return sshbuf_ptr(ssh->state->incoming_packet);
2578}
2579
2580/* start a new packet */
2581
2582int
2583sshpkt_start(struct ssh *ssh, u_char type)
2584{
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002585 u_char buf[6]; /* u32 packet length, u8 pad len, u8 type */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002586
2587 DBG(debug("packet_start[%d]", type));
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002588 memset(buf, 0, sizeof(buf));
2589 buf[sizeof(buf) - 1] = type;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002590 sshbuf_reset(ssh->state->outgoing_packet);
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002591 return sshbuf_put(ssh->state->outgoing_packet, buf, sizeof(buf));
markus@openbsd.org091c3022015-01-19 19:52:16 +00002592}
2593
markus@openbsd.org8d057842016-09-30 09:19:13 +00002594static int
2595ssh_packet_send_mux(struct ssh *ssh)
2596{
2597 struct session_state *state = ssh->state;
2598 u_char type, *cp;
2599 size_t len;
2600 int r;
2601
2602 if (ssh->kex)
2603 return SSH_ERR_INTERNAL_ERROR;
2604 len = sshbuf_len(state->outgoing_packet);
2605 if (len < 6)
2606 return SSH_ERR_INTERNAL_ERROR;
2607 cp = sshbuf_mutable_ptr(state->outgoing_packet);
2608 type = cp[5];
2609 if (ssh_packet_log_type(type))
2610 debug3("%s: type %u", __func__, type);
2611 /* drop everything, but the connection protocol */
2612 if (type >= SSH2_MSG_CONNECTION_MIN &&
2613 type <= SSH2_MSG_CONNECTION_MAX) {
2614 POKE_U32(cp, len - 4);
2615 if ((r = sshbuf_putb(state->output,
2616 state->outgoing_packet)) != 0)
2617 return r;
2618 /* sshbuf_dump(state->output, stderr); */
2619 }
2620 sshbuf_reset(state->outgoing_packet);
2621 return 0;
2622}
2623
markus@openbsd.org091c3022015-01-19 19:52:16 +00002624/* send it */
2625
2626int
2627sshpkt_send(struct ssh *ssh)
2628{
markus@openbsd.org8d057842016-09-30 09:19:13 +00002629 if (ssh->state && ssh->state->mux)
2630 return ssh_packet_send_mux(ssh);
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002631 return ssh_packet_send2(ssh);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002632}
2633
2634int
2635sshpkt_disconnect(struct ssh *ssh, const char *fmt,...)
2636{
2637 char buf[1024];
2638 va_list args;
2639 int r;
2640
2641 va_start(args, fmt);
2642 vsnprintf(buf, sizeof(buf), fmt, args);
2643 va_end(args);
2644
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002645 if ((r = sshpkt_start(ssh, SSH2_MSG_DISCONNECT)) != 0 ||
2646 (r = sshpkt_put_u32(ssh, SSH2_DISCONNECT_PROTOCOL_ERROR)) != 0 ||
2647 (r = sshpkt_put_cstring(ssh, buf)) != 0 ||
2648 (r = sshpkt_put_cstring(ssh, "")) != 0 ||
2649 (r = sshpkt_send(ssh)) != 0)
2650 return r;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002651 return 0;
2652}
2653
2654/* roundup current message to pad bytes */
2655int
2656sshpkt_add_padding(struct ssh *ssh, u_char pad)
2657{
2658 ssh->state->extra_pad = pad;
2659 return 0;
Damien Millerc31a0cd2014-05-15 14:37:39 +10002660}