blob: 862aeb052d596bcb5f328fe8f888153851239ce5 [file] [log] [blame]
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001/* $OpenBSD: packet.c,v 1.257 2017/05/31 08:09:45 markus 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) {
573 shutdown(state->connection_out, SHUT_RDWR);
574 close(state->connection_out);
575 } else {
576 close(state->connection_in);
577 close(state->connection_out);
578 }
Damien Miller95def091999-11-25 00:26:21 +1100579 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000580 sshbuf_free(state->input);
581 sshbuf_free(state->output);
582 sshbuf_free(state->outgoing_packet);
583 sshbuf_free(state->incoming_packet);
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000584 for (mode = 0; mode < MODE_MAX; mode++) {
585 kex_free_newkeys(state->newkeys[mode]); /* current keys */
586 state->newkeys[mode] = NULL;
587 ssh_clear_newkeys(ssh, mode); /* next keys */
588 }
589 /* comression state is in shared mem, so we can only release it once */
590 if (do_close && state->compression_buffer) {
markus@openbsd.org091c3022015-01-19 19:52:16 +0000591 sshbuf_free(state->compression_buffer);
592 if (state->compression_out_started) {
593 z_streamp stream = &state->compression_out_stream;
594 debug("compress outgoing: "
595 "raw data %llu, compressed %llu, factor %.2f",
596 (unsigned long long)stream->total_in,
597 (unsigned long long)stream->total_out,
598 stream->total_in == 0 ? 0.0 :
599 (double) stream->total_out / stream->total_in);
600 if (state->compression_out_failures == 0)
601 deflateEnd(stream);
602 }
603 if (state->compression_in_started) {
604 z_streamp stream = &state->compression_out_stream;
605 debug("compress incoming: "
606 "raw data %llu, compressed %llu, factor %.2f",
607 (unsigned long long)stream->total_out,
608 (unsigned long long)stream->total_in,
609 stream->total_out == 0 ? 0.0 :
610 (double) stream->total_in / stream->total_out);
611 if (state->compression_in_failures == 0)
612 inflateEnd(stream);
613 }
Damien Miller95def091999-11-25 00:26:21 +1100614 }
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000615 cipher_free(state->send_context);
616 cipher_free(state->receive_context);
617 state->send_context = state->receive_context = NULL;
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000618 if (do_close) {
619 free(ssh->remote_ipaddr);
620 ssh->remote_ipaddr = NULL;
621 free(ssh->state);
622 ssh->state = NULL;
623 }
624}
625
626void
627ssh_packet_close(struct ssh *ssh)
628{
629 ssh_packet_close_internal(ssh, 1);
630}
631
632void
633ssh_packet_clear_keys(struct ssh *ssh)
634{
635 ssh_packet_close_internal(ssh, 0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000636}
637
638/* Sets remote side protocol flags. */
639
640void
markus@openbsd.org091c3022015-01-19 19:52:16 +0000641ssh_packet_set_protocol_flags(struct ssh *ssh, u_int protocol_flags)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000642{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000643 ssh->state->remote_protocol_flags = protocol_flags;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000644}
645
646/* Returns the remote protocol flags set earlier by the above function. */
647
Ben Lindstrom46c16222000-12-22 01:43:59 +0000648u_int
markus@openbsd.org091c3022015-01-19 19:52:16 +0000649ssh_packet_get_protocol_flags(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000650{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000651 return ssh->state->remote_protocol_flags;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000652}
653
Damien Miller5428f641999-11-25 11:54:57 +1100654/*
655 * Starts packet compression from the next packet on in both directions.
656 * Level is compression level 1 (fastest) - 9 (slow, best) as in gzip.
657 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000658
markus@openbsd.org091c3022015-01-19 19:52:16 +0000659static int
660ssh_packet_init_compression(struct ssh *ssh)
Ben Lindstromfb50cdf2001-04-05 23:20:46 +0000661{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000662 if (!ssh->state->compression_buffer &&
663 ((ssh->state->compression_buffer = sshbuf_new()) == NULL))
664 return SSH_ERR_ALLOC_FAIL;
665 return 0;
666}
667
668static int
669start_compression_out(struct ssh *ssh, int level)
670{
671 if (level < 1 || level > 9)
672 return SSH_ERR_INVALID_ARGUMENT;
673 debug("Enabling compression at level %d.", level);
674 if (ssh->state->compression_out_started == 1)
675 deflateEnd(&ssh->state->compression_out_stream);
676 switch (deflateInit(&ssh->state->compression_out_stream, level)) {
677 case Z_OK:
678 ssh->state->compression_out_started = 1;
679 break;
680 case Z_MEM_ERROR:
681 return SSH_ERR_ALLOC_FAIL;
682 default:
683 return SSH_ERR_INTERNAL_ERROR;
684 }
685 return 0;
686}
687
688static int
689start_compression_in(struct ssh *ssh)
690{
691 if (ssh->state->compression_in_started == 1)
692 inflateEnd(&ssh->state->compression_in_stream);
693 switch (inflateInit(&ssh->state->compression_in_stream)) {
694 case Z_OK:
695 ssh->state->compression_in_started = 1;
696 break;
697 case Z_MEM_ERROR:
698 return SSH_ERR_ALLOC_FAIL;
699 default:
700 return SSH_ERR_INTERNAL_ERROR;
701 }
702 return 0;
703}
704
705int
706ssh_packet_start_compression(struct ssh *ssh, int level)
707{
708 int r;
709
djm@openbsd.org97f4d302017-04-30 23:13:25 +0000710 if (ssh->state->packet_compression)
markus@openbsd.org091c3022015-01-19 19:52:16 +0000711 return SSH_ERR_INTERNAL_ERROR;
712 ssh->state->packet_compression = 1;
713 if ((r = ssh_packet_init_compression(ssh)) != 0 ||
714 (r = start_compression_in(ssh)) != 0 ||
715 (r = start_compression_out(ssh, level)) != 0)
716 return r;
717 return 0;
718}
719
720/* XXX remove need for separate compression buffer */
721static int
722compress_buffer(struct ssh *ssh, struct sshbuf *in, struct sshbuf *out)
723{
724 u_char buf[4096];
725 int r, status;
726
727 if (ssh->state->compression_out_started != 1)
728 return SSH_ERR_INTERNAL_ERROR;
729
730 /* This case is not handled below. */
731 if (sshbuf_len(in) == 0)
732 return 0;
733
734 /* Input is the contents of the input buffer. */
735 if ((ssh->state->compression_out_stream.next_in =
736 sshbuf_mutable_ptr(in)) == NULL)
737 return SSH_ERR_INTERNAL_ERROR;
738 ssh->state->compression_out_stream.avail_in = sshbuf_len(in);
739
740 /* Loop compressing until deflate() returns with avail_out != 0. */
741 do {
742 /* Set up fixed-size output buffer. */
743 ssh->state->compression_out_stream.next_out = buf;
744 ssh->state->compression_out_stream.avail_out = sizeof(buf);
745
746 /* Compress as much data into the buffer as possible. */
747 status = deflate(&ssh->state->compression_out_stream,
748 Z_PARTIAL_FLUSH);
749 switch (status) {
750 case Z_MEM_ERROR:
751 return SSH_ERR_ALLOC_FAIL;
752 case Z_OK:
753 /* Append compressed data to output_buffer. */
754 if ((r = sshbuf_put(out, buf, sizeof(buf) -
755 ssh->state->compression_out_stream.avail_out)) != 0)
756 return r;
757 break;
758 case Z_STREAM_ERROR:
759 default:
760 ssh->state->compression_out_failures++;
761 return SSH_ERR_INVALID_FORMAT;
762 }
763 } while (ssh->state->compression_out_stream.avail_out == 0);
764 return 0;
765}
766
767static int
768uncompress_buffer(struct ssh *ssh, struct sshbuf *in, struct sshbuf *out)
769{
770 u_char buf[4096];
771 int r, status;
772
773 if (ssh->state->compression_in_started != 1)
774 return SSH_ERR_INTERNAL_ERROR;
775
776 if ((ssh->state->compression_in_stream.next_in =
777 sshbuf_mutable_ptr(in)) == NULL)
778 return SSH_ERR_INTERNAL_ERROR;
779 ssh->state->compression_in_stream.avail_in = sshbuf_len(in);
780
781 for (;;) {
782 /* Set up fixed-size output buffer. */
783 ssh->state->compression_in_stream.next_out = buf;
784 ssh->state->compression_in_stream.avail_out = sizeof(buf);
785
786 status = inflate(&ssh->state->compression_in_stream,
787 Z_PARTIAL_FLUSH);
788 switch (status) {
789 case Z_OK:
790 if ((r = sshbuf_put(out, buf, sizeof(buf) -
791 ssh->state->compression_in_stream.avail_out)) != 0)
792 return r;
793 break;
794 case Z_BUF_ERROR:
795 /*
796 * Comments in zlib.h say that we should keep calling
797 * inflate() until we get an error. This appears to
798 * be the error that we get.
799 */
800 return 0;
801 case Z_DATA_ERROR:
802 return SSH_ERR_INVALID_FORMAT;
803 case Z_MEM_ERROR:
804 return SSH_ERR_ALLOC_FAIL;
805 case Z_STREAM_ERROR:
806 default:
807 ssh->state->compression_in_failures++;
808 return SSH_ERR_INTERNAL_ERROR;
809 }
810 }
811 /* NOTREACHED */
812}
813
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000814void
815ssh_clear_newkeys(struct ssh *ssh, int mode)
816{
817 if (ssh->kex && ssh->kex->newkeys) {
818 kex_free_newkeys(ssh->kex->newkeys[mode]);
819 ssh->kex->newkeys[mode] = NULL;
820 }
821}
822
markus@openbsd.org091c3022015-01-19 19:52:16 +0000823int
824ssh_set_newkeys(struct ssh *ssh, int mode)
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000825{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000826 struct session_state *state = ssh->state;
827 struct sshenc *enc;
828 struct sshmac *mac;
829 struct sshcomp *comp;
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000830 struct sshcipher_ctx **ccp;
markus@openbsd.org06ce56b2016-09-06 09:22:56 +0000831 struct packet_state *ps;
Damien Millera5539d22003-04-09 20:50:06 +1000832 u_int64_t *max_blocks;
markus@openbsd.org06ce56b2016-09-06 09:22:56 +0000833 const char *wmsg, *dir;
Damien Miller86687062014-07-02 15:28:02 +1000834 int r, crypt_type;
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000835
Ben Lindstrom064496f2002-12-23 02:04:22 +0000836 debug2("set_newkeys: mode %d", mode);
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000837
Damien Miller963f6b22002-02-19 15:21:23 +1100838 if (mode == MODE_OUT) {
markus@openbsd.org06ce56b2016-09-06 09:22:56 +0000839 dir = "output";
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000840 ccp = &state->send_context;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000841 crypt_type = CIPHER_ENCRYPT;
markus@openbsd.org06ce56b2016-09-06 09:22:56 +0000842 ps = &state->p_send;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000843 max_blocks = &state->max_blocks_out;
Damien Miller963f6b22002-02-19 15:21:23 +1100844 } else {
markus@openbsd.org06ce56b2016-09-06 09:22:56 +0000845 dir = "input";
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000846 ccp = &state->receive_context;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000847 crypt_type = CIPHER_DECRYPT;
markus@openbsd.org06ce56b2016-09-06 09:22:56 +0000848 ps = &state->p_read;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000849 max_blocks = &state->max_blocks_in;
Damien Miller963f6b22002-02-19 15:21:23 +1100850 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000851 if (state->newkeys[mode] != NULL) {
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000852 debug("set_newkeys: rekeying, input %llu bytes %llu blocks, "
853 "output %llu bytes %llu blocks",
854 (unsigned long long)state->p_read.bytes,
855 (unsigned long long)state->p_read.blocks,
856 (unsigned long long)state->p_send.bytes,
857 (unsigned long long)state->p_send.blocks);
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000858 cipher_free(*ccp);
859 *ccp = NULL;
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +0000860 kex_free_newkeys(state->newkeys[mode]);
861 state->newkeys[mode] = NULL;
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000862 }
markus@openbsd.org06ce56b2016-09-06 09:22:56 +0000863 /* note that both bytes and the seqnr are not reset */
864 ps->packets = ps->blocks = 0;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000865 /* move newkeys from kex to state */
866 if ((state->newkeys[mode] = ssh->kex->newkeys[mode]) == NULL)
867 return SSH_ERR_INTERNAL_ERROR;
868 ssh->kex->newkeys[mode] = NULL;
869 enc = &state->newkeys[mode]->enc;
870 mac = &state->newkeys[mode]->mac;
871 comp = &state->newkeys[mode]->comp;
872 if (cipher_authlen(enc->cipher) == 0) {
873 if ((r = mac_init(mac)) != 0)
874 return r;
875 }
876 mac->enabled = 1;
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000877 DBG(debug("cipher_init_context: %d", mode));
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000878 if ((r = cipher_init(ccp, enc->cipher, enc->key, enc->key_len,
Damien Miller86687062014-07-02 15:28:02 +1000879 enc->iv, enc->iv_len, crypt_type)) != 0)
markus@openbsd.org091c3022015-01-19 19:52:16 +0000880 return r;
881 if (!state->cipher_warning_done &&
djm@openbsd.org4706c1d2016-08-03 05:41:57 +0000882 (wmsg = cipher_warning_message(*ccp)) != NULL) {
markus@openbsd.org091c3022015-01-19 19:52:16 +0000883 error("Warning: %s", wmsg);
884 state->cipher_warning_done = 1;
885 }
Ben Lindstromf6027d32002-03-22 01:42:04 +0000886 /* Deleting the keys does not gain extra security */
Damien Millera5103f42014-02-04 11:20:14 +1100887 /* explicit_bzero(enc->iv, enc->block_size);
888 explicit_bzero(enc->key, enc->key_len);
889 explicit_bzero(mac->key, mac->key_len); */
djm@openbsd.orgb7689152016-09-28 21:44:52 +0000890 if ((comp->type == COMP_ZLIB ||
891 (comp->type == COMP_DELAYED &&
892 state->after_authentication)) && comp->enabled == 0) {
markus@openbsd.org091c3022015-01-19 19:52:16 +0000893 if ((r = ssh_packet_init_compression(ssh)) < 0)
894 return r;
895 if (mode == MODE_OUT) {
896 if ((r = start_compression_out(ssh, 6)) != 0)
897 return r;
898 } else {
899 if ((r = start_compression_in(ssh)) != 0)
900 return r;
901 }
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000902 comp->enabled = 1;
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000903 }
Darren Tucker81a0b372003-07-14 17:31:06 +1000904 /*
905 * The 2^(blocksize*2) limit is too expensive for 3DES,
djm@openbsd.orgacaf34f2017-05-07 23:12:57 +0000906 * so enforce a 1GB limit for small blocksizes.
Darren Tucker81a0b372003-07-14 17:31:06 +1000907 */
908 if (enc->block_size >= 16)
909 *max_blocks = (u_int64_t)1 << (enc->block_size*2);
910 else
911 *max_blocks = ((u_int64_t)1 << 30) / enc->block_size;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000912 if (state->rekey_limit)
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +0000913 *max_blocks = MINIMUM(*max_blocks,
markus@openbsd.org091c3022015-01-19 19:52:16 +0000914 state->rekey_limit / enc->block_size);
djm@openbsd.org696d1262016-02-04 23:43:48 +0000915 debug("rekey after %llu blocks", (unsigned long long)*max_blocks);
markus@openbsd.org091c3022015-01-19 19:52:16 +0000916 return 0;
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000917}
918
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000919#define MAX_PACKETS (1U<<31)
920static int
921ssh_packet_need_rekeying(struct ssh *ssh, u_int outbound_packet_len)
922{
923 struct session_state *state = ssh->state;
924 u_int32_t out_blocks;
925
926 /* XXX client can't cope with rekeying pre-auth */
927 if (!state->after_authentication)
928 return 0;
929
930 /* Haven't keyed yet or KEX in progress. */
931 if (ssh->kex == NULL || ssh_packet_is_rekeying(ssh))
932 return 0;
933
934 /* Peer can't rekey */
935 if (ssh->compat & SSH_BUG_NOREKEY)
936 return 0;
937
938 /*
939 * Permit one packet in or out per rekey - this allows us to
940 * make progress when rekey limits are very small.
941 */
942 if (state->p_send.packets == 0 && state->p_read.packets == 0)
943 return 0;
944
945 /* Time-based rekeying */
946 if (state->rekey_interval != 0 &&
dtucker@openbsd.orgc998bf02017-02-03 02:56:00 +0000947 (int64_t)state->rekey_time + state->rekey_interval <= monotime())
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000948 return 1;
949
950 /* Always rekey when MAX_PACKETS sent in either direction */
951 if (state->p_send.packets > MAX_PACKETS ||
952 state->p_read.packets > MAX_PACKETS)
953 return 1;
954
955 /* Rekey after (cipher-specific) maxiumum blocks */
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +0000956 out_blocks = ROUNDUP(outbound_packet_len,
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +0000957 state->newkeys[MODE_OUT]->enc.block_size);
958 return (state->max_blocks_out &&
959 (state->p_send.blocks + out_blocks > state->max_blocks_out)) ||
960 (state->max_blocks_in &&
961 (state->p_read.blocks > state->max_blocks_in));
962}
963
Damien Miller5428f641999-11-25 11:54:57 +1100964/*
Damien Miller9786e6e2005-07-26 21:54:56 +1000965 * Delayed compression for SSH2 is enabled after authentication:
Darren Tuckerf676c572006-08-05 18:51:08 +1000966 * This happens on the server side after a SSH2_MSG_USERAUTH_SUCCESS is sent,
Damien Miller9786e6e2005-07-26 21:54:56 +1000967 * and on the client side after a SSH2_MSG_USERAUTH_SUCCESS is received.
968 */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000969static int
970ssh_packet_enable_delayed_compress(struct ssh *ssh)
Damien Miller9786e6e2005-07-26 21:54:56 +1000971{
markus@openbsd.org091c3022015-01-19 19:52:16 +0000972 struct session_state *state = ssh->state;
973 struct sshcomp *comp = NULL;
974 int r, mode;
Damien Miller9786e6e2005-07-26 21:54:56 +1000975
976 /*
977 * Remember that we are past the authentication step, so rekeying
978 * with COMP_DELAYED will turn on compression immediately.
979 */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000980 state->after_authentication = 1;
Damien Miller9786e6e2005-07-26 21:54:56 +1000981 for (mode = 0; mode < MODE_MAX; mode++) {
Darren Tucker4aa665b2006-09-21 13:00:25 +1000982 /* protocol error: USERAUTH_SUCCESS received before NEWKEYS */
markus@openbsd.org091c3022015-01-19 19:52:16 +0000983 if (state->newkeys[mode] == NULL)
Darren Tucker4aa665b2006-09-21 13:00:25 +1000984 continue;
markus@openbsd.org091c3022015-01-19 19:52:16 +0000985 comp = &state->newkeys[mode]->comp;
Damien Miller9786e6e2005-07-26 21:54:56 +1000986 if (comp && !comp->enabled && comp->type == COMP_DELAYED) {
markus@openbsd.org091c3022015-01-19 19:52:16 +0000987 if ((r = ssh_packet_init_compression(ssh)) != 0)
988 return r;
989 if (mode == MODE_OUT) {
990 if ((r = start_compression_out(ssh, 6)) != 0)
991 return r;
992 } else {
993 if ((r = start_compression_in(ssh)) != 0)
994 return r;
995 }
Damien Miller9786e6e2005-07-26 21:54:56 +1000996 comp->enabled = 1;
997 }
998 }
markus@openbsd.org091c3022015-01-19 19:52:16 +0000999 return 0;
Damien Miller9786e6e2005-07-26 21:54:56 +10001000}
1001
djm@openbsd.org28136472016-01-29 05:46:01 +00001002/* Used to mute debug logging for noisy packet types */
markus@openbsd.org8d057842016-09-30 09:19:13 +00001003int
djm@openbsd.org28136472016-01-29 05:46:01 +00001004ssh_packet_log_type(u_char type)
1005{
1006 switch (type) {
1007 case SSH2_MSG_CHANNEL_DATA:
1008 case SSH2_MSG_CHANNEL_EXTENDED_DATA:
1009 case SSH2_MSG_CHANNEL_WINDOW_ADJUST:
1010 return 0;
1011 default:
1012 return 1;
1013 }
1014}
1015
Damien Miller9786e6e2005-07-26 21:54:56 +10001016/*
Damien Miller33b13562000-04-04 14:38:59 +10001017 * Finalize packet in SSH2 format (compress, mac, encrypt, enqueue)
1018 */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001019int
1020ssh_packet_send2_wrapped(struct ssh *ssh)
Damien Miller33b13562000-04-04 14:38:59 +10001021{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001022 struct session_state *state = ssh->state;
markus@openbsd.org128343b2015-01-13 19:31:40 +00001023 u_char type, *cp, macbuf[SSH_DIGEST_MAX_LENGTH];
djm@openbsd.orgeb999a42016-07-18 06:08:01 +00001024 u_char tmp, padlen, pad = 0;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001025 u_int authlen = 0, aadlen = 0;
1026 u_int len;
1027 struct sshenc *enc = NULL;
1028 struct sshmac *mac = NULL;
1029 struct sshcomp *comp = NULL;
1030 int r, block_size;
Damien Miller33b13562000-04-04 14:38:59 +10001031
markus@openbsd.org091c3022015-01-19 19:52:16 +00001032 if (state->newkeys[MODE_OUT] != NULL) {
1033 enc = &state->newkeys[MODE_OUT]->enc;
1034 mac = &state->newkeys[MODE_OUT]->mac;
1035 comp = &state->newkeys[MODE_OUT]->comp;
Damien Miller1d75abf2013-01-09 16:12:19 +11001036 /* disable mac for authenticated encryption */
1037 if ((authlen = cipher_authlen(enc->cipher)) != 0)
1038 mac = NULL;
Damien Miller33b13562000-04-04 14:38:59 +10001039 }
Damien Miller963f6b22002-02-19 15:21:23 +11001040 block_size = enc ? enc->block_size : 8;
Damien Miller1d75abf2013-01-09 16:12:19 +11001041 aadlen = (mac && mac->enabled && mac->etm) || authlen ? 4 : 0;
Damien Miller33b13562000-04-04 14:38:59 +10001042
markus@openbsd.org091c3022015-01-19 19:52:16 +00001043 type = (sshbuf_ptr(state->outgoing_packet))[5];
djm@openbsd.org28136472016-01-29 05:46:01 +00001044 if (ssh_packet_log_type(type))
1045 debug3("send packet: type %u", type);
Damien Miller33b13562000-04-04 14:38:59 +10001046#ifdef PACKET_DEBUG
1047 fprintf(stderr, "plain: ");
markus@openbsd.org091c3022015-01-19 19:52:16 +00001048 sshbuf_dump(state->outgoing_packet, stderr);
Damien Miller33b13562000-04-04 14:38:59 +10001049#endif
1050
1051 if (comp && comp->enabled) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001052 len = sshbuf_len(state->outgoing_packet);
Damien Miller33b13562000-04-04 14:38:59 +10001053 /* skip header, compress only payload */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001054 if ((r = sshbuf_consume(state->outgoing_packet, 5)) != 0)
1055 goto out;
1056 sshbuf_reset(state->compression_buffer);
1057 if ((r = compress_buffer(ssh, state->outgoing_packet,
1058 state->compression_buffer)) != 0)
1059 goto out;
1060 sshbuf_reset(state->outgoing_packet);
1061 if ((r = sshbuf_put(state->outgoing_packet,
1062 "\0\0\0\0\0", 5)) != 0 ||
1063 (r = sshbuf_putb(state->outgoing_packet,
1064 state->compression_buffer)) != 0)
1065 goto out;
1066 DBG(debug("compression: raw %d compressed %zd", len,
1067 sshbuf_len(state->outgoing_packet)));
Damien Miller33b13562000-04-04 14:38:59 +10001068 }
1069
1070 /* sizeof (packet_len + pad_len + payload) */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001071 len = sshbuf_len(state->outgoing_packet);
Damien Miller33b13562000-04-04 14:38:59 +10001072
1073 /*
1074 * calc size of padding, alloc space, get random data,
1075 * minimum padding is 4 bytes
1076 */
Damien Milleraf43a7a2012-12-12 10:46:31 +11001077 len -= aadlen; /* packet length is not encrypted for EtM modes */
Damien Miller33b13562000-04-04 14:38:59 +10001078 padlen = block_size - (len % block_size);
1079 if (padlen < 4)
1080 padlen += block_size;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001081 if (state->extra_pad) {
djm@openbsd.orgeb999a42016-07-18 06:08:01 +00001082 tmp = state->extra_pad;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001083 state->extra_pad =
deraadt@openbsd.org9136ec12016-09-12 01:22:38 +00001084 ROUNDUP(state->extra_pad, block_size);
djm@openbsd.orgeb999a42016-07-18 06:08:01 +00001085 /* check if roundup overflowed */
1086 if (state->extra_pad < tmp)
1087 return SSH_ERR_INVALID_ARGUMENT;
1088 tmp = (len + padlen) % state->extra_pad;
1089 /* Check whether pad calculation below will underflow */
1090 if (tmp > state->extra_pad)
1091 return SSH_ERR_INVALID_ARGUMENT;
1092 pad = state->extra_pad - tmp;
Damien Miller2a328432014-04-20 13:24:01 +10001093 DBG(debug3("%s: adding %d (len %d padlen %d extra_pad %d)",
markus@openbsd.org091c3022015-01-19 19:52:16 +00001094 __func__, pad, len, padlen, state->extra_pad));
djm@openbsd.orgeb999a42016-07-18 06:08:01 +00001095 tmp = padlen;
Damien Miller9f643902001-11-12 11:02:52 +11001096 padlen += pad;
djm@openbsd.orgeb999a42016-07-18 06:08:01 +00001097 /* Check whether padlen calculation overflowed */
1098 if (padlen < tmp)
1099 return SSH_ERR_INVALID_ARGUMENT; /* overflow */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001100 state->extra_pad = 0;
Damien Miller9f643902001-11-12 11:02:52 +11001101 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001102 if ((r = sshbuf_reserve(state->outgoing_packet, padlen, &cp)) != 0)
1103 goto out;
djm@openbsd.org4706c1d2016-08-03 05:41:57 +00001104 if (enc && !cipher_ctx_is_plaintext(state->send_context)) {
Damien Millere247cc42000-05-07 12:03:14 +10001105 /* random padding */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001106 arc4random_buf(cp, padlen);
Damien Millere247cc42000-05-07 12:03:14 +10001107 } else {
1108 /* clear padding */
Damien Millera5103f42014-02-04 11:20:14 +11001109 explicit_bzero(cp, padlen);
Damien Miller33b13562000-04-04 14:38:59 +10001110 }
Damien Milleraf43a7a2012-12-12 10:46:31 +11001111 /* sizeof (packet_len + pad_len + payload + padding) */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001112 len = sshbuf_len(state->outgoing_packet);
1113 cp = sshbuf_mutable_ptr(state->outgoing_packet);
1114 if (cp == NULL) {
1115 r = SSH_ERR_INTERNAL_ERROR;
1116 goto out;
1117 }
Damien Milleraf43a7a2012-12-12 10:46:31 +11001118 /* packet_length includes payload, padding and padding length field */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001119 POKE_U32(cp, len - 4);
Ben Lindstrom4a7714a2002-02-26 18:04:38 +00001120 cp[4] = padlen;
Damien Milleraf43a7a2012-12-12 10:46:31 +11001121 DBG(debug("send: len %d (includes padlen %d, aadlen %d)",
1122 len, padlen, aadlen));
Damien Miller33b13562000-04-04 14:38:59 +10001123
1124 /* compute MAC over seqnr and packet(length fields, payload, padding) */
Damien Milleraf43a7a2012-12-12 10:46:31 +11001125 if (mac && mac->enabled && !mac->etm) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001126 if ((r = mac_compute(mac, state->p_send.seqnr,
1127 sshbuf_ptr(state->outgoing_packet), len,
markus@openbsd.org128343b2015-01-13 19:31:40 +00001128 macbuf, sizeof(macbuf))) != 0)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001129 goto out;
1130 DBG(debug("done calc MAC out #%d", state->p_send.seqnr));
Damien Miller33b13562000-04-04 14:38:59 +10001131 }
1132 /* encrypt packet and append to output buffer. */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001133 if ((r = sshbuf_reserve(state->output,
1134 sshbuf_len(state->outgoing_packet) + authlen, &cp)) != 0)
1135 goto out;
djm@openbsd.org4706c1d2016-08-03 05:41:57 +00001136 if ((r = cipher_crypt(state->send_context, state->p_send.seqnr, cp,
markus@openbsd.org091c3022015-01-19 19:52:16 +00001137 sshbuf_ptr(state->outgoing_packet),
1138 len - aadlen, aadlen, authlen)) != 0)
1139 goto out;
Damien Miller33b13562000-04-04 14:38:59 +10001140 /* append unencrypted MAC */
Damien Milleraf43a7a2012-12-12 10:46:31 +11001141 if (mac && mac->enabled) {
1142 if (mac->etm) {
1143 /* EtM: compute mac over aadlen + cipher text */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001144 if ((r = mac_compute(mac, state->p_send.seqnr,
1145 cp, len, macbuf, sizeof(macbuf))) != 0)
1146 goto out;
Damien Milleraf43a7a2012-12-12 10:46:31 +11001147 DBG(debug("done calc MAC(EtM) out #%d",
markus@openbsd.org091c3022015-01-19 19:52:16 +00001148 state->p_send.seqnr));
Damien Milleraf43a7a2012-12-12 10:46:31 +11001149 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001150 if ((r = sshbuf_put(state->output, macbuf, mac->mac_len)) != 0)
1151 goto out;
Damien Milleraf43a7a2012-12-12 10:46:31 +11001152 }
Damien Miller33b13562000-04-04 14:38:59 +10001153#ifdef PACKET_DEBUG
1154 fprintf(stderr, "encrypted: ");
markus@openbsd.org091c3022015-01-19 19:52:16 +00001155 sshbuf_dump(state->output, stderr);
Damien Miller33b13562000-04-04 14:38:59 +10001156#endif
Damien Miller4af51302000-04-16 11:18:38 +10001157 /* increment sequence number for outgoing packets */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001158 if (++state->p_send.seqnr == 0)
Damien Miller996acd22003-04-09 20:59:48 +10001159 logit("outgoing seqnr wraps around");
markus@openbsd.org091c3022015-01-19 19:52:16 +00001160 if (++state->p_send.packets == 0)
1161 if (!(ssh->compat & SSH_BUG_NOREKEY))
1162 return SSH_ERR_NEED_REKEY;
1163 state->p_send.blocks += len / block_size;
1164 state->p_send.bytes += len;
1165 sshbuf_reset(state->outgoing_packet);
Damien Miller33b13562000-04-04 14:38:59 +10001166
Ben Lindstrom2d90e002001-04-04 02:00:54 +00001167 if (type == SSH2_MSG_NEWKEYS)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001168 r = ssh_set_newkeys(ssh, MODE_OUT);
1169 else if (type == SSH2_MSG_USERAUTH_SUCCESS && state->server_side)
1170 r = ssh_packet_enable_delayed_compress(ssh);
1171 else
1172 r = 0;
1173 out:
1174 return r;
Damien Miller33b13562000-04-04 14:38:59 +10001175}
1176
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001177/* returns non-zero if the specified packet type is usec by KEX */
1178static int
1179ssh_packet_type_is_kex(u_char type)
1180{
1181 return
1182 type >= SSH2_MSG_TRANSPORT_MIN &&
1183 type <= SSH2_MSG_TRANSPORT_MAX &&
1184 type != SSH2_MSG_SERVICE_REQUEST &&
1185 type != SSH2_MSG_SERVICE_ACCEPT &&
1186 type != SSH2_MSG_EXT_INFO;
1187}
1188
markus@openbsd.org091c3022015-01-19 19:52:16 +00001189int
1190ssh_packet_send2(struct ssh *ssh)
Damien Millera5539d22003-04-09 20:50:06 +10001191{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001192 struct session_state *state = ssh->state;
Damien Millera5539d22003-04-09 20:50:06 +10001193 struct packet *p;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001194 u_char type;
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001195 int r, need_rekey;
Damien Millera5539d22003-04-09 20:50:06 +10001196
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001197 if (sshbuf_len(state->outgoing_packet) < 6)
1198 return SSH_ERR_INTERNAL_ERROR;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001199 type = sshbuf_ptr(state->outgoing_packet)[5];
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001200 need_rekey = !ssh_packet_type_is_kex(type) &&
1201 ssh_packet_need_rekeying(ssh, sshbuf_len(state->outgoing_packet));
Damien Millera5539d22003-04-09 20:50:06 +10001202
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001203 /*
1204 * During rekeying we can only send key exchange messages.
1205 * Queue everything else.
1206 */
1207 if ((need_rekey || state->rekeying) && !ssh_packet_type_is_kex(type)) {
1208 if (need_rekey)
1209 debug3("%s: rekex triggered", __func__);
1210 debug("enqueue packet: %u", type);
1211 p = calloc(1, sizeof(*p));
1212 if (p == NULL)
1213 return SSH_ERR_ALLOC_FAIL;
1214 p->type = type;
1215 p->payload = state->outgoing_packet;
1216 TAILQ_INSERT_TAIL(&state->outgoing, p, next);
1217 state->outgoing_packet = sshbuf_new();
1218 if (state->outgoing_packet == NULL)
1219 return SSH_ERR_ALLOC_FAIL;
1220 if (need_rekey) {
1221 /*
1222 * This packet triggered a rekey, so send the
1223 * KEXINIT now.
1224 * NB. reenters this function via kex_start_rekex().
1225 */
1226 return kex_start_rekex(ssh);
Damien Millera5539d22003-04-09 20:50:06 +10001227 }
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001228 return 0;
Damien Millera5539d22003-04-09 20:50:06 +10001229 }
1230
1231 /* rekeying starts with sending KEXINIT */
1232 if (type == SSH2_MSG_KEXINIT)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001233 state->rekeying = 1;
Damien Millera5539d22003-04-09 20:50:06 +10001234
markus@openbsd.org091c3022015-01-19 19:52:16 +00001235 if ((r = ssh_packet_send2_wrapped(ssh)) != 0)
1236 return r;
Damien Millera5539d22003-04-09 20:50:06 +10001237
1238 /* after a NEWKEYS message we can send the complete queue */
1239 if (type == SSH2_MSG_NEWKEYS) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001240 state->rekeying = 0;
1241 state->rekey_time = monotime();
1242 while ((p = TAILQ_FIRST(&state->outgoing))) {
Damien Millera5539d22003-04-09 20:50:06 +10001243 type = p->type;
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001244 /*
1245 * If this packet triggers a rekex, then skip the
1246 * remaining packets in the queue for now.
1247 * NB. re-enters this function via kex_start_rekex.
1248 */
1249 if (ssh_packet_need_rekeying(ssh,
1250 sshbuf_len(p->payload))) {
1251 debug3("%s: queued packet triggered rekex",
1252 __func__);
1253 return kex_start_rekex(ssh);
1254 }
Damien Millera5539d22003-04-09 20:50:06 +10001255 debug("dequeue packet: %u", type);
markus@openbsd.org091c3022015-01-19 19:52:16 +00001256 sshbuf_free(state->outgoing_packet);
1257 state->outgoing_packet = p->payload;
1258 TAILQ_REMOVE(&state->outgoing, p, next);
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001259 memset(p, 0, sizeof(*p));
Darren Tuckera627d422013-06-02 07:31:17 +10001260 free(p);
markus@openbsd.org091c3022015-01-19 19:52:16 +00001261 if ((r = ssh_packet_send2_wrapped(ssh)) != 0)
1262 return r;
Damien Millera5539d22003-04-09 20:50:06 +10001263 }
1264 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001265 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10001266}
1267
Damien Miller33b13562000-04-04 14:38:59 +10001268/*
Damien Miller5428f641999-11-25 11:54:57 +11001269 * Waits until a packet has been received, and returns its type. Note that
1270 * no other data is processed until this returns, so this function should not
1271 * be used during the interactive session.
1272 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001273
1274int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001275ssh_packet_read_seqnr(struct ssh *ssh, u_char *typep, u_int32_t *seqnr_p)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001276{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001277 struct session_state *state = ssh->state;
markus@openbsd.orga3068632016-01-14 16:17:39 +00001278 int len, r, ms_remain;
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001279 fd_set *setp;
Damien Miller95def091999-11-25 00:26:21 +11001280 char buf[8192];
Darren Tucker3fc464e2008-06-13 06:42:45 +10001281 struct timeval timeout, start, *timeoutp = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001282
Darren Tucker99bb7612008-06-13 22:02:50 +10001283 DBG(debug("packet_read()"));
1284
deraadt@openbsd.orgce445b02015-08-20 22:32:42 +00001285 setp = calloc(howmany(state->connection_in + 1,
Darren Tuckerf7288d72009-06-21 18:12:20 +10001286 NFDBITS), sizeof(fd_mask));
markus@openbsd.org091c3022015-01-19 19:52:16 +00001287 if (setp == NULL)
1288 return SSH_ERR_ALLOC_FAIL;
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001289
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001290 /*
1291 * Since we are blocking, ensure that all written packets have
1292 * been sent.
1293 */
markus@openbsd.org4daeb672015-03-24 20:10:08 +00001294 if ((r = ssh_packet_write_wait(ssh)) != 0)
1295 goto out;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001296
Damien Miller95def091999-11-25 00:26:21 +11001297 /* Stay in the loop until we have received a complete packet. */
1298 for (;;) {
1299 /* Try to read a packet from the buffer. */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001300 r = ssh_packet_read_poll_seqnr(ssh, typep, seqnr_p);
1301 if (r != 0)
1302 break;
Damien Miller95def091999-11-25 00:26:21 +11001303 /* If we got a packet, return it. */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001304 if (*typep != SSH_MSG_NONE)
1305 break;
Damien Miller5428f641999-11-25 11:54:57 +11001306 /*
1307 * Otherwise, wait for some data to arrive, add it to the
1308 * buffer, and try again.
1309 */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001310 memset(setp, 0, howmany(state->connection_in + 1,
Darren Tuckerf7288d72009-06-21 18:12:20 +10001311 NFDBITS) * sizeof(fd_mask));
markus@openbsd.org091c3022015-01-19 19:52:16 +00001312 FD_SET(state->connection_in, setp);
Damien Miller5428f641999-11-25 11:54:57 +11001313
markus@openbsd.org091c3022015-01-19 19:52:16 +00001314 if (state->packet_timeout_ms > 0) {
1315 ms_remain = state->packet_timeout_ms;
Darren Tucker3fc464e2008-06-13 06:42:45 +10001316 timeoutp = &timeout;
1317 }
Damien Miller95def091999-11-25 00:26:21 +11001318 /* Wait for some data to arrive. */
Darren Tucker3fc464e2008-06-13 06:42:45 +10001319 for (;;) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001320 if (state->packet_timeout_ms != -1) {
Darren Tucker3fc464e2008-06-13 06:42:45 +10001321 ms_to_timeval(&timeout, ms_remain);
1322 gettimeofday(&start, NULL);
1323 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001324 if ((r = select(state->connection_in + 1, setp,
Darren Tuckerf7288d72009-06-21 18:12:20 +10001325 NULL, NULL, timeoutp)) >= 0)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001326 break;
Damien Millerea437422009-10-02 11:49:03 +10001327 if (errno != EAGAIN && errno != EINTR &&
1328 errno != EWOULDBLOCK)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001329 break;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001330 if (state->packet_timeout_ms == -1)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001331 continue;
1332 ms_subtract_diff(&start, &ms_remain);
1333 if (ms_remain <= 0) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001334 r = 0;
Darren Tucker3fc464e2008-06-13 06:42:45 +10001335 break;
1336 }
1337 }
djm@openbsd.orgd7abb772017-02-28 06:10:08 +00001338 if (r == 0) {
1339 r = SSH_ERR_CONN_TIMEOUT;
1340 goto out;
1341 }
Damien Miller95def091999-11-25 00:26:21 +11001342 /* Read data from the socket. */
markus@openbsd.orga3068632016-01-14 16:17:39 +00001343 len = read(state->connection_in, buf, sizeof(buf));
markus@openbsd.org4daeb672015-03-24 20:10:08 +00001344 if (len == 0) {
1345 r = SSH_ERR_CONN_CLOSED;
1346 goto out;
1347 }
1348 if (len < 0) {
1349 r = SSH_ERR_SYSTEM_ERROR;
1350 goto out;
1351 }
djm@openbsd.orgfae7bbe2015-01-28 21:15:47 +00001352
Damien Miller95def091999-11-25 00:26:21 +11001353 /* Append it to the buffer. */
djm@openbsd.orgfae7bbe2015-01-28 21:15:47 +00001354 if ((r = ssh_packet_process_incoming(ssh, buf, len)) != 0)
markus@openbsd.org4daeb672015-03-24 20:10:08 +00001355 goto out;
Damien Miller95def091999-11-25 00:26:21 +11001356 }
markus@openbsd.org4daeb672015-03-24 20:10:08 +00001357 out:
markus@openbsd.org091c3022015-01-19 19:52:16 +00001358 free(setp);
1359 return r;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001360}
1361
Damien Miller278f9072001-12-21 15:00:19 +11001362int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001363ssh_packet_read(struct ssh *ssh)
Damien Miller278f9072001-12-21 15:00:19 +11001364{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001365 u_char type;
1366 int r;
1367
1368 if ((r = ssh_packet_read_seqnr(ssh, &type, NULL)) != 0)
1369 fatal("%s: %s", __func__, ssh_err(r));
1370 return type;
Damien Miller278f9072001-12-21 15:00:19 +11001371}
1372
Damien Miller5428f641999-11-25 11:54:57 +11001373/*
1374 * Waits until a packet has been received, verifies that its type matches
1375 * that given, and gives a fatal error and exits if there is a mismatch.
1376 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001377
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001378int
1379ssh_packet_read_expect(struct ssh *ssh, u_int expected_type)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001380{
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001381 int r;
1382 u_char type;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001383
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001384 if ((r = ssh_packet_read_seqnr(ssh, &type, NULL)) != 0)
1385 return r;
1386 if (type != expected_type) {
1387 if ((r = sshpkt_disconnect(ssh,
markus@openbsd.org091c3022015-01-19 19:52:16 +00001388 "Protocol error: expected packet type %d, got %d",
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001389 expected_type, type)) != 0)
1390 return r;
1391 return SSH_ERR_PROTOCOL_ERROR;
1392 }
1393 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001394}
1395
markus@openbsd.org8d057842016-09-30 09:19:13 +00001396static int
1397ssh_packet_read_poll2_mux(struct ssh *ssh, u_char *typep, u_int32_t *seqnr_p)
1398{
1399 struct session_state *state = ssh->state;
1400 const u_char *cp;
1401 size_t need;
1402 int r;
1403
1404 if (ssh->kex)
1405 return SSH_ERR_INTERNAL_ERROR;
1406 *typep = SSH_MSG_NONE;
1407 cp = sshbuf_ptr(state->input);
1408 if (state->packlen == 0) {
1409 if (sshbuf_len(state->input) < 4 + 1)
1410 return 0; /* packet is incomplete */
1411 state->packlen = PEEK_U32(cp);
1412 if (state->packlen < 4 + 1 ||
1413 state->packlen > PACKET_MAX_SIZE)
1414 return SSH_ERR_MESSAGE_INCOMPLETE;
1415 }
1416 need = state->packlen + 4;
1417 if (sshbuf_len(state->input) < need)
1418 return 0; /* packet is incomplete */
1419 sshbuf_reset(state->incoming_packet);
1420 if ((r = sshbuf_put(state->incoming_packet, cp + 4,
1421 state->packlen)) != 0 ||
1422 (r = sshbuf_consume(state->input, need)) != 0 ||
1423 (r = sshbuf_get_u8(state->incoming_packet, NULL)) != 0 ||
1424 (r = sshbuf_get_u8(state->incoming_packet, typep)) != 0)
1425 return r;
1426 if (ssh_packet_log_type(*typep))
1427 debug3("%s: type %u", __func__, *typep);
1428 /* sshbuf_dump(state->incoming_packet, stderr); */
1429 /* reset for next packet */
1430 state->packlen = 0;
1431 return r;
1432}
1433
markus@openbsd.org091c3022015-01-19 19:52:16 +00001434int
1435ssh_packet_read_poll2(struct ssh *ssh, u_char *typep, u_int32_t *seqnr_p)
Damien Miller33b13562000-04-04 14:38:59 +10001436{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001437 struct session_state *state = ssh->state;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001438 u_int padlen, need;
djm@openbsd.org6d311932016-07-08 03:44:42 +00001439 u_char *cp;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001440 u_int maclen, aadlen = 0, authlen = 0, block_size;
1441 struct sshenc *enc = NULL;
1442 struct sshmac *mac = NULL;
1443 struct sshcomp *comp = NULL;
markus@openbsd.org128343b2015-01-13 19:31:40 +00001444 int r;
Damien Miller33b13562000-04-04 14:38:59 +10001445
markus@openbsd.org8d057842016-09-30 09:19:13 +00001446 if (state->mux)
1447 return ssh_packet_read_poll2_mux(ssh, typep, seqnr_p);
1448
markus@openbsd.org091c3022015-01-19 19:52:16 +00001449 *typep = SSH_MSG_NONE;
Damien Miller13ae44c2009-01-28 16:38:41 +11001450
markus@openbsd.org091c3022015-01-19 19:52:16 +00001451 if (state->packet_discard)
1452 return 0;
1453
1454 if (state->newkeys[MODE_IN] != NULL) {
1455 enc = &state->newkeys[MODE_IN]->enc;
1456 mac = &state->newkeys[MODE_IN]->mac;
1457 comp = &state->newkeys[MODE_IN]->comp;
Damien Miller1d75abf2013-01-09 16:12:19 +11001458 /* disable mac for authenticated encryption */
1459 if ((authlen = cipher_authlen(enc->cipher)) != 0)
1460 mac = NULL;
Damien Miller33b13562000-04-04 14:38:59 +10001461 }
1462 maclen = mac && mac->enabled ? mac->mac_len : 0;
Damien Miller963f6b22002-02-19 15:21:23 +11001463 block_size = enc ? enc->block_size : 8;
Damien Miller1d75abf2013-01-09 16:12:19 +11001464 aadlen = (mac && mac->enabled && mac->etm) || authlen ? 4 : 0;
Damien Miller33b13562000-04-04 14:38:59 +10001465
markus@openbsd.org091c3022015-01-19 19:52:16 +00001466 if (aadlen && state->packlen == 0) {
djm@openbsd.org4706c1d2016-08-03 05:41:57 +00001467 if (cipher_get_length(state->receive_context,
markus@openbsd.org091c3022015-01-19 19:52:16 +00001468 &state->packlen, state->p_read.seqnr,
1469 sshbuf_ptr(state->input), sshbuf_len(state->input)) != 0)
1470 return 0;
1471 if (state->packlen < 1 + 4 ||
1472 state->packlen > PACKET_MAX_SIZE) {
Damien Milleraf43a7a2012-12-12 10:46:31 +11001473#ifdef PACKET_DEBUG
markus@openbsd.org091c3022015-01-19 19:52:16 +00001474 sshbuf_dump(state->input, stderr);
Damien Milleraf43a7a2012-12-12 10:46:31 +11001475#endif
markus@openbsd.org091c3022015-01-19 19:52:16 +00001476 logit("Bad packet length %u.", state->packlen);
1477 if ((r = sshpkt_disconnect(ssh, "Packet corrupt")) != 0)
1478 return r;
djm@openbsd.org2fecfd42015-11-08 21:59:11 +00001479 return SSH_ERR_CONN_CORRUPT;
Damien Milleraf43a7a2012-12-12 10:46:31 +11001480 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001481 sshbuf_reset(state->incoming_packet);
1482 } else if (state->packlen == 0) {
Damien Miller33b13562000-04-04 14:38:59 +10001483 /*
1484 * check if input size is less than the cipher block size,
1485 * decrypt first block and extract length of incoming packet
1486 */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001487 if (sshbuf_len(state->input) < block_size)
1488 return 0;
1489 sshbuf_reset(state->incoming_packet);
1490 if ((r = sshbuf_reserve(state->incoming_packet, block_size,
1491 &cp)) != 0)
1492 goto out;
djm@openbsd.org4706c1d2016-08-03 05:41:57 +00001493 if ((r = cipher_crypt(state->receive_context,
markus@openbsd.org091c3022015-01-19 19:52:16 +00001494 state->p_send.seqnr, cp, sshbuf_ptr(state->input),
1495 block_size, 0, 0)) != 0)
1496 goto out;
1497 state->packlen = PEEK_U32(sshbuf_ptr(state->incoming_packet));
1498 if (state->packlen < 1 + 4 ||
1499 state->packlen > PACKET_MAX_SIZE) {
Darren Tuckera8151da2003-09-22 21:06:46 +10001500#ifdef PACKET_DEBUG
markus@openbsd.org091c3022015-01-19 19:52:16 +00001501 fprintf(stderr, "input: \n");
1502 sshbuf_dump(state->input, stderr);
1503 fprintf(stderr, "incoming_packet: \n");
1504 sshbuf_dump(state->incoming_packet, stderr);
Darren Tuckera8151da2003-09-22 21:06:46 +10001505#endif
markus@openbsd.org091c3022015-01-19 19:52:16 +00001506 logit("Bad packet length %u.", state->packlen);
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +00001507 return ssh_packet_start_discard(ssh, enc, mac, 0,
1508 PACKET_MAX_SIZE);
Damien Miller33b13562000-04-04 14:38:59 +10001509 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001510 if ((r = sshbuf_consume(state->input, block_size)) != 0)
1511 goto out;
Damien Miller33b13562000-04-04 14:38:59 +10001512 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001513 DBG(debug("input: packet len %u", state->packlen+4));
1514
Damien Milleraf43a7a2012-12-12 10:46:31 +11001515 if (aadlen) {
1516 /* only the payload is encrypted */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001517 need = state->packlen;
Damien Milleraf43a7a2012-12-12 10:46:31 +11001518 } else {
1519 /*
1520 * the payload size and the payload are encrypted, but we
1521 * have a partial packet of block_size bytes
1522 */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001523 need = 4 + state->packlen - block_size;
Damien Milleraf43a7a2012-12-12 10:46:31 +11001524 }
Damien Miller1d75abf2013-01-09 16:12:19 +11001525 DBG(debug("partial packet: block %d, need %d, maclen %d, authlen %d,"
1526 " aadlen %d", block_size, need, maclen, authlen, aadlen));
Darren Tucker99d11a32008-12-01 21:40:48 +11001527 if (need % block_size != 0) {
1528 logit("padding error: need %d block %d mod %d",
Damien Miller33b13562000-04-04 14:38:59 +10001529 need, block_size, need % block_size);
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +00001530 return ssh_packet_start_discard(ssh, enc, mac, 0,
1531 PACKET_MAX_SIZE - block_size);
Darren Tucker99d11a32008-12-01 21:40:48 +11001532 }
Damien Miller33b13562000-04-04 14:38:59 +10001533 /*
1534 * check if the entire packet has been received and
Damien Milleraf43a7a2012-12-12 10:46:31 +11001535 * decrypt into incoming_packet:
1536 * 'aadlen' bytes are unencrypted, but authenticated.
Damien Miller1d75abf2013-01-09 16:12:19 +11001537 * 'need' bytes are encrypted, followed by either
1538 * 'authlen' bytes of authentication tag or
Damien Milleraf43a7a2012-12-12 10:46:31 +11001539 * 'maclen' bytes of message authentication code.
Damien Miller33b13562000-04-04 14:38:59 +10001540 */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001541 if (sshbuf_len(state->input) < aadlen + need + authlen + maclen)
djm@openbsd.org6d311932016-07-08 03:44:42 +00001542 return 0; /* packet is incomplete */
Damien Miller33b13562000-04-04 14:38:59 +10001543#ifdef PACKET_DEBUG
1544 fprintf(stderr, "read_poll enc/full: ");
markus@openbsd.org091c3022015-01-19 19:52:16 +00001545 sshbuf_dump(state->input, stderr);
Damien Miller33b13562000-04-04 14:38:59 +10001546#endif
djm@openbsd.org6d311932016-07-08 03:44:42 +00001547 /* EtM: check mac over encrypted input */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001548 if (mac && mac->enabled && mac->etm) {
djm@openbsd.org6d311932016-07-08 03:44:42 +00001549 if ((r = mac_check(mac, state->p_read.seqnr,
markus@openbsd.org091c3022015-01-19 19:52:16 +00001550 sshbuf_ptr(state->input), aadlen + need,
djm@openbsd.org6d311932016-07-08 03:44:42 +00001551 sshbuf_ptr(state->input) + aadlen + need + authlen,
1552 maclen)) != 0) {
1553 if (r == SSH_ERR_MAC_INVALID)
1554 logit("Corrupted MAC on input.");
markus@openbsd.org091c3022015-01-19 19:52:16 +00001555 goto out;
djm@openbsd.org6d311932016-07-08 03:44:42 +00001556 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001557 }
1558 if ((r = sshbuf_reserve(state->incoming_packet, aadlen + need,
1559 &cp)) != 0)
1560 goto out;
djm@openbsd.org4706c1d2016-08-03 05:41:57 +00001561 if ((r = cipher_crypt(state->receive_context, state->p_read.seqnr, cp,
markus@openbsd.org091c3022015-01-19 19:52:16 +00001562 sshbuf_ptr(state->input), need, aadlen, authlen)) != 0)
1563 goto out;
1564 if ((r = sshbuf_consume(state->input, aadlen + need + authlen)) != 0)
1565 goto out;
Damien Miller4af51302000-04-16 11:18:38 +10001566 if (mac && mac->enabled) {
djm@openbsd.org6d311932016-07-08 03:44:42 +00001567 /* Not EtM: check MAC over cleartext */
1568 if (!mac->etm && (r = mac_check(mac, state->p_read.seqnr,
1569 sshbuf_ptr(state->incoming_packet),
1570 sshbuf_len(state->incoming_packet),
1571 sshbuf_ptr(state->input), maclen)) != 0) {
1572 if (r != SSH_ERR_MAC_INVALID)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001573 goto out;
Damien Miller13ae44c2009-01-28 16:38:41 +11001574 logit("Corrupted MAC on input.");
markus@openbsd.org0fb1a612017-03-11 13:07:35 +00001575 if (need + block_size > PACKET_MAX_SIZE)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001576 return SSH_ERR_INTERNAL_ERROR;
1577 return ssh_packet_start_discard(ssh, enc, mac,
markus@openbsd.orgb98a2a82016-07-18 11:35:33 +00001578 sshbuf_len(state->incoming_packet),
markus@openbsd.org0fb1a612017-03-11 13:07:35 +00001579 PACKET_MAX_SIZE - need - block_size);
Damien Miller13ae44c2009-01-28 16:38:41 +11001580 }
djm@openbsd.org6d311932016-07-08 03:44:42 +00001581 /* Remove MAC from input buffer */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001582 DBG(debug("MAC #%d ok", state->p_read.seqnr));
1583 if ((r = sshbuf_consume(state->input, mac->mac_len)) != 0)
1584 goto out;
Damien Miller33b13562000-04-04 14:38:59 +10001585 }
Damien Miller278f9072001-12-21 15:00:19 +11001586 if (seqnr_p != NULL)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001587 *seqnr_p = state->p_read.seqnr;
1588 if (++state->p_read.seqnr == 0)
Damien Miller996acd22003-04-09 20:59:48 +10001589 logit("incoming seqnr wraps around");
markus@openbsd.org091c3022015-01-19 19:52:16 +00001590 if (++state->p_read.packets == 0)
1591 if (!(ssh->compat & SSH_BUG_NOREKEY))
1592 return SSH_ERR_NEED_REKEY;
1593 state->p_read.blocks += (state->packlen + 4) / block_size;
1594 state->p_read.bytes += state->packlen + 4;
Damien Miller33b13562000-04-04 14:38:59 +10001595
1596 /* get padlen */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001597 padlen = sshbuf_ptr(state->incoming_packet)[4];
Damien Miller33b13562000-04-04 14:38:59 +10001598 DBG(debug("input: padlen %d", padlen));
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001599 if (padlen < 4) {
1600 if ((r = sshpkt_disconnect(ssh,
1601 "Corrupted padlen %d on input.", padlen)) != 0 ||
1602 (r = ssh_packet_write_wait(ssh)) != 0)
1603 return r;
1604 return SSH_ERR_CONN_CORRUPT;
1605 }
Damien Miller33b13562000-04-04 14:38:59 +10001606
1607 /* skip packet size + padlen, discard padding */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001608 if ((r = sshbuf_consume(state->incoming_packet, 4 + 1)) != 0 ||
1609 ((r = sshbuf_consume_end(state->incoming_packet, padlen)) != 0))
1610 goto out;
Damien Miller33b13562000-04-04 14:38:59 +10001611
markus@openbsd.org091c3022015-01-19 19:52:16 +00001612 DBG(debug("input: len before de-compress %zd",
1613 sshbuf_len(state->incoming_packet)));
Damien Miller33b13562000-04-04 14:38:59 +10001614 if (comp && comp->enabled) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001615 sshbuf_reset(state->compression_buffer);
1616 if ((r = uncompress_buffer(ssh, state->incoming_packet,
1617 state->compression_buffer)) != 0)
1618 goto out;
1619 sshbuf_reset(state->incoming_packet);
1620 if ((r = sshbuf_putb(state->incoming_packet,
1621 state->compression_buffer)) != 0)
1622 goto out;
1623 DBG(debug("input: len after de-compress %zd",
1624 sshbuf_len(state->incoming_packet)));
Damien Miller33b13562000-04-04 14:38:59 +10001625 }
1626 /*
1627 * get packet type, implies consume.
1628 * return length of payload (without type field)
1629 */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001630 if ((r = sshbuf_get_u8(state->incoming_packet, typep)) != 0)
1631 goto out;
djm@openbsd.org28136472016-01-29 05:46:01 +00001632 if (ssh_packet_log_type(*typep))
1633 debug3("receive packet: type %u", *typep);
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001634 if (*typep < SSH2_MSG_MIN || *typep >= SSH2_MSG_LOCAL_MIN) {
1635 if ((r = sshpkt_disconnect(ssh,
1636 "Invalid ssh2 packet type: %d", *typep)) != 0 ||
1637 (r = ssh_packet_write_wait(ssh)) != 0)
1638 return r;
1639 return SSH_ERR_PROTOCOL_ERROR;
1640 }
djm@openbsd.org39af7b42016-10-11 21:47:45 +00001641 if (state->hook_in != NULL &&
1642 (r = state->hook_in(ssh, state->incoming_packet, typep,
1643 state->hook_in_ctx)) != 0)
1644 return r;
markus@openbsd.org28652bc2016-09-19 19:02:19 +00001645 if (*typep == SSH2_MSG_USERAUTH_SUCCESS && !state->server_side)
markus@openbsd.org091c3022015-01-19 19:52:16 +00001646 r = ssh_packet_enable_delayed_compress(ssh);
1647 else
1648 r = 0;
Damien Miller33b13562000-04-04 14:38:59 +10001649#ifdef PACKET_DEBUG
markus@openbsd.org091c3022015-01-19 19:52:16 +00001650 fprintf(stderr, "read/plain[%d]:\r\n", *typep);
1651 sshbuf_dump(state->incoming_packet, stderr);
Damien Miller33b13562000-04-04 14:38:59 +10001652#endif
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001653 /* reset for next packet */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001654 state->packlen = 0;
djm@openbsd.org19bcf2e2016-02-08 10:57:07 +00001655
1656 /* do we need to rekey? */
1657 if (ssh_packet_need_rekeying(ssh, 0)) {
1658 debug3("%s: rekex triggered", __func__);
1659 if ((r = kex_start_rekex(ssh)) != 0)
1660 return r;
1661 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001662 out:
1663 return r;
Damien Miller33b13562000-04-04 14:38:59 +10001664}
1665
1666int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001667ssh_packet_read_poll_seqnr(struct ssh *ssh, u_char *typep, u_int32_t *seqnr_p)
Damien Miller33b13562000-04-04 14:38:59 +10001668{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001669 struct session_state *state = ssh->state;
Ben Lindstrom3f584742002-06-23 21:49:25 +00001670 u_int reason, seqnr;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001671 int r;
1672 u_char *msg;
Damien Miller33b13562000-04-04 14:38:59 +10001673
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001674 for (;;) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001675 msg = NULL;
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001676 r = ssh_packet_read_poll2(ssh, typep, seqnr_p);
1677 if (r != 0)
1678 return r;
1679 if (*typep) {
1680 state->keep_alive_timeouts = 0;
1681 DBG(debug("received packet type %d", *typep));
1682 }
1683 switch (*typep) {
1684 case SSH2_MSG_IGNORE:
1685 debug3("Received SSH2_MSG_IGNORE");
1686 break;
1687 case SSH2_MSG_DEBUG:
1688 if ((r = sshpkt_get_u8(ssh, NULL)) != 0 ||
1689 (r = sshpkt_get_string(ssh, &msg, NULL)) != 0 ||
1690 (r = sshpkt_get_string(ssh, NULL, NULL)) != 0) {
1691 free(msg);
markus@openbsd.org091c3022015-01-19 19:52:16 +00001692 return r;
Darren Tucker136e56f2008-06-08 12:49:30 +10001693 }
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001694 debug("Remote: %.900s", msg);
1695 free(msg);
1696 break;
1697 case SSH2_MSG_DISCONNECT:
1698 if ((r = sshpkt_get_u32(ssh, &reason)) != 0 ||
1699 (r = sshpkt_get_string(ssh, &msg, NULL)) != 0)
1700 return r;
1701 /* Ignore normal client exit notifications */
1702 do_log2(ssh->state->server_side &&
1703 reason == SSH2_DISCONNECT_BY_APPLICATION ?
1704 SYSLOG_LEVEL_INFO : SYSLOG_LEVEL_ERROR,
1705 "Received disconnect from %s port %d:"
1706 "%u: %.400s", ssh_remote_ipaddr(ssh),
1707 ssh_remote_port(ssh), reason, msg);
1708 free(msg);
1709 return SSH_ERR_DISCONNECTED;
1710 case SSH2_MSG_UNIMPLEMENTED:
1711 if ((r = sshpkt_get_u32(ssh, &seqnr)) != 0)
1712 return r;
1713 debug("Received SSH2_MSG_UNIMPLEMENTED for %u",
1714 seqnr);
1715 break;
1716 default:
1717 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10001718 }
1719 }
1720}
1721
Damien Miller5428f641999-11-25 11:54:57 +11001722/*
1723 * Buffers the given amount of input characters. This is intended to be used
1724 * together with packet_read_poll.
1725 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001726
djm@openbsd.orgfae7bbe2015-01-28 21:15:47 +00001727int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001728ssh_packet_process_incoming(struct ssh *ssh, const char *buf, u_int len)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001729{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001730 struct session_state *state = ssh->state;
1731 int r;
1732
1733 if (state->packet_discard) {
1734 state->keep_alive_timeouts = 0; /* ?? */
1735 if (len >= state->packet_discard) {
1736 if ((r = ssh_packet_stop_discard(ssh)) != 0)
djm@openbsd.orgfae7bbe2015-01-28 21:15:47 +00001737 return r;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001738 }
1739 state->packet_discard -= len;
djm@openbsd.orgfae7bbe2015-01-28 21:15:47 +00001740 return 0;
Damien Miller13ae44c2009-01-28 16:38:41 +11001741 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001742 if ((r = sshbuf_put(ssh->state->input, buf, len)) != 0)
djm@openbsd.orgfae7bbe2015-01-28 21:15:47 +00001743 return r;
1744
1745 return 0;
Damien Miller33b13562000-04-04 14:38:59 +10001746}
1747
Damien Miller4af51302000-04-16 11:18:38 +10001748int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001749ssh_packet_remaining(struct ssh *ssh)
Damien Miller4af51302000-04-16 11:18:38 +10001750{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001751 return sshbuf_len(ssh->state->incoming_packet);
Damien Millerda108ec2010-08-31 22:36:39 +10001752}
1753
Damien Miller5428f641999-11-25 11:54:57 +11001754/*
1755 * Sends a diagnostic message from the server to the client. This message
1756 * can be sent at any time (but not while constructing another message). The
1757 * message is printed immediately, but only if the client is being executed
1758 * in verbose mode. These messages are primarily intended to ease debugging
1759 * authentication problems. The length of the formatted message must not
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001760 * exceed 1024 bytes. This will automatically call ssh_packet_write_wait.
Damien Miller5428f641999-11-25 11:54:57 +11001761 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001762void
markus@openbsd.org091c3022015-01-19 19:52:16 +00001763ssh_packet_send_debug(struct ssh *ssh, const char *fmt,...)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001764{
Damien Miller95def091999-11-25 00:26:21 +11001765 char buf[1024];
1766 va_list args;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001767 int r;
Damien Miller95def091999-11-25 00:26:21 +11001768
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001769 if ((ssh->compat & SSH_BUG_DEBUG))
Ben Lindstroma14ee472000-12-07 01:24:58 +00001770 return;
1771
Damien Miller95def091999-11-25 00:26:21 +11001772 va_start(args, fmt);
1773 vsnprintf(buf, sizeof(buf), fmt, args);
1774 va_end(args);
1775
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001776 if ((r = sshpkt_start(ssh, SSH2_MSG_DEBUG)) != 0 ||
1777 (r = sshpkt_put_u8(ssh, 0)) != 0 || /* always display */
1778 (r = sshpkt_put_cstring(ssh, buf)) != 0 ||
1779 (r = sshpkt_put_cstring(ssh, "")) != 0 ||
1780 (r = sshpkt_send(ssh)) != 0 ||
1781 (r = ssh_packet_write_wait(ssh)) != 0)
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001782 fatal("%s: %s", __func__, ssh_err(r));
1783}
1784
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001785static void
1786fmt_connection_id(struct ssh *ssh, char *s, size_t l)
1787{
1788 snprintf(s, l, "%.200s%s%s port %d",
1789 ssh->log_preamble ? ssh->log_preamble : "",
1790 ssh->log_preamble ? " " : "",
1791 ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
1792}
1793
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001794/*
1795 * Pretty-print connection-terminating errors and exit.
1796 */
1797void
1798sshpkt_fatal(struct ssh *ssh, const char *tag, int r)
1799{
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001800 char remote_id[512];
1801
1802 fmt_connection_id(ssh, remote_id, sizeof(remote_id));
1803
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001804 switch (r) {
1805 case SSH_ERR_CONN_CLOSED:
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001806 ssh_packet_clear_keys(ssh);
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001807 logdie("Connection closed by %s", remote_id);
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001808 case SSH_ERR_CONN_TIMEOUT:
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001809 ssh_packet_clear_keys(ssh);
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001810 logdie("Connection %s %s timed out",
1811 ssh->state->server_side ? "from" : "to", remote_id);
djm@openbsd.org639d6bc2015-05-01 07:10:01 +00001812 case SSH_ERR_DISCONNECTED:
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001813 ssh_packet_clear_keys(ssh);
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001814 logdie("Disconnected from %s", remote_id);
djm@openbsd.org639d6bc2015-05-01 07:10:01 +00001815 case SSH_ERR_SYSTEM_ERROR:
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001816 if (errno == ECONNRESET) {
1817 ssh_packet_clear_keys(ssh);
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001818 logdie("Connection reset by %s", remote_id);
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001819 }
djm@openbsd.org639d6bc2015-05-01 07:10:01 +00001820 /* FALLTHROUGH */
djm@openbsd.orgf3199122015-07-29 04:43:06 +00001821 case SSH_ERR_NO_CIPHER_ALG_MATCH:
1822 case SSH_ERR_NO_MAC_ALG_MATCH:
1823 case SSH_ERR_NO_COMPRESS_ALG_MATCH:
1824 case SSH_ERR_NO_KEX_ALG_MATCH:
1825 case SSH_ERR_NO_HOSTKEY_ALG_MATCH:
1826 if (ssh && ssh->kex && ssh->kex->failed_choice) {
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001827 ssh_packet_clear_keys(ssh);
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001828 logdie("Unable to negotiate with %s: %s. "
1829 "Their offer: %s", remote_id, ssh_err(r),
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +00001830 ssh->kex->failed_choice);
djm@openbsd.orgf3199122015-07-29 04:43:06 +00001831 }
1832 /* FALLTHROUGH */
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001833 default:
markus@openbsd.org1e0cdf82017-05-31 08:09:45 +00001834 ssh_packet_clear_keys(ssh);
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001835 logdie("%s%sConnection %s %s: %s",
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001836 tag != NULL ? tag : "", tag != NULL ? ": " : "",
djm@openbsd.orga4b9e0f2015-12-11 03:24:25 +00001837 ssh->state->server_side ? "from" : "to",
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001838 remote_id, ssh_err(r));
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001839 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001840}
1841
Damien Miller5428f641999-11-25 11:54:57 +11001842/*
1843 * Logs the error plus constructs and sends a disconnect packet, closes the
1844 * connection, and exits. This function never returns. The error message
1845 * should not contain a newline. The length of the formatted message must
1846 * not exceed 1024 bytes.
1847 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001848void
markus@openbsd.org091c3022015-01-19 19:52:16 +00001849ssh_packet_disconnect(struct ssh *ssh, const char *fmt,...)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001850{
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001851 char buf[1024], remote_id[512];
Damien Miller95def091999-11-25 00:26:21 +11001852 va_list args;
1853 static int disconnecting = 0;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001854 int r;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001855
Damien Miller95def091999-11-25 00:26:21 +11001856 if (disconnecting) /* Guard against recursive invocations. */
1857 fatal("packet_disconnect called recursively.");
1858 disconnecting = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001859
Damien Miller5428f641999-11-25 11:54:57 +11001860 /*
1861 * Format the message. Note that the caller must make sure the
1862 * message is of limited size.
1863 */
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001864 fmt_connection_id(ssh, remote_id, sizeof(remote_id));
Damien Miller95def091999-11-25 00:26:21 +11001865 va_start(args, fmt);
1866 vsnprintf(buf, sizeof(buf), fmt, args);
1867 va_end(args);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001868
Ben Lindstrom9bda7ae2002-11-09 15:46:24 +00001869 /* Display the error locally */
djm@openbsd.org07edd7e2017-02-03 23:03:33 +00001870 logit("Disconnecting %s: %.100s", remote_id, buf);
Ben Lindstrom9bda7ae2002-11-09 15:46:24 +00001871
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001872 /*
1873 * Send the disconnect message to the other side, and wait
1874 * for it to get sent.
1875 */
1876 if ((r = sshpkt_disconnect(ssh, "%s", buf)) != 0)
1877 sshpkt_fatal(ssh, __func__, r);
1878
1879 if ((r = ssh_packet_write_wait(ssh)) != 0)
1880 sshpkt_fatal(ssh, __func__, r);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001881
Damien Miller95def091999-11-25 00:26:21 +11001882 /* Close the connection. */
markus@openbsd.org091c3022015-01-19 19:52:16 +00001883 ssh_packet_close(ssh);
Darren Tucker3e33cec2003-10-02 16:12:36 +10001884 cleanup_exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001885}
1886
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001887/*
1888 * Checks if there is any buffered output, and tries to write some of
1889 * the output.
1890 */
1891int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001892ssh_packet_write_poll(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001893{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001894 struct session_state *state = ssh->state;
1895 int len = sshbuf_len(state->output);
markus@openbsd.orga3068632016-01-14 16:17:39 +00001896 int r;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001897
Damien Miller95def091999-11-25 00:26:21 +11001898 if (len > 0) {
markus@openbsd.orga3068632016-01-14 16:17:39 +00001899 len = write(state->connection_out,
1900 sshbuf_ptr(state->output), len);
Damien Millerd874fa52008-07-05 09:40:56 +10001901 if (len == -1) {
Damien Millerea437422009-10-02 11:49:03 +10001902 if (errno == EINTR || errno == EAGAIN ||
1903 errno == EWOULDBLOCK)
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001904 return 0;
1905 return SSH_ERR_SYSTEM_ERROR;
Damien Miller95def091999-11-25 00:26:21 +11001906 }
markus@openbsd.orga3068632016-01-14 16:17:39 +00001907 if (len == 0)
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001908 return SSH_ERR_CONN_CLOSED;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001909 if ((r = sshbuf_consume(state->output, len)) != 0)
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001910 return r;
Damien Miller95def091999-11-25 00:26:21 +11001911 }
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001912 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001913}
1914
Damien Miller5428f641999-11-25 11:54:57 +11001915/*
1916 * Calls packet_write_poll repeatedly until all pending output data has been
1917 * written.
1918 */
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001919int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001920ssh_packet_write_wait(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001921{
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001922 fd_set *setp;
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001923 int ret, r, ms_remain = 0;
Darren Tucker3fc464e2008-06-13 06:42:45 +10001924 struct timeval start, timeout, *timeoutp = NULL;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001925 struct session_state *state = ssh->state;
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001926
deraadt@openbsd.orgce445b02015-08-20 22:32:42 +00001927 setp = calloc(howmany(state->connection_out + 1,
Darren Tuckerf7288d72009-06-21 18:12:20 +10001928 NFDBITS), sizeof(fd_mask));
markus@openbsd.org091c3022015-01-19 19:52:16 +00001929 if (setp == NULL)
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001930 return SSH_ERR_ALLOC_FAIL;
gsoares@openbsd.org66d2e222015-10-21 11:33:03 +00001931 if ((r = ssh_packet_write_poll(ssh)) != 0) {
1932 free(setp);
djm@openbsd.org84082182015-09-21 04:31:00 +00001933 return r;
gsoares@openbsd.org66d2e222015-10-21 11:33:03 +00001934 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001935 while (ssh_packet_have_data_to_write(ssh)) {
1936 memset(setp, 0, howmany(state->connection_out + 1,
Darren Tuckerf7288d72009-06-21 18:12:20 +10001937 NFDBITS) * sizeof(fd_mask));
markus@openbsd.org091c3022015-01-19 19:52:16 +00001938 FD_SET(state->connection_out, setp);
Darren Tucker3fc464e2008-06-13 06:42:45 +10001939
markus@openbsd.org091c3022015-01-19 19:52:16 +00001940 if (state->packet_timeout_ms > 0) {
1941 ms_remain = state->packet_timeout_ms;
Darren Tucker3fc464e2008-06-13 06:42:45 +10001942 timeoutp = &timeout;
1943 }
1944 for (;;) {
markus@openbsd.org091c3022015-01-19 19:52:16 +00001945 if (state->packet_timeout_ms != -1) {
Darren Tucker3fc464e2008-06-13 06:42:45 +10001946 ms_to_timeval(&timeout, ms_remain);
1947 gettimeofday(&start, NULL);
1948 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00001949 if ((ret = select(state->connection_out + 1,
Darren Tuckerf7288d72009-06-21 18:12:20 +10001950 NULL, setp, NULL, timeoutp)) >= 0)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001951 break;
Damien Millerea437422009-10-02 11:49:03 +10001952 if (errno != EAGAIN && errno != EINTR &&
1953 errno != EWOULDBLOCK)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001954 break;
markus@openbsd.org091c3022015-01-19 19:52:16 +00001955 if (state->packet_timeout_ms == -1)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001956 continue;
1957 ms_subtract_diff(&start, &ms_remain);
1958 if (ms_remain <= 0) {
1959 ret = 0;
1960 break;
1961 }
1962 }
1963 if (ret == 0) {
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001964 free(setp);
1965 return SSH_ERR_CONN_TIMEOUT;
Darren Tucker3fc464e2008-06-13 06:42:45 +10001966 }
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001967 if ((r = ssh_packet_write_poll(ssh)) != 0) {
1968 free(setp);
1969 return r;
1970 }
Damien Miller95def091999-11-25 00:26:21 +11001971 }
Darren Tuckera627d422013-06-02 07:31:17 +10001972 free(setp);
djm@openbsd.org4509b5d2015-01-30 01:13:33 +00001973 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001974}
1975
1976/* Returns true if there is buffered data to write to the connection. */
1977
1978int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001979ssh_packet_have_data_to_write(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001980{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001981 return sshbuf_len(ssh->state->output) != 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001982}
1983
1984/* Returns true if there is not too much data to write to the connection. */
1985
1986int
markus@openbsd.org091c3022015-01-19 19:52:16 +00001987ssh_packet_not_very_much_data_to_write(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001988{
markus@openbsd.org091c3022015-01-19 19:52:16 +00001989 if (ssh->state->interactive_mode)
1990 return sshbuf_len(ssh->state->output) < 16384;
Damien Miller95def091999-11-25 00:26:21 +11001991 else
markus@openbsd.org091c3022015-01-19 19:52:16 +00001992 return sshbuf_len(ssh->state->output) < 128 * 1024;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001993}
1994
markus@openbsd.org091c3022015-01-19 19:52:16 +00001995void
1996ssh_packet_set_tos(struct ssh *ssh, int tos)
Ben Lindstroma7433982002-12-23 02:41:41 +00001997{
Damien Millerd2ac5d72011-05-15 08:43:13 +10001998#ifndef IP_TOS_IS_BROKEN
markus@openbsd.org091c3022015-01-19 19:52:16 +00001999 if (!ssh_packet_connection_is_on_socket(ssh))
Ben Lindstroma7433982002-12-23 02:41:41 +00002000 return;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002001 switch (ssh_packet_connection_af(ssh)) {
Damien Millerd2ac5d72011-05-15 08:43:13 +10002002# ifdef IP_TOS
2003 case AF_INET:
2004 debug3("%s: set IP_TOS 0x%02x", __func__, tos);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002005 if (setsockopt(ssh->state->connection_in,
Damien Millerd2ac5d72011-05-15 08:43:13 +10002006 IPPROTO_IP, IP_TOS, &tos, sizeof(tos)) < 0)
2007 error("setsockopt IP_TOS %d: %.100s:",
2008 tos, strerror(errno));
2009 break;
2010# endif /* IP_TOS */
2011# ifdef IPV6_TCLASS
2012 case AF_INET6:
2013 debug3("%s: set IPV6_TCLASS 0x%02x", __func__, tos);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002014 if (setsockopt(ssh->state->connection_in,
Damien Millerd2ac5d72011-05-15 08:43:13 +10002015 IPPROTO_IPV6, IPV6_TCLASS, &tos, sizeof(tos)) < 0)
2016 error("setsockopt IPV6_TCLASS %d: %.100s:",
2017 tos, strerror(errno));
2018 break;
Damien Millerd2ac5d72011-05-15 08:43:13 +10002019# endif /* IPV6_TCLASS */
Damien Miller23f425b2011-05-15 08:58:15 +10002020 }
Damien Millerd2ac5d72011-05-15 08:43:13 +10002021#endif /* IP_TOS_IS_BROKEN */
Damien Miller5924ceb2003-11-22 15:02:42 +11002022}
Ben Lindstroma7433982002-12-23 02:41:41 +00002023
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002024/* Informs that the current session is interactive. Sets IP flags for that. */
2025
2026void
markus@openbsd.org091c3022015-01-19 19:52:16 +00002027ssh_packet_set_interactive(struct ssh *ssh, int interactive, int qos_interactive, int qos_bulk)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002028{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002029 struct session_state *state = ssh->state;
2030
2031 if (state->set_interactive_called)
Ben Lindstrombf555ba2001-01-18 02:04:35 +00002032 return;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002033 state->set_interactive_called = 1;
Ben Lindstrombf555ba2001-01-18 02:04:35 +00002034
Damien Miller95def091999-11-25 00:26:21 +11002035 /* Record that we are in interactive mode. */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002036 state->interactive_mode = interactive;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002037
Damien Miller34132e52000-01-14 15:45:46 +11002038 /* Only set socket options if using a socket. */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002039 if (!ssh_packet_connection_is_on_socket(ssh))
Ben Lindstrom93b6b772003-04-27 17:55:33 +00002040 return;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002041 set_nodelay(state->connection_in);
2042 ssh_packet_set_tos(ssh, interactive ? qos_interactive :
2043 qos_bulk);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002044}
2045
2046/* Returns true if the current connection is interactive. */
2047
2048int
markus@openbsd.org091c3022015-01-19 19:52:16 +00002049ssh_packet_is_interactive(struct ssh *ssh)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002050{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002051 return ssh->state->interactive_mode;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002052}
Damien Miller6162d121999-11-21 13:23:52 +11002053
Darren Tucker1f8311c2004-05-13 16:39:33 +10002054int
markus@openbsd.org091c3022015-01-19 19:52:16 +00002055ssh_packet_set_maxsize(struct ssh *ssh, u_int s)
Damien Miller6162d121999-11-21 13:23:52 +11002056{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002057 struct session_state *state = ssh->state;
2058
2059 if (state->set_maxsize_called) {
Damien Miller996acd22003-04-09 20:59:48 +10002060 logit("packet_set_maxsize: called twice: old %d new %d",
markus@openbsd.org091c3022015-01-19 19:52:16 +00002061 state->max_packet_size, s);
Damien Miller95def091999-11-25 00:26:21 +11002062 return -1;
2063 }
2064 if (s < 4 * 1024 || s > 1024 * 1024) {
Damien Miller996acd22003-04-09 20:59:48 +10002065 logit("packet_set_maxsize: bad size %d", s);
Damien Miller95def091999-11-25 00:26:21 +11002066 return -1;
2067 }
markus@openbsd.org091c3022015-01-19 19:52:16 +00002068 state->set_maxsize_called = 1;
Ben Lindstrom16d45b32001-06-13 04:39:18 +00002069 debug("packet_set_maxsize: setting to %d", s);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002070 state->max_packet_size = s;
Damien Miller95def091999-11-25 00:26:21 +11002071 return s;
Damien Miller6162d121999-11-21 13:23:52 +11002072}
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00002073
Darren Tuckerf7288d72009-06-21 18:12:20 +10002074int
markus@openbsd.org091c3022015-01-19 19:52:16 +00002075ssh_packet_inc_alive_timeouts(struct ssh *ssh)
Darren Tuckerf7288d72009-06-21 18:12:20 +10002076{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002077 return ++ssh->state->keep_alive_timeouts;
Darren Tuckerf7288d72009-06-21 18:12:20 +10002078}
2079
2080void
markus@openbsd.org091c3022015-01-19 19:52:16 +00002081ssh_packet_set_alive_timeouts(struct ssh *ssh, int ka)
Darren Tuckerf7288d72009-06-21 18:12:20 +10002082{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002083 ssh->state->keep_alive_timeouts = ka;
Darren Tuckerf7288d72009-06-21 18:12:20 +10002084}
2085
2086u_int
markus@openbsd.org091c3022015-01-19 19:52:16 +00002087ssh_packet_get_maxsize(struct ssh *ssh)
Darren Tuckerf7288d72009-06-21 18:12:20 +10002088{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002089 return ssh->state->max_packet_size;
Damien Miller9f643902001-11-12 11:02:52 +11002090}
2091
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00002092/*
2093 * 9.2. Ignored Data Message
Ben Lindstroma3700052001-04-05 23:26:32 +00002094 *
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00002095 * byte SSH_MSG_IGNORE
2096 * string data
Ben Lindstroma3700052001-04-05 23:26:32 +00002097 *
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00002098 * All implementations MUST understand (and ignore) this message at any
2099 * time (after receiving the protocol version). No implementation is
2100 * required to send them. This message can be used as an additional
2101 * protection measure against advanced traffic analysis techniques.
2102 */
Ben Lindstrome229b252001-03-05 06:28:06 +00002103void
markus@openbsd.org091c3022015-01-19 19:52:16 +00002104ssh_packet_send_ignore(struct ssh *ssh, int nbytes)
Ben Lindstrome229b252001-03-05 06:28:06 +00002105{
Darren Tucker3f9fdc72004-06-22 12:56:01 +10002106 u_int32_t rnd = 0;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002107 int r, i;
Ben Lindstrome229b252001-03-05 06:28:06 +00002108
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002109 if ((r = sshpkt_start(ssh, SSH2_MSG_IGNORE)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +00002110 (r = sshpkt_put_u32(ssh, nbytes)) != 0)
2111 fatal("%s: %s", __func__, ssh_err(r));
Damien Miller9f0f5c62001-12-21 14:45:46 +11002112 for (i = 0; i < nbytes; i++) {
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00002113 if (i % 4 == 0)
Darren Tucker3f9fdc72004-06-22 12:56:01 +10002114 rnd = arc4random();
markus@openbsd.org091c3022015-01-19 19:52:16 +00002115 if ((r = sshpkt_put_u8(ssh, (u_char)rnd & 0xff)) != 0)
2116 fatal("%s: %s", __func__, ssh_err(r));
Darren Tucker3f9fdc72004-06-22 12:56:01 +10002117 rnd >>= 8;
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00002118 }
2119}
Damien Millera5539d22003-04-09 20:50:06 +10002120
Damien Millera5539d22003-04-09 20:50:06 +10002121void
dtucker@openbsd.orgc998bf02017-02-03 02:56:00 +00002122ssh_packet_set_rekey_limits(struct ssh *ssh, u_int64_t bytes, u_int32_t seconds)
Damien Millera5539d22003-04-09 20:50:06 +10002123{
dtucker@openbsd.orgc998bf02017-02-03 02:56:00 +00002124 debug3("rekey after %llu bytes, %u seconds", (unsigned long long)bytes,
2125 (unsigned int)seconds);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002126 ssh->state->rekey_limit = bytes;
2127 ssh->state->rekey_interval = seconds;
Darren Tuckerc53c2af2013-05-16 20:28:16 +10002128}
2129
2130time_t
markus@openbsd.org091c3022015-01-19 19:52:16 +00002131ssh_packet_get_rekey_timeout(struct ssh *ssh)
Darren Tuckerc53c2af2013-05-16 20:28:16 +10002132{
2133 time_t seconds;
2134
markus@openbsd.org091c3022015-01-19 19:52:16 +00002135 seconds = ssh->state->rekey_time + ssh->state->rekey_interval -
Darren Tuckerb759c9c2013-06-02 07:46:16 +10002136 monotime();
Darren Tucker5f96f3b2013-05-16 20:29:28 +10002137 return (seconds <= 0 ? 1 : seconds);
Damien Millera5539d22003-04-09 20:50:06 +10002138}
Damien Miller9786e6e2005-07-26 21:54:56 +10002139
2140void
markus@openbsd.org091c3022015-01-19 19:52:16 +00002141ssh_packet_set_server(struct ssh *ssh)
Damien Miller9786e6e2005-07-26 21:54:56 +10002142{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002143 ssh->state->server_side = 1;
Damien Miller9786e6e2005-07-26 21:54:56 +10002144}
2145
2146void
markus@openbsd.org091c3022015-01-19 19:52:16 +00002147ssh_packet_set_authenticated(struct ssh *ssh)
Damien Miller9786e6e2005-07-26 21:54:56 +10002148{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002149 ssh->state->after_authentication = 1;
Darren Tuckerf7288d72009-06-21 18:12:20 +10002150}
2151
2152void *
markus@openbsd.org091c3022015-01-19 19:52:16 +00002153ssh_packet_get_input(struct ssh *ssh)
Darren Tuckerf7288d72009-06-21 18:12:20 +10002154{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002155 return (void *)ssh->state->input;
Darren Tuckerf7288d72009-06-21 18:12:20 +10002156}
2157
2158void *
markus@openbsd.org091c3022015-01-19 19:52:16 +00002159ssh_packet_get_output(struct ssh *ssh)
Darren Tuckerf7288d72009-06-21 18:12:20 +10002160{
markus@openbsd.org091c3022015-01-19 19:52:16 +00002161 return (void *)ssh->state->output;
Darren Tuckerf7288d72009-06-21 18:12:20 +10002162}
2163
Damien Millerc31a0cd2014-05-15 14:37:39 +10002164/* Reset after_authentication and reset compression in post-auth privsep */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002165static int
2166ssh_packet_set_postauth(struct ssh *ssh)
Damien Millerc31a0cd2014-05-15 14:37:39 +10002167{
djm@openbsd.org0082fba2016-09-28 16:33:06 +00002168 int r;
Damien Millerc31a0cd2014-05-15 14:37:39 +10002169
2170 debug("%s: called", __func__);
2171 /* This was set in net child, but is not visible in user child */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002172 ssh->state->after_authentication = 1;
2173 ssh->state->rekeying = 0;
djm@openbsd.org0082fba2016-09-28 16:33:06 +00002174 if ((r = ssh_packet_enable_delayed_compress(ssh)) != 0)
2175 return r;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002176 return 0;
2177}
2178
2179/* Packet state (de-)serialization for privsep */
2180
2181/* turn kex into a blob for packet state serialization */
2182static int
2183kex_to_blob(struct sshbuf *m, struct kex *kex)
2184{
2185 int r;
2186
2187 if ((r = sshbuf_put_string(m, kex->session_id,
2188 kex->session_id_len)) != 0 ||
2189 (r = sshbuf_put_u32(m, kex->we_need)) != 0 ||
2190 (r = sshbuf_put_u32(m, kex->hostkey_type)) != 0 ||
2191 (r = sshbuf_put_u32(m, kex->kex_type)) != 0 ||
2192 (r = sshbuf_put_stringb(m, kex->my)) != 0 ||
2193 (r = sshbuf_put_stringb(m, kex->peer)) != 0 ||
2194 (r = sshbuf_put_u32(m, kex->flags)) != 0 ||
2195 (r = sshbuf_put_cstring(m, kex->client_version_string)) != 0 ||
2196 (r = sshbuf_put_cstring(m, kex->server_version_string)) != 0)
2197 return r;
2198 return 0;
2199}
2200
2201/* turn key exchange results into a blob for packet state serialization */
2202static int
2203newkeys_to_blob(struct sshbuf *m, struct ssh *ssh, int mode)
2204{
2205 struct sshbuf *b;
2206 struct sshcipher_ctx *cc;
2207 struct sshcomp *comp;
2208 struct sshenc *enc;
2209 struct sshmac *mac;
2210 struct newkeys *newkey;
2211 int r;
2212
2213 if ((newkey = ssh->state->newkeys[mode]) == NULL)
2214 return SSH_ERR_INTERNAL_ERROR;
2215 enc = &newkey->enc;
2216 mac = &newkey->mac;
2217 comp = &newkey->comp;
djm@openbsd.org4706c1d2016-08-03 05:41:57 +00002218 cc = (mode == MODE_OUT) ? ssh->state->send_context :
2219 ssh->state->receive_context;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002220 if ((r = cipher_get_keyiv(cc, enc->iv, enc->iv_len)) != 0)
2221 return r;
2222 if ((b = sshbuf_new()) == NULL)
2223 return SSH_ERR_ALLOC_FAIL;
2224 /* The cipher struct is constant and shared, you export pointer */
2225 if ((r = sshbuf_put_cstring(b, enc->name)) != 0 ||
2226 (r = sshbuf_put(b, &enc->cipher, sizeof(enc->cipher))) != 0 ||
2227 (r = sshbuf_put_u32(b, enc->enabled)) != 0 ||
2228 (r = sshbuf_put_u32(b, enc->block_size)) != 0 ||
2229 (r = sshbuf_put_string(b, enc->key, enc->key_len)) != 0 ||
2230 (r = sshbuf_put_string(b, enc->iv, enc->iv_len)) != 0)
2231 goto out;
2232 if (cipher_authlen(enc->cipher) == 0) {
2233 if ((r = sshbuf_put_cstring(b, mac->name)) != 0 ||
2234 (r = sshbuf_put_u32(b, mac->enabled)) != 0 ||
2235 (r = sshbuf_put_string(b, mac->key, mac->key_len)) != 0)
2236 goto out;
2237 }
2238 if ((r = sshbuf_put_u32(b, comp->type)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +00002239 (r = sshbuf_put_cstring(b, comp->name)) != 0)
2240 goto out;
2241 r = sshbuf_put_stringb(m, b);
2242 out:
mmcc@openbsd.org52d70782015-12-11 04:21:11 +00002243 sshbuf_free(b);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002244 return r;
2245}
2246
2247/* serialize packet state into a blob */
2248int
2249ssh_packet_get_state(struct ssh *ssh, struct sshbuf *m)
2250{
2251 struct session_state *state = ssh->state;
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002252 int r;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002253
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002254 if ((r = kex_to_blob(m, ssh->kex)) != 0 ||
2255 (r = newkeys_to_blob(m, ssh, MODE_OUT)) != 0 ||
2256 (r = newkeys_to_blob(m, ssh, MODE_IN)) != 0 ||
2257 (r = sshbuf_put_u64(m, state->rekey_limit)) != 0 ||
2258 (r = sshbuf_put_u32(m, state->rekey_interval)) != 0 ||
2259 (r = sshbuf_put_u32(m, state->p_send.seqnr)) != 0 ||
2260 (r = sshbuf_put_u64(m, state->p_send.blocks)) != 0 ||
2261 (r = sshbuf_put_u32(m, state->p_send.packets)) != 0 ||
2262 (r = sshbuf_put_u64(m, state->p_send.bytes)) != 0 ||
2263 (r = sshbuf_put_u32(m, state->p_read.seqnr)) != 0 ||
2264 (r = sshbuf_put_u64(m, state->p_read.blocks)) != 0 ||
2265 (r = sshbuf_put_u32(m, state->p_read.packets)) != 0 ||
djm@openbsd.org7461a5b2017-05-08 00:21:36 +00002266 (r = sshbuf_put_u64(m, state->p_read.bytes)) != 0 ||
2267 (r = sshbuf_put_stringb(m, state->input)) != 0 ||
2268 (r = sshbuf_put_stringb(m, state->output)) != 0)
djm@openbsd.org2e58a692017-05-08 06:03:39 +00002269 return r;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002270
markus@openbsd.org091c3022015-01-19 19:52:16 +00002271 return 0;
2272}
2273
2274/* restore key exchange results from blob for packet state de-serialization */
2275static int
2276newkeys_from_blob(struct sshbuf *m, struct ssh *ssh, int mode)
2277{
2278 struct sshbuf *b = NULL;
2279 struct sshcomp *comp;
2280 struct sshenc *enc;
2281 struct sshmac *mac;
2282 struct newkeys *newkey = NULL;
2283 size_t keylen, ivlen, maclen;
2284 int r;
2285
2286 if ((newkey = calloc(1, sizeof(*newkey))) == NULL) {
2287 r = SSH_ERR_ALLOC_FAIL;
2288 goto out;
2289 }
2290 if ((r = sshbuf_froms(m, &b)) != 0)
2291 goto out;
2292#ifdef DEBUG_PK
2293 sshbuf_dump(b, stderr);
2294#endif
2295 enc = &newkey->enc;
2296 mac = &newkey->mac;
2297 comp = &newkey->comp;
2298
2299 if ((r = sshbuf_get_cstring(b, &enc->name, NULL)) != 0 ||
2300 (r = sshbuf_get(b, &enc->cipher, sizeof(enc->cipher))) != 0 ||
2301 (r = sshbuf_get_u32(b, (u_int *)&enc->enabled)) != 0 ||
2302 (r = sshbuf_get_u32(b, &enc->block_size)) != 0 ||
2303 (r = sshbuf_get_string(b, &enc->key, &keylen)) != 0 ||
2304 (r = sshbuf_get_string(b, &enc->iv, &ivlen)) != 0)
2305 goto out;
2306 if (cipher_authlen(enc->cipher) == 0) {
2307 if ((r = sshbuf_get_cstring(b, &mac->name, NULL)) != 0)
2308 goto out;
2309 if ((r = mac_setup(mac, mac->name)) != 0)
2310 goto out;
2311 if ((r = sshbuf_get_u32(b, (u_int *)&mac->enabled)) != 0 ||
2312 (r = sshbuf_get_string(b, &mac->key, &maclen)) != 0)
2313 goto out;
2314 if (maclen > mac->key_len) {
2315 r = SSH_ERR_INVALID_FORMAT;
2316 goto out;
2317 }
2318 mac->key_len = maclen;
2319 }
2320 if ((r = sshbuf_get_u32(b, &comp->type)) != 0 ||
markus@openbsd.org091c3022015-01-19 19:52:16 +00002321 (r = sshbuf_get_cstring(b, &comp->name, NULL)) != 0)
2322 goto out;
2323 if (enc->name == NULL ||
2324 cipher_by_name(enc->name) != enc->cipher) {
2325 r = SSH_ERR_INVALID_FORMAT;
2326 goto out;
2327 }
2328 if (sshbuf_len(b) != 0) {
2329 r = SSH_ERR_INVALID_FORMAT;
2330 goto out;
2331 }
2332 enc->key_len = keylen;
2333 enc->iv_len = ivlen;
2334 ssh->kex->newkeys[mode] = newkey;
2335 newkey = NULL;
2336 r = 0;
2337 out:
mmcc@openbsd.orgd59ce082015-12-10 17:08:40 +00002338 free(newkey);
mmcc@openbsd.org52d70782015-12-11 04:21:11 +00002339 sshbuf_free(b);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002340 return r;
2341}
2342
2343/* restore kex from blob for packet state de-serialization */
2344static int
2345kex_from_blob(struct sshbuf *m, struct kex **kexp)
2346{
2347 struct kex *kex;
2348 int r;
2349
2350 if ((kex = calloc(1, sizeof(struct kex))) == NULL ||
2351 (kex->my = sshbuf_new()) == NULL ||
2352 (kex->peer = sshbuf_new()) == NULL) {
2353 r = SSH_ERR_ALLOC_FAIL;
2354 goto out;
2355 }
2356 if ((r = sshbuf_get_string(m, &kex->session_id, &kex->session_id_len)) != 0 ||
2357 (r = sshbuf_get_u32(m, &kex->we_need)) != 0 ||
2358 (r = sshbuf_get_u32(m, (u_int *)&kex->hostkey_type)) != 0 ||
2359 (r = sshbuf_get_u32(m, &kex->kex_type)) != 0 ||
2360 (r = sshbuf_get_stringb(m, kex->my)) != 0 ||
2361 (r = sshbuf_get_stringb(m, kex->peer)) != 0 ||
2362 (r = sshbuf_get_u32(m, &kex->flags)) != 0 ||
2363 (r = sshbuf_get_cstring(m, &kex->client_version_string, NULL)) != 0 ||
2364 (r = sshbuf_get_cstring(m, &kex->server_version_string, NULL)) != 0)
2365 goto out;
2366 kex->server = 1;
2367 kex->done = 1;
2368 r = 0;
2369 out:
2370 if (r != 0 || kexp == NULL) {
2371 if (kex != NULL) {
mmcc@openbsd.org52d70782015-12-11 04:21:11 +00002372 sshbuf_free(kex->my);
2373 sshbuf_free(kex->peer);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002374 free(kex);
2375 }
2376 if (kexp != NULL)
2377 *kexp = NULL;
2378 } else {
2379 *kexp = kex;
2380 }
2381 return r;
2382}
2383
2384/*
2385 * Restore packet state from content of blob 'm' (de-serialization).
2386 * Note that 'm' will be partially consumed on parsing or any other errors.
2387 */
2388int
2389ssh_packet_set_state(struct ssh *ssh, struct sshbuf *m)
2390{
2391 struct session_state *state = ssh->state;
djm@openbsd.orgacaf34f2017-05-07 23:12:57 +00002392 const u_char *input, *output;
2393 size_t ilen, olen;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002394 int r;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002395
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002396 if ((r = kex_from_blob(m, &ssh->kex)) != 0 ||
2397 (r = newkeys_from_blob(m, ssh, MODE_OUT)) != 0 ||
2398 (r = newkeys_from_blob(m, ssh, MODE_IN)) != 0 ||
2399 (r = sshbuf_get_u64(m, &state->rekey_limit)) != 0 ||
2400 (r = sshbuf_get_u32(m, &state->rekey_interval)) != 0 ||
2401 (r = sshbuf_get_u32(m, &state->p_send.seqnr)) != 0 ||
2402 (r = sshbuf_get_u64(m, &state->p_send.blocks)) != 0 ||
2403 (r = sshbuf_get_u32(m, &state->p_send.packets)) != 0 ||
2404 (r = sshbuf_get_u64(m, &state->p_send.bytes)) != 0 ||
2405 (r = sshbuf_get_u32(m, &state->p_read.seqnr)) != 0 ||
2406 (r = sshbuf_get_u64(m, &state->p_read.blocks)) != 0 ||
2407 (r = sshbuf_get_u32(m, &state->p_read.packets)) != 0 ||
2408 (r = sshbuf_get_u64(m, &state->p_read.bytes)) != 0)
2409 return r;
2410 /*
2411 * We set the time here so that in post-auth privsep slave we
2412 * count from the completion of the authentication.
2413 */
2414 state->rekey_time = monotime();
2415 /* XXX ssh_set_newkeys overrides p_read.packets? XXX */
2416 if ((r = ssh_set_newkeys(ssh, MODE_IN)) != 0 ||
2417 (r = ssh_set_newkeys(ssh, MODE_OUT)) != 0)
2418 return r;
2419
djm@openbsd.org0082fba2016-09-28 16:33:06 +00002420 if ((r = ssh_packet_set_postauth(ssh)) != 0)
markus@openbsd.org091c3022015-01-19 19:52:16 +00002421 return r;
2422
2423 sshbuf_reset(state->input);
2424 sshbuf_reset(state->output);
2425 if ((r = sshbuf_get_string_direct(m, &input, &ilen)) != 0 ||
2426 (r = sshbuf_get_string_direct(m, &output, &olen)) != 0 ||
2427 (r = sshbuf_put(state->input, input, ilen)) != 0 ||
2428 (r = sshbuf_put(state->output, output, olen)) != 0)
2429 return r;
2430
markus@openbsd.org091c3022015-01-19 19:52:16 +00002431 if (sshbuf_len(m))
2432 return SSH_ERR_INVALID_FORMAT;
2433 debug3("%s: done", __func__);
2434 return 0;
2435}
2436
2437/* NEW API */
2438
2439/* put data to the outgoing packet */
2440
2441int
2442sshpkt_put(struct ssh *ssh, const void *v, size_t len)
2443{
2444 return sshbuf_put(ssh->state->outgoing_packet, v, len);
2445}
2446
2447int
2448sshpkt_putb(struct ssh *ssh, const struct sshbuf *b)
2449{
2450 return sshbuf_putb(ssh->state->outgoing_packet, b);
2451}
2452
2453int
2454sshpkt_put_u8(struct ssh *ssh, u_char val)
2455{
2456 return sshbuf_put_u8(ssh->state->outgoing_packet, val);
2457}
2458
2459int
2460sshpkt_put_u32(struct ssh *ssh, u_int32_t val)
2461{
2462 return sshbuf_put_u32(ssh->state->outgoing_packet, val);
2463}
2464
2465int
2466sshpkt_put_u64(struct ssh *ssh, u_int64_t val)
2467{
2468 return sshbuf_put_u64(ssh->state->outgoing_packet, val);
2469}
2470
2471int
2472sshpkt_put_string(struct ssh *ssh, const void *v, size_t len)
2473{
2474 return sshbuf_put_string(ssh->state->outgoing_packet, v, len);
2475}
2476
2477int
2478sshpkt_put_cstring(struct ssh *ssh, const void *v)
2479{
2480 return sshbuf_put_cstring(ssh->state->outgoing_packet, v);
2481}
2482
2483int
2484sshpkt_put_stringb(struct ssh *ssh, const struct sshbuf *v)
2485{
2486 return sshbuf_put_stringb(ssh->state->outgoing_packet, v);
2487}
2488
djm@openbsd.org734226b2015-04-27 01:52:30 +00002489#ifdef WITH_OPENSSL
2490#ifdef OPENSSL_HAS_ECC
markus@openbsd.org091c3022015-01-19 19:52:16 +00002491int
2492sshpkt_put_ec(struct ssh *ssh, const EC_POINT *v, const EC_GROUP *g)
2493{
2494 return sshbuf_put_ec(ssh->state->outgoing_packet, v, g);
2495}
djm@openbsd.org734226b2015-04-27 01:52:30 +00002496#endif /* OPENSSL_HAS_ECC */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002497
markus@openbsd.org091c3022015-01-19 19:52:16 +00002498
2499int
2500sshpkt_put_bignum2(struct ssh *ssh, const BIGNUM *v)
2501{
2502 return sshbuf_put_bignum2(ssh->state->outgoing_packet, v);
2503}
Damien Miller773dda22015-01-30 23:10:17 +11002504#endif /* WITH_OPENSSL */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002505
2506/* fetch data from the incoming packet */
2507
2508int
2509sshpkt_get(struct ssh *ssh, void *valp, size_t len)
2510{
2511 return sshbuf_get(ssh->state->incoming_packet, valp, len);
2512}
2513
2514int
2515sshpkt_get_u8(struct ssh *ssh, u_char *valp)
2516{
2517 return sshbuf_get_u8(ssh->state->incoming_packet, valp);
2518}
2519
2520int
2521sshpkt_get_u32(struct ssh *ssh, u_int32_t *valp)
2522{
2523 return sshbuf_get_u32(ssh->state->incoming_packet, valp);
2524}
2525
2526int
2527sshpkt_get_u64(struct ssh *ssh, u_int64_t *valp)
2528{
2529 return sshbuf_get_u64(ssh->state->incoming_packet, valp);
2530}
2531
2532int
2533sshpkt_get_string(struct ssh *ssh, u_char **valp, size_t *lenp)
2534{
2535 return sshbuf_get_string(ssh->state->incoming_packet, valp, lenp);
2536}
2537
2538int
2539sshpkt_get_string_direct(struct ssh *ssh, const u_char **valp, size_t *lenp)
2540{
2541 return sshbuf_get_string_direct(ssh->state->incoming_packet, valp, lenp);
2542}
2543
2544int
2545sshpkt_get_cstring(struct ssh *ssh, char **valp, size_t *lenp)
2546{
2547 return sshbuf_get_cstring(ssh->state->incoming_packet, valp, lenp);
2548}
2549
djm@openbsd.org734226b2015-04-27 01:52:30 +00002550#ifdef WITH_OPENSSL
2551#ifdef OPENSSL_HAS_ECC
markus@openbsd.org091c3022015-01-19 19:52:16 +00002552int
2553sshpkt_get_ec(struct ssh *ssh, EC_POINT *v, const EC_GROUP *g)
2554{
2555 return sshbuf_get_ec(ssh->state->incoming_packet, v, g);
2556}
djm@openbsd.org734226b2015-04-27 01:52:30 +00002557#endif /* OPENSSL_HAS_ECC */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002558
markus@openbsd.org091c3022015-01-19 19:52:16 +00002559
2560int
2561sshpkt_get_bignum2(struct ssh *ssh, BIGNUM *v)
2562{
2563 return sshbuf_get_bignum2(ssh->state->incoming_packet, v);
2564}
Damien Miller773dda22015-01-30 23:10:17 +11002565#endif /* WITH_OPENSSL */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002566
2567int
2568sshpkt_get_end(struct ssh *ssh)
2569{
2570 if (sshbuf_len(ssh->state->incoming_packet) > 0)
2571 return SSH_ERR_UNEXPECTED_TRAILING_DATA;
2572 return 0;
2573}
2574
2575const u_char *
2576sshpkt_ptr(struct ssh *ssh, size_t *lenp)
2577{
2578 if (lenp != NULL)
2579 *lenp = sshbuf_len(ssh->state->incoming_packet);
2580 return sshbuf_ptr(ssh->state->incoming_packet);
2581}
2582
2583/* start a new packet */
2584
2585int
2586sshpkt_start(struct ssh *ssh, u_char type)
2587{
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002588 u_char buf[6]; /* u32 packet length, u8 pad len, u8 type */
markus@openbsd.org091c3022015-01-19 19:52:16 +00002589
2590 DBG(debug("packet_start[%d]", type));
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002591 memset(buf, 0, sizeof(buf));
2592 buf[sizeof(buf) - 1] = type;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002593 sshbuf_reset(ssh->state->outgoing_packet);
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002594 return sshbuf_put(ssh->state->outgoing_packet, buf, sizeof(buf));
markus@openbsd.org091c3022015-01-19 19:52:16 +00002595}
2596
markus@openbsd.org8d057842016-09-30 09:19:13 +00002597static int
2598ssh_packet_send_mux(struct ssh *ssh)
2599{
2600 struct session_state *state = ssh->state;
2601 u_char type, *cp;
2602 size_t len;
2603 int r;
2604
2605 if (ssh->kex)
2606 return SSH_ERR_INTERNAL_ERROR;
2607 len = sshbuf_len(state->outgoing_packet);
2608 if (len < 6)
2609 return SSH_ERR_INTERNAL_ERROR;
2610 cp = sshbuf_mutable_ptr(state->outgoing_packet);
2611 type = cp[5];
2612 if (ssh_packet_log_type(type))
2613 debug3("%s: type %u", __func__, type);
2614 /* drop everything, but the connection protocol */
2615 if (type >= SSH2_MSG_CONNECTION_MIN &&
2616 type <= SSH2_MSG_CONNECTION_MAX) {
2617 POKE_U32(cp, len - 4);
2618 if ((r = sshbuf_putb(state->output,
2619 state->outgoing_packet)) != 0)
2620 return r;
2621 /* sshbuf_dump(state->output, stderr); */
2622 }
2623 sshbuf_reset(state->outgoing_packet);
2624 return 0;
2625}
2626
markus@openbsd.org091c3022015-01-19 19:52:16 +00002627/* send it */
2628
2629int
2630sshpkt_send(struct ssh *ssh)
2631{
markus@openbsd.org8d057842016-09-30 09:19:13 +00002632 if (ssh->state && ssh->state->mux)
2633 return ssh_packet_send_mux(ssh);
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002634 return ssh_packet_send2(ssh);
markus@openbsd.org091c3022015-01-19 19:52:16 +00002635}
2636
2637int
2638sshpkt_disconnect(struct ssh *ssh, const char *fmt,...)
2639{
2640 char buf[1024];
2641 va_list args;
2642 int r;
2643
2644 va_start(args, fmt);
2645 vsnprintf(buf, sizeof(buf), fmt, args);
2646 va_end(args);
2647
djm@openbsd.org97f4d302017-04-30 23:13:25 +00002648 if ((r = sshpkt_start(ssh, SSH2_MSG_DISCONNECT)) != 0 ||
2649 (r = sshpkt_put_u32(ssh, SSH2_DISCONNECT_PROTOCOL_ERROR)) != 0 ||
2650 (r = sshpkt_put_cstring(ssh, buf)) != 0 ||
2651 (r = sshpkt_put_cstring(ssh, "")) != 0 ||
2652 (r = sshpkt_send(ssh)) != 0)
2653 return r;
markus@openbsd.org091c3022015-01-19 19:52:16 +00002654 return 0;
2655}
2656
2657/* roundup current message to pad bytes */
2658int
2659sshpkt_add_padding(struct ssh *ssh, u_char pad)
2660{
2661 ssh->state->extra_pad = pad;
2662 return 0;
Damien Millerc31a0cd2014-05-15 14:37:39 +10002663}