blob: 1275fca92140099cf6f65d99d6a7bac65b90e03c [file] [log] [blame]
Damien Miller2a328432014-04-20 13:24:01 +10001/* $OpenBSD: packet.c,v 1.193 2014/04/01 05:32:57 djm Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11004 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * This file contains code implementing the packet protocol and communication
7 * with the other side. This same code is used both on client and server side.
Damien Miller33b13562000-04-04 14:38:59 +10008 *
Damien Millere4340be2000-09-16 13:29:08 +11009 * As far as I am concerned, the code I have written for this software
10 * can be used freely for any purpose. Any derived versions of this
11 * software must be clearly marked as such, and if the derived work is
12 * incompatible with the protocol description in the RFC file, it must be
13 * called by a name other than "ssh" or "Secure Shell".
Damien Miller33b13562000-04-04 14:38:59 +100014 *
Damien Millere4340be2000-09-16 13:29:08 +110015 *
16 * SSH2 packet format added by Markus Friedl.
Ben Lindstrom44697232001-07-04 03:32:30 +000017 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110018 *
19 * Redistribution and use in source and binary forms, with or without
20 * modification, are permitted provided that the following conditions
21 * are met:
22 * 1. Redistributions of source code must retain the above copyright
23 * notice, this list of conditions and the following disclaimer.
24 * 2. Redistributions in binary form must reproduce the above copyright
25 * notice, this list of conditions and the following disclaimer in the
26 * documentation and/or other materials provided with the distribution.
27 *
28 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
29 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
30 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
31 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
32 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
33 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
34 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
35 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
36 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
37 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110038 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100039
40#include "includes.h"
Damien Miller68f8e992006-03-15 11:24:12 +110041
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 Miller8dbffe72006-08-05 11:02:17 +100044#include <sys/param.h>
Damien Miller8ec8c3e2006-07-10 20:35:38 +100045#include <sys/socket.h>
Damien Miller9aec9192006-08-05 10:57:45 +100046#ifdef HAVE_SYS_TIME_H
47# include <sys/time.h>
48#endif
Damien Miller8ec8c3e2006-07-10 20:35:38 +100049
Damien Miller8ec8c3e2006-07-10 20:35:38 +100050#include <netinet/in.h>
Damien Miller68f8e992006-03-15 11:24:12 +110051#include <netinet/ip.h>
Darren Tuckerdace2332006-09-22 19:22:17 +100052#include <arpa/inet.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100053
Darren Tucker39972492006-07-12 22:22:46 +100054#include <errno.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>
Damien Millerd7834352006-08-05 12:39:39 +100060#include <signal.h>
Darren Tuckerc53c2af2013-05-16 20:28:16 +100061#include <time.h>
Darren Tucker5d196262006-07-12 22:15:16 +100062
Damien Millerd4a8b7e1999-10-27 13:42:43 +100063#include "xmalloc.h"
64#include "buffer.h"
65#include "packet.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100066#include "crc32.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100067#include "compress.h"
68#include "deattack.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000069#include "channels.h"
Damien Miller33b13562000-04-04 14:38:59 +100070#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000071#include "ssh1.h"
Damien Miller33b13562000-04-04 14:38:59 +100072#include "ssh2.h"
Damien Miller874d77b2000-10-14 16:23:11 +110073#include "cipher.h"
Damien Millerd7834352006-08-05 12:39:39 +100074#include "key.h"
Damien Miller33b13562000-04-04 14:38:59 +100075#include "kex.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000076#include "mac.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000077#include "log.h"
78#include "canohost.h"
Damien Miller4d007762002-02-05 11:52:54 +110079#include "misc.h"
Ben Lindstrom402c6cc2002-06-21 00:43:42 +000080#include "ssh.h"
Darren Tuckerc5564e12009-06-21 18:53:53 +100081#include "roaming.h"
Damien Miller33b13562000-04-04 14:38:59 +100082
83#ifdef PACKET_DEBUG
84#define DBG(x) x
85#else
86#define DBG(x)
87#endif
88
Damien Miller13ae44c2009-01-28 16:38:41 +110089#define PACKET_MAX_SIZE (256 * 1024)
90
Darren Tuckerf7288d72009-06-21 18:12:20 +100091struct packet_state {
Damien Millera5539d22003-04-09 20:50:06 +100092 u_int32_t seqnr;
93 u_int32_t packets;
94 u_int64_t blocks;
Damien Millerb61f3fc2008-07-11 17:36:48 +100095 u_int64_t bytes;
Darren Tuckerf7288d72009-06-21 18:12:20 +100096};
Damien Miller13ae44c2009-01-28 16:38:41 +110097
Damien Millera5539d22003-04-09 20:50:06 +100098struct packet {
99 TAILQ_ENTRY(packet) next;
100 u_char type;
101 Buffer payload;
102};
Darren Tuckerf7288d72009-06-21 18:12:20 +1000103
104struct session_state {
105 /*
106 * This variable contains the file descriptors used for
107 * communicating with the other side. connection_in is used for
108 * reading; connection_out for writing. These can be the same
109 * descriptor, in which case it is assumed to be a socket.
110 */
111 int connection_in;
112 int connection_out;
113
114 /* Protocol flags for the remote side. */
115 u_int remote_protocol_flags;
116
117 /* Encryption context for receiving data. Only used for decryption. */
118 CipherContext receive_context;
119
120 /* Encryption context for sending data. Only used for encryption. */
121 CipherContext send_context;
122
123 /* Buffer for raw input data from the socket. */
124 Buffer input;
125
126 /* Buffer for raw output data going to the socket. */
127 Buffer output;
128
129 /* Buffer for the partial outgoing packet being constructed. */
130 Buffer outgoing_packet;
131
132 /* Buffer for the incoming packet currently being processed. */
133 Buffer incoming_packet;
134
135 /* Scratch buffer for packet compression/decompression. */
136 Buffer compression_buffer;
137 int compression_buffer_ready;
138
139 /*
140 * Flag indicating whether packet compression/decompression is
141 * enabled.
142 */
143 int packet_compression;
144
145 /* default maximum packet size */
146 u_int max_packet_size;
147
148 /* Flag indicating whether this module has been initialized. */
149 int initialized;
150
151 /* Set to true if the connection is interactive. */
152 int interactive_mode;
153
154 /* Set to true if we are the server side. */
155 int server_side;
156
157 /* Set to true if we are authenticated. */
158 int after_authentication;
159
160 int keep_alive_timeouts;
161
162 /* The maximum time that we will wait to send or receive a packet */
163 int packet_timeout_ms;
164
165 /* Session key information for Encryption and MAC */
166 Newkeys *newkeys[MODE_MAX];
167 struct packet_state p_read, p_send;
168
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000169 /* Volume-based rekeying */
Darren Tuckerf7288d72009-06-21 18:12:20 +1000170 u_int64_t max_blocks_in, max_blocks_out;
171 u_int32_t rekey_limit;
172
Darren Tuckerc53c2af2013-05-16 20:28:16 +1000173 /* Time-based rekeying */
174 time_t rekey_interval; /* how often in seconds */
175 time_t rekey_time; /* time of last rekeying */
176
Darren Tuckerf7288d72009-06-21 18:12:20 +1000177 /* Session key for protocol v1 */
178 u_char ssh1_key[SSH_SESSION_KEY_LENGTH];
179 u_int ssh1_keylen;
180
181 /* roundup current message to extra_pad bytes */
182 u_char extra_pad;
183
184 /* XXX discard incoming data after MAC error */
185 u_int packet_discard;
186 Mac *packet_discard_mac;
187
188 /* Used in packet_read_poll2() */
189 u_int packlen;
190
Darren Tucker7b935c72009-06-21 18:59:36 +1000191 /* Used in packet_send2 */
192 int rekeying;
193
194 /* Used in packet_set_interactive */
195 int set_interactive_called;
196
197 /* Used in packet_set_maxsize */
198 int set_maxsize_called;
199
Darren Tuckerf7288d72009-06-21 18:12:20 +1000200 TAILQ_HEAD(, packet) outgoing;
201};
202
Darren Tuckere841eb02009-07-06 07:11:13 +1000203static struct session_state *active_state, *backup_state;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000204
205static struct session_state *
Darren Tuckerb422afa2009-06-21 18:58:46 +1000206alloc_session_state(void)
Darren Tuckerf7288d72009-06-21 18:12:20 +1000207{
Damien Miller7a221a12010-11-20 15:14:29 +1100208 struct session_state *s = xcalloc(1, sizeof(*s));
Darren Tuckerf7288d72009-06-21 18:12:20 +1000209
Damien Miller7a221a12010-11-20 15:14:29 +1100210 s->connection_in = -1;
211 s->connection_out = -1;
212 s->max_packet_size = 32768;
213 s->packet_timeout_ms = -1;
214 return s;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000215}
Damien Millera5539d22003-04-09 20:50:06 +1000216
Damien Miller5428f641999-11-25 11:54:57 +1100217/*
218 * Sets the descriptors used for communication. Disables encryption until
219 * packet_set_encryption_key is called.
220 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000221void
222packet_set_connection(int fd_in, int fd_out)
223{
Damien Millerea111192013-04-23 19:24:32 +1000224 const Cipher *none = cipher_by_name("none");
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000225
Damien Miller874d77b2000-10-14 16:23:11 +1100226 if (none == NULL)
227 fatal("packet_set_connection: cannot load cipher 'none'");
Darren Tuckerf7288d72009-06-21 18:12:20 +1000228 if (active_state == NULL)
229 active_state = alloc_session_state();
230 active_state->connection_in = fd_in;
231 active_state->connection_out = fd_out;
232 cipher_init(&active_state->send_context, none, (const u_char *)"",
Darren Tucker1f8311c2004-05-13 16:39:33 +1000233 0, NULL, 0, CIPHER_ENCRYPT);
Darren Tuckerf7288d72009-06-21 18:12:20 +1000234 cipher_init(&active_state->receive_context, none, (const u_char *)"",
Darren Tucker1f8311c2004-05-13 16:39:33 +1000235 0, NULL, 0, CIPHER_DECRYPT);
Darren Tuckerf7288d72009-06-21 18:12:20 +1000236 active_state->newkeys[MODE_IN] = active_state->newkeys[MODE_OUT] = NULL;
237 if (!active_state->initialized) {
238 active_state->initialized = 1;
239 buffer_init(&active_state->input);
240 buffer_init(&active_state->output);
241 buffer_init(&active_state->outgoing_packet);
242 buffer_init(&active_state->incoming_packet);
243 TAILQ_INIT(&active_state->outgoing);
244 active_state->p_send.packets = active_state->p_read.packets = 0;
Damien Miller95def091999-11-25 00:26:21 +1100245 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000246}
247
Darren Tucker3fc464e2008-06-13 06:42:45 +1000248void
249packet_set_timeout(int timeout, int count)
250{
Damien Miller8ed4de82011-12-19 10:52:50 +1100251 if (timeout <= 0 || count <= 0) {
Darren Tuckerf7288d72009-06-21 18:12:20 +1000252 active_state->packet_timeout_ms = -1;
Darren Tucker3fc464e2008-06-13 06:42:45 +1000253 return;
254 }
255 if ((INT_MAX / 1000) / count < timeout)
Darren Tuckerf7288d72009-06-21 18:12:20 +1000256 active_state->packet_timeout_ms = INT_MAX;
Darren Tucker3fc464e2008-06-13 06:42:45 +1000257 else
Darren Tuckerf7288d72009-06-21 18:12:20 +1000258 active_state->packet_timeout_ms = timeout * count * 1000;
Darren Tucker3fc464e2008-06-13 06:42:45 +1000259}
260
Damien Miller13ae44c2009-01-28 16:38:41 +1100261static void
262packet_stop_discard(void)
263{
Darren Tuckerf7288d72009-06-21 18:12:20 +1000264 if (active_state->packet_discard_mac) {
Damien Miller13ae44c2009-01-28 16:38:41 +1100265 char buf[1024];
266
267 memset(buf, 'a', sizeof(buf));
Darren Tuckerf7288d72009-06-21 18:12:20 +1000268 while (buffer_len(&active_state->incoming_packet) <
269 PACKET_MAX_SIZE)
270 buffer_append(&active_state->incoming_packet, buf,
271 sizeof(buf));
272 (void) mac_compute(active_state->packet_discard_mac,
273 active_state->p_read.seqnr,
274 buffer_ptr(&active_state->incoming_packet),
Damien Miller13ae44c2009-01-28 16:38:41 +1100275 PACKET_MAX_SIZE);
276 }
277 logit("Finished discarding for %.200s", get_remote_ipaddr());
278 cleanup_exit(255);
279}
280
281static void
282packet_start_discard(Enc *enc, Mac *mac, u_int packet_length, u_int discard)
283{
Damien Milleraf43a7a2012-12-12 10:46:31 +1100284 if (enc == NULL || !cipher_is_cbc(enc->cipher) || (mac && mac->etm))
Damien Miller13ae44c2009-01-28 16:38:41 +1100285 packet_disconnect("Packet corrupt");
286 if (packet_length != PACKET_MAX_SIZE && mac && mac->enabled)
Darren Tuckerf7288d72009-06-21 18:12:20 +1000287 active_state->packet_discard_mac = mac;
288 if (buffer_len(&active_state->input) >= discard)
Damien Miller13ae44c2009-01-28 16:38:41 +1100289 packet_stop_discard();
Darren Tuckerf7288d72009-06-21 18:12:20 +1000290 active_state->packet_discard = discard -
291 buffer_len(&active_state->input);
Damien Miller13ae44c2009-01-28 16:38:41 +1100292}
293
Damien Miller34132e52000-01-14 15:45:46 +1100294/* Returns 1 if remote host is connected via socket, 0 if not. */
295
296int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000297packet_connection_is_on_socket(void)
Damien Miller34132e52000-01-14 15:45:46 +1100298{
299 struct sockaddr_storage from, to;
300 socklen_t fromlen, tolen;
301
302 /* filedescriptors in and out are the same, so it's a socket */
Darren Tuckerf7288d72009-06-21 18:12:20 +1000303 if (active_state->connection_in == active_state->connection_out)
Damien Miller34132e52000-01-14 15:45:46 +1100304 return 1;
305 fromlen = sizeof(from);
306 memset(&from, 0, sizeof(from));
Darren Tuckerf7288d72009-06-21 18:12:20 +1000307 if (getpeername(active_state->connection_in, (struct sockaddr *)&from,
308 &fromlen) < 0)
Damien Miller34132e52000-01-14 15:45:46 +1100309 return 0;
310 tolen = sizeof(to);
311 memset(&to, 0, sizeof(to));
Darren Tuckerf7288d72009-06-21 18:12:20 +1000312 if (getpeername(active_state->connection_out, (struct sockaddr *)&to,
313 &tolen) < 0)
Damien Miller34132e52000-01-14 15:45:46 +1100314 return 0;
315 if (fromlen != tolen || memcmp(&from, &to, fromlen) != 0)
316 return 0;
317 if (from.ss_family != AF_INET && from.ss_family != AF_INET6)
318 return 0;
319 return 1;
320}
321
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000322/*
Ben Lindstromf6027d32002-03-22 01:42:04 +0000323 * Exports an IV from the CipherContext required to export the key
324 * state back from the unprivileged child to the privileged parent
325 * process.
326 */
327
328void
329packet_get_keyiv(int mode, u_char *iv, u_int len)
330{
331 CipherContext *cc;
332
333 if (mode == MODE_OUT)
Darren Tuckerf7288d72009-06-21 18:12:20 +1000334 cc = &active_state->send_context;
Ben Lindstromf6027d32002-03-22 01:42:04 +0000335 else
Darren Tuckerf7288d72009-06-21 18:12:20 +1000336 cc = &active_state->receive_context;
Ben Lindstromf6027d32002-03-22 01:42:04 +0000337
338 cipher_get_keyiv(cc, iv, len);
339}
340
341int
342packet_get_keycontext(int mode, u_char *dat)
343{
344 CipherContext *cc;
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000345
Ben Lindstromf6027d32002-03-22 01:42:04 +0000346 if (mode == MODE_OUT)
Darren Tuckerf7288d72009-06-21 18:12:20 +1000347 cc = &active_state->send_context;
Ben Lindstromf6027d32002-03-22 01:42:04 +0000348 else
Darren Tuckerf7288d72009-06-21 18:12:20 +1000349 cc = &active_state->receive_context;
Ben Lindstromf6027d32002-03-22 01:42:04 +0000350
351 return (cipher_get_keycontext(cc, dat));
352}
353
354void
355packet_set_keycontext(int mode, u_char *dat)
356{
357 CipherContext *cc;
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000358
Ben Lindstromf6027d32002-03-22 01:42:04 +0000359 if (mode == MODE_OUT)
Darren Tuckerf7288d72009-06-21 18:12:20 +1000360 cc = &active_state->send_context;
Ben Lindstromf6027d32002-03-22 01:42:04 +0000361 else
Darren Tuckerf7288d72009-06-21 18:12:20 +1000362 cc = &active_state->receive_context;
Ben Lindstromf6027d32002-03-22 01:42:04 +0000363
364 cipher_set_keycontext(cc, dat);
365}
366
367int
368packet_get_keyiv_len(int mode)
369{
370 CipherContext *cc;
371
372 if (mode == MODE_OUT)
Darren Tuckerf7288d72009-06-21 18:12:20 +1000373 cc = &active_state->send_context;
Ben Lindstromf6027d32002-03-22 01:42:04 +0000374 else
Darren Tuckerf7288d72009-06-21 18:12:20 +1000375 cc = &active_state->receive_context;
Ben Lindstromf6027d32002-03-22 01:42:04 +0000376
377 return (cipher_get_keyiv_len(cc));
378}
Damien Miller4f7becb2006-03-26 14:10:14 +1100379
Ben Lindstromf6027d32002-03-22 01:42:04 +0000380void
381packet_set_iv(int mode, u_char *dat)
382{
383 CipherContext *cc;
384
385 if (mode == MODE_OUT)
Darren Tuckerf7288d72009-06-21 18:12:20 +1000386 cc = &active_state->send_context;
Ben Lindstromf6027d32002-03-22 01:42:04 +0000387 else
Darren Tuckerf7288d72009-06-21 18:12:20 +1000388 cc = &active_state->receive_context;
Ben Lindstromf6027d32002-03-22 01:42:04 +0000389
390 cipher_set_keyiv(cc, dat);
391}
Damien Miller4f7becb2006-03-26 14:10:14 +1100392
Ben Lindstromf6027d32002-03-22 01:42:04 +0000393int
Damien Miller2b92d322003-06-11 22:05:06 +1000394packet_get_ssh1_cipher(void)
Ben Lindstromf6027d32002-03-22 01:42:04 +0000395{
Darren Tuckerf7288d72009-06-21 18:12:20 +1000396 return (cipher_get_number(active_state->receive_context.cipher));
Ben Lindstromf6027d32002-03-22 01:42:04 +0000397}
398
Damien Millera5539d22003-04-09 20:50:06 +1000399void
Damien Miller7a221a12010-11-20 15:14:29 +1100400packet_get_state(int mode, u_int32_t *seqnr, u_int64_t *blocks,
401 u_int32_t *packets, u_int64_t *bytes)
Ben Lindstromf6027d32002-03-22 01:42:04 +0000402{
Damien Millera5539d22003-04-09 20:50:06 +1000403 struct packet_state *state;
404
Darren Tuckerf7288d72009-06-21 18:12:20 +1000405 state = (mode == MODE_IN) ?
406 &active_state->p_read : &active_state->p_send;
Damien Millerb61f3fc2008-07-11 17:36:48 +1000407 if (seqnr)
408 *seqnr = state->seqnr;
409 if (blocks)
410 *blocks = state->blocks;
411 if (packets)
412 *packets = state->packets;
413 if (bytes)
414 *bytes = state->bytes;
Ben Lindstromf6027d32002-03-22 01:42:04 +0000415}
416
417void
Damien Millerb61f3fc2008-07-11 17:36:48 +1000418packet_set_state(int mode, u_int32_t seqnr, u_int64_t blocks, u_int32_t packets,
419 u_int64_t bytes)
Ben Lindstromf6027d32002-03-22 01:42:04 +0000420{
Damien Millera5539d22003-04-09 20:50:06 +1000421 struct packet_state *state;
422
Darren Tuckerf7288d72009-06-21 18:12:20 +1000423 state = (mode == MODE_IN) ?
424 &active_state->p_read : &active_state->p_send;
Damien Millera5539d22003-04-09 20:50:06 +1000425 state->seqnr = seqnr;
426 state->blocks = blocks;
427 state->packets = packets;
Damien Millerb61f3fc2008-07-11 17:36:48 +1000428 state->bytes = bytes;
Ben Lindstromf6027d32002-03-22 01:42:04 +0000429}
430
Damien Millerd2ac5d72011-05-15 08:43:13 +1000431static int
432packet_connection_af(void)
Damien Miller34132e52000-01-14 15:45:46 +1100433{
434 struct sockaddr_storage to;
Damien Miller6fe375d2000-01-23 09:38:00 +1100435 socklen_t tolen = sizeof(to);
Damien Miller34132e52000-01-14 15:45:46 +1100436
437 memset(&to, 0, sizeof(to));
Darren Tuckerf7288d72009-06-21 18:12:20 +1000438 if (getsockname(active_state->connection_out, (struct sockaddr *)&to,
439 &tolen) < 0)
Damien Miller34132e52000-01-14 15:45:46 +1100440 return 0;
Damien Milleraa100c52002-04-26 16:54:34 +1000441#ifdef IPV4_IN_IPV6
Damien Millera8e06ce2003-11-21 23:48:55 +1100442 if (to.ss_family == AF_INET6 &&
Damien Milleraa100c52002-04-26 16:54:34 +1000443 IN6_IS_ADDR_V4MAPPED(&((struct sockaddr_in6 *)&to)->sin6_addr))
Damien Millerd2ac5d72011-05-15 08:43:13 +1000444 return AF_INET;
Damien Milleraa100c52002-04-26 16:54:34 +1000445#endif
Damien Millerd2ac5d72011-05-15 08:43:13 +1000446 return to.ss_family;
Damien Miller34132e52000-01-14 15:45:46 +1100447}
448
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000449/* Sets the connection into non-blocking mode. */
450
451void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000452packet_set_nonblocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000453{
Damien Miller95def091999-11-25 00:26:21 +1100454 /* Set the socket into non-blocking mode. */
Darren Tuckerf7288d72009-06-21 18:12:20 +1000455 set_nonblock(active_state->connection_in);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000456
Darren Tuckerf7288d72009-06-21 18:12:20 +1000457 if (active_state->connection_out != active_state->connection_in)
458 set_nonblock(active_state->connection_out);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000459}
460
461/* Returns the socket used for reading. */
462
463int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000464packet_get_connection_in(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000465{
Darren Tuckerf7288d72009-06-21 18:12:20 +1000466 return active_state->connection_in;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000467}
468
469/* Returns the descriptor used for writing. */
470
471int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000472packet_get_connection_out(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000473{
Darren Tuckerf7288d72009-06-21 18:12:20 +1000474 return active_state->connection_out;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000475}
476
477/* Closes the connection and clears and frees internal data structures. */
478
479void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000480packet_close(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000481{
Darren Tuckerf7288d72009-06-21 18:12:20 +1000482 if (!active_state->initialized)
Damien Miller95def091999-11-25 00:26:21 +1100483 return;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000484 active_state->initialized = 0;
485 if (active_state->connection_in == active_state->connection_out) {
486 shutdown(active_state->connection_out, SHUT_RDWR);
487 close(active_state->connection_out);
Damien Miller95def091999-11-25 00:26:21 +1100488 } else {
Darren Tuckerf7288d72009-06-21 18:12:20 +1000489 close(active_state->connection_in);
490 close(active_state->connection_out);
Damien Miller95def091999-11-25 00:26:21 +1100491 }
Darren Tuckerf7288d72009-06-21 18:12:20 +1000492 buffer_free(&active_state->input);
493 buffer_free(&active_state->output);
494 buffer_free(&active_state->outgoing_packet);
495 buffer_free(&active_state->incoming_packet);
496 if (active_state->compression_buffer_ready) {
497 buffer_free(&active_state->compression_buffer);
Damien Miller95def091999-11-25 00:26:21 +1100498 buffer_compress_uninit();
499 }
Darren Tuckerf7288d72009-06-21 18:12:20 +1000500 cipher_cleanup(&active_state->send_context);
501 cipher_cleanup(&active_state->receive_context);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000502}
503
504/* Sets remote side protocol flags. */
505
506void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000507packet_set_protocol_flags(u_int protocol_flags)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000508{
Darren Tuckerf7288d72009-06-21 18:12:20 +1000509 active_state->remote_protocol_flags = protocol_flags;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000510}
511
512/* Returns the remote protocol flags set earlier by the above function. */
513
Ben Lindstrom46c16222000-12-22 01:43:59 +0000514u_int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000515packet_get_protocol_flags(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000516{
Darren Tuckerf7288d72009-06-21 18:12:20 +1000517 return active_state->remote_protocol_flags;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000518}
519
Damien Miller5428f641999-11-25 11:54:57 +1100520/*
521 * Starts packet compression from the next packet on in both directions.
522 * Level is compression level 1 (fastest) - 9 (slow, best) as in gzip.
523 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000524
Ben Lindstrombba81212001-06-25 05:01:22 +0000525static void
526packet_init_compression(void)
Ben Lindstromfb50cdf2001-04-05 23:20:46 +0000527{
Darren Tuckerf7288d72009-06-21 18:12:20 +1000528 if (active_state->compression_buffer_ready == 1)
Ben Lindstromfb50cdf2001-04-05 23:20:46 +0000529 return;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000530 active_state->compression_buffer_ready = 1;
531 buffer_init(&active_state->compression_buffer);
Ben Lindstromfb50cdf2001-04-05 23:20:46 +0000532}
533
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000534void
535packet_start_compression(int level)
536{
Darren Tuckerf7288d72009-06-21 18:12:20 +1000537 if (active_state->packet_compression && !compat20)
Damien Miller95def091999-11-25 00:26:21 +1100538 fatal("Compression already enabled.");
Darren Tuckerf7288d72009-06-21 18:12:20 +1000539 active_state->packet_compression = 1;
Ben Lindstromfb50cdf2001-04-05 23:20:46 +0000540 packet_init_compression();
541 buffer_compress_init_send(level);
542 buffer_compress_init_recv();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000543}
544
Damien Miller5428f641999-11-25 11:54:57 +1100545/*
Damien Miller5428f641999-11-25 11:54:57 +1100546 * Causes any further packets to be encrypted using the given key. The same
547 * key is used for both sending and reception. However, both directions are
548 * encrypted independently of each other.
549 */
Ben Lindstrom402c6cc2002-06-21 00:43:42 +0000550
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000551void
Damien Miller7a221a12010-11-20 15:14:29 +1100552packet_set_encryption_key(const u_char *key, u_int keylen, int number)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000553{
Damien Millerea111192013-04-23 19:24:32 +1000554 const Cipher *cipher = cipher_by_number(number);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000555
Damien Miller874d77b2000-10-14 16:23:11 +1100556 if (cipher == NULL)
557 fatal("packet_set_encryption_key: unknown cipher number %d", number);
Damien Miller33b13562000-04-04 14:38:59 +1000558 if (keylen < 20)
Damien Miller874d77b2000-10-14 16:23:11 +1100559 fatal("packet_set_encryption_key: keylen too small: %d", keylen);
Ben Lindstrom402c6cc2002-06-21 00:43:42 +0000560 if (keylen > SSH_SESSION_KEY_LENGTH)
561 fatal("packet_set_encryption_key: keylen too big: %d", keylen);
Darren Tuckerf7288d72009-06-21 18:12:20 +1000562 memcpy(active_state->ssh1_key, key, keylen);
563 active_state->ssh1_keylen = keylen;
564 cipher_init(&active_state->send_context, cipher, key, keylen, NULL,
565 0, CIPHER_ENCRYPT);
566 cipher_init(&active_state->receive_context, cipher, key, keylen, NULL,
567 0, CIPHER_DECRYPT);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000568}
569
Ben Lindstrom402c6cc2002-06-21 00:43:42 +0000570u_int
571packet_get_encryption_key(u_char *key)
572{
573 if (key == NULL)
Darren Tuckerf7288d72009-06-21 18:12:20 +1000574 return (active_state->ssh1_keylen);
575 memcpy(key, active_state->ssh1_key, active_state->ssh1_keylen);
576 return (active_state->ssh1_keylen);
Ben Lindstrom402c6cc2002-06-21 00:43:42 +0000577}
578
Ben Lindstrom80c6d772001-06-05 21:09:18 +0000579/* Start constructing a packet to send. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000580void
Ben Lindstrom80c6d772001-06-05 21:09:18 +0000581packet_start(u_char type)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000582{
Ben Lindstrom80c6d772001-06-05 21:09:18 +0000583 u_char buf[9];
584 int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000585
Ben Lindstrom204e4882001-03-05 06:47:00 +0000586 DBG(debug("packet_start[%d]", type));
Ben Lindstrom80c6d772001-06-05 21:09:18 +0000587 len = compat20 ? 6 : 9;
588 memset(buf, 0, len - 1);
589 buf[len - 1] = type;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000590 buffer_clear(&active_state->outgoing_packet);
591 buffer_append(&active_state->outgoing_packet, buf, len);
Damien Miller33b13562000-04-04 14:38:59 +1000592}
593
Ben Lindstrom80c6d772001-06-05 21:09:18 +0000594/* Append payload. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000595void
596packet_put_char(int value)
597{
Damien Miller95def091999-11-25 00:26:21 +1100598 char ch = value;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000599
Darren Tuckerf7288d72009-06-21 18:12:20 +1000600 buffer_append(&active_state->outgoing_packet, &ch, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000601}
Damien Miller4f7becb2006-03-26 14:10:14 +1100602
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000603void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000604packet_put_int(u_int value)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000605{
Darren Tuckerf7288d72009-06-21 18:12:20 +1000606 buffer_put_int(&active_state->outgoing_packet, value);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000607}
Damien Miller4f7becb2006-03-26 14:10:14 +1100608
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000609void
Darren Tucker761c3892009-06-21 18:16:26 +1000610packet_put_int64(u_int64_t value)
611{
612 buffer_put_int64(&active_state->outgoing_packet, value);
613}
614
615void
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100616packet_put_string(const void *buf, u_int len)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000617{
Darren Tuckerf7288d72009-06-21 18:12:20 +1000618 buffer_put_string(&active_state->outgoing_packet, buf, len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000619}
Damien Miller4f7becb2006-03-26 14:10:14 +1100620
Damien Miller33b13562000-04-04 14:38:59 +1000621void
622packet_put_cstring(const char *str)
623{
Darren Tuckerf7288d72009-06-21 18:12:20 +1000624 buffer_put_cstring(&active_state->outgoing_packet, str);
Damien Miller33b13562000-04-04 14:38:59 +1000625}
Damien Miller4f7becb2006-03-26 14:10:14 +1100626
Damien Miller33b13562000-04-04 14:38:59 +1000627void
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100628packet_put_raw(const void *buf, u_int len)
Damien Miller33b13562000-04-04 14:38:59 +1000629{
Darren Tuckerf7288d72009-06-21 18:12:20 +1000630 buffer_append(&active_state->outgoing_packet, buf, len);
Damien Miller33b13562000-04-04 14:38:59 +1000631}
Damien Miller4f7becb2006-03-26 14:10:14 +1100632
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000633void
Damien Miller95def091999-11-25 00:26:21 +1100634packet_put_bignum(BIGNUM * value)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000635{
Darren Tuckerf7288d72009-06-21 18:12:20 +1000636 buffer_put_bignum(&active_state->outgoing_packet, value);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000637}
Damien Miller4f7becb2006-03-26 14:10:14 +1100638
Damien Miller33b13562000-04-04 14:38:59 +1000639void
640packet_put_bignum2(BIGNUM * value)
641{
Darren Tuckerf7288d72009-06-21 18:12:20 +1000642 buffer_put_bignum2(&active_state->outgoing_packet, value);
Damien Miller33b13562000-04-04 14:38:59 +1000643}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000644
Damien Miller6af914a2010-09-10 11:39:26 +1000645#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000646void
647packet_put_ecpoint(const EC_GROUP *curve, const EC_POINT *point)
648{
649 buffer_put_ecpoint(&active_state->outgoing_packet, curve, point);
650}
Damien Miller6af914a2010-09-10 11:39:26 +1000651#endif
Damien Millereb8b60e2010-08-31 22:41:14 +1000652
Damien Miller5428f641999-11-25 11:54:57 +1100653/*
654 * Finalizes and sends the packet. If the encryption key has been set,
655 * encrypts the packet before sending.
656 */
Damien Miller95def091999-11-25 00:26:21 +1100657
Ben Lindstrombba81212001-06-25 05:01:22 +0000658static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000659packet_send1(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000660{
Ben Lindstrom4a7714a2002-02-26 18:04:38 +0000661 u_char buf[8], *cp;
Damien Miller95def091999-11-25 00:26:21 +1100662 int i, padding, len;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000663 u_int checksum;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000664 u_int32_t rnd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000665
Damien Miller5428f641999-11-25 11:54:57 +1100666 /*
667 * If using packet compression, compress the payload of the outgoing
668 * packet.
669 */
Darren Tuckerf7288d72009-06-21 18:12:20 +1000670 if (active_state->packet_compression) {
671 buffer_clear(&active_state->compression_buffer);
Damien Miller95def091999-11-25 00:26:21 +1100672 /* Skip padding. */
Darren Tuckerf7288d72009-06-21 18:12:20 +1000673 buffer_consume(&active_state->outgoing_packet, 8);
Damien Miller95def091999-11-25 00:26:21 +1100674 /* padding */
Darren Tuckerf7288d72009-06-21 18:12:20 +1000675 buffer_append(&active_state->compression_buffer,
676 "\0\0\0\0\0\0\0\0", 8);
677 buffer_compress(&active_state->outgoing_packet,
678 &active_state->compression_buffer);
679 buffer_clear(&active_state->outgoing_packet);
680 buffer_append(&active_state->outgoing_packet,
681 buffer_ptr(&active_state->compression_buffer),
682 buffer_len(&active_state->compression_buffer));
Damien Miller95def091999-11-25 00:26:21 +1100683 }
684 /* Compute packet length without padding (add checksum, remove padding). */
Darren Tuckerf7288d72009-06-21 18:12:20 +1000685 len = buffer_len(&active_state->outgoing_packet) + 4 - 8;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000686
Damien Millere247cc42000-05-07 12:03:14 +1000687 /* Insert padding. Initialized to zero in packet_start1() */
Damien Miller95def091999-11-25 00:26:21 +1100688 padding = 8 - len % 8;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000689 if (!active_state->send_context.plaintext) {
690 cp = buffer_ptr(&active_state->outgoing_packet);
Damien Miller95def091999-11-25 00:26:21 +1100691 for (i = 0; i < padding; i++) {
692 if (i % 4 == 0)
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000693 rnd = arc4random();
694 cp[7 - i] = rnd & 0xff;
695 rnd >>= 8;
Damien Miller95def091999-11-25 00:26:21 +1100696 }
697 }
Darren Tuckerf7288d72009-06-21 18:12:20 +1000698 buffer_consume(&active_state->outgoing_packet, 8 - padding);
Damien Miller95def091999-11-25 00:26:21 +1100699
700 /* Add check bytes. */
Darren Tuckerf7288d72009-06-21 18:12:20 +1000701 checksum = ssh_crc32(buffer_ptr(&active_state->outgoing_packet),
702 buffer_len(&active_state->outgoing_packet));
Damien Miller3f941882006-03-31 23:13:02 +1100703 put_u32(buf, checksum);
Darren Tuckerf7288d72009-06-21 18:12:20 +1000704 buffer_append(&active_state->outgoing_packet, buf, 4);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000705
706#ifdef PACKET_DEBUG
Damien Miller95def091999-11-25 00:26:21 +1100707 fprintf(stderr, "packet_send plain: ");
Darren Tuckerf7288d72009-06-21 18:12:20 +1000708 buffer_dump(&active_state->outgoing_packet);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000709#endif
710
Damien Miller95def091999-11-25 00:26:21 +1100711 /* Append to output. */
Damien Miller3f941882006-03-31 23:13:02 +1100712 put_u32(buf, len);
Darren Tuckerf7288d72009-06-21 18:12:20 +1000713 buffer_append(&active_state->output, buf, 4);
714 cp = buffer_append_space(&active_state->output,
715 buffer_len(&active_state->outgoing_packet));
Damien Millerbcd00ab2013-12-07 10:41:55 +1100716 if (cipher_crypt(&active_state->send_context, 0, cp,
Darren Tuckerf7288d72009-06-21 18:12:20 +1000717 buffer_ptr(&active_state->outgoing_packet),
Damien Millerbcd00ab2013-12-07 10:41:55 +1100718 buffer_len(&active_state->outgoing_packet), 0, 0) != 0)
719 fatal("%s: cipher_crypt failed", __func__);
Damien Miller95def091999-11-25 00:26:21 +1100720
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000721#ifdef PACKET_DEBUG
Damien Miller95def091999-11-25 00:26:21 +1100722 fprintf(stderr, "encrypted: ");
Darren Tuckerf7288d72009-06-21 18:12:20 +1000723 buffer_dump(&active_state->output);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000724#endif
Darren Tuckerf7288d72009-06-21 18:12:20 +1000725 active_state->p_send.packets++;
726 active_state->p_send.bytes += len +
727 buffer_len(&active_state->outgoing_packet);
728 buffer_clear(&active_state->outgoing_packet);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000729
Damien Miller5428f641999-11-25 11:54:57 +1100730 /*
Damien Miller788f2122005-11-05 15:14:59 +1100731 * Note that the packet is now only buffered in output. It won't be
Damien Miller5428f641999-11-25 11:54:57 +1100732 * actually sent until packet_write_wait or packet_write_poll is
733 * called.
734 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000735}
736
Ben Lindstromf6027d32002-03-22 01:42:04 +0000737void
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000738set_newkeys(int mode)
739{
740 Enc *enc;
741 Mac *mac;
742 Comp *comp;
743 CipherContext *cc;
Damien Millera5539d22003-04-09 20:50:06 +1000744 u_int64_t *max_blocks;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000745 int crypt_type;
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000746
Ben Lindstrom064496f2002-12-23 02:04:22 +0000747 debug2("set_newkeys: mode %d", mode);
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000748
Damien Miller963f6b22002-02-19 15:21:23 +1100749 if (mode == MODE_OUT) {
Darren Tuckerf7288d72009-06-21 18:12:20 +1000750 cc = &active_state->send_context;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000751 crypt_type = CIPHER_ENCRYPT;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000752 active_state->p_send.packets = active_state->p_send.blocks = 0;
753 max_blocks = &active_state->max_blocks_out;
Damien Miller963f6b22002-02-19 15:21:23 +1100754 } else {
Darren Tuckerf7288d72009-06-21 18:12:20 +1000755 cc = &active_state->receive_context;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000756 crypt_type = CIPHER_DECRYPT;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000757 active_state->p_read.packets = active_state->p_read.blocks = 0;
758 max_blocks = &active_state->max_blocks_in;
Damien Miller963f6b22002-02-19 15:21:23 +1100759 }
Darren Tuckerf7288d72009-06-21 18:12:20 +1000760 if (active_state->newkeys[mode] != NULL) {
Ben Lindstrom064496f2002-12-23 02:04:22 +0000761 debug("set_newkeys: rekeying");
Damien Miller963f6b22002-02-19 15:21:23 +1100762 cipher_cleanup(cc);
Darren Tuckerf7288d72009-06-21 18:12:20 +1000763 enc = &active_state->newkeys[mode]->enc;
764 mac = &active_state->newkeys[mode]->mac;
765 comp = &active_state->newkeys[mode]->comp;
Damien Millere45796f2007-06-11 14:01:42 +1000766 mac_clear(mac);
Damien Millera5103f42014-02-04 11:20:14 +1100767 explicit_bzero(enc->iv, enc->iv_len);
768 explicit_bzero(enc->key, enc->key_len);
769 explicit_bzero(mac->key, mac->key_len);
Darren Tuckera627d422013-06-02 07:31:17 +1000770 free(enc->name);
771 free(enc->iv);
772 free(enc->key);
773 free(mac->name);
774 free(mac->key);
775 free(comp->name);
776 free(active_state->newkeys[mode]);
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000777 }
Darren Tuckerf7288d72009-06-21 18:12:20 +1000778 active_state->newkeys[mode] = kex_get_newkeys(mode);
779 if (active_state->newkeys[mode] == NULL)
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000780 fatal("newkeys: no keys for mode %d", mode);
Darren Tuckerf7288d72009-06-21 18:12:20 +1000781 enc = &active_state->newkeys[mode]->enc;
782 mac = &active_state->newkeys[mode]->mac;
783 comp = &active_state->newkeys[mode]->comp;
Damien Miller1d75abf2013-01-09 16:12:19 +1100784 if (cipher_authlen(enc->cipher) == 0 && mac_init(mac) == 0)
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000785 mac->enabled = 1;
786 DBG(debug("cipher_init_context: %d", mode));
Damien Miller963f6b22002-02-19 15:21:23 +1100787 cipher_init(cc, enc->cipher, enc->key, enc->key_len,
Damien Miller1d75abf2013-01-09 16:12:19 +1100788 enc->iv, enc->iv_len, crypt_type);
Ben Lindstromf6027d32002-03-22 01:42:04 +0000789 /* Deleting the keys does not gain extra security */
Damien Millera5103f42014-02-04 11:20:14 +1100790 /* explicit_bzero(enc->iv, enc->block_size);
791 explicit_bzero(enc->key, enc->key_len);
792 explicit_bzero(mac->key, mac->key_len); */
Damien Miller9786e6e2005-07-26 21:54:56 +1000793 if ((comp->type == COMP_ZLIB ||
Darren Tuckerf7288d72009-06-21 18:12:20 +1000794 (comp->type == COMP_DELAYED &&
795 active_state->after_authentication)) && comp->enabled == 0) {
Ben Lindstromfb50cdf2001-04-05 23:20:46 +0000796 packet_init_compression();
797 if (mode == MODE_OUT)
798 buffer_compress_init_send(6);
799 else
800 buffer_compress_init_recv();
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000801 comp->enabled = 1;
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000802 }
Darren Tucker81a0b372003-07-14 17:31:06 +1000803 /*
804 * The 2^(blocksize*2) limit is too expensive for 3DES,
805 * blowfish, etc, so enforce a 1GB limit for small blocksizes.
806 */
807 if (enc->block_size >= 16)
808 *max_blocks = (u_int64_t)1 << (enc->block_size*2);
809 else
810 *max_blocks = ((u_int64_t)1 << 30) / enc->block_size;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000811 if (active_state->rekey_limit)
812 *max_blocks = MIN(*max_blocks,
813 active_state->rekey_limit / enc->block_size);
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000814}
815
Damien Miller5428f641999-11-25 11:54:57 +1100816/*
Damien Miller9786e6e2005-07-26 21:54:56 +1000817 * Delayed compression for SSH2 is enabled after authentication:
Darren Tuckerf676c572006-08-05 18:51:08 +1000818 * This happens on the server side after a SSH2_MSG_USERAUTH_SUCCESS is sent,
Damien Miller9786e6e2005-07-26 21:54:56 +1000819 * and on the client side after a SSH2_MSG_USERAUTH_SUCCESS is received.
820 */
821static void
822packet_enable_delayed_compress(void)
823{
824 Comp *comp = NULL;
825 int mode;
826
827 /*
828 * Remember that we are past the authentication step, so rekeying
829 * with COMP_DELAYED will turn on compression immediately.
830 */
Darren Tuckerf7288d72009-06-21 18:12:20 +1000831 active_state->after_authentication = 1;
Damien Miller9786e6e2005-07-26 21:54:56 +1000832 for (mode = 0; mode < MODE_MAX; mode++) {
Darren Tucker4aa665b2006-09-21 13:00:25 +1000833 /* protocol error: USERAUTH_SUCCESS received before NEWKEYS */
Darren Tuckerf7288d72009-06-21 18:12:20 +1000834 if (active_state->newkeys[mode] == NULL)
Darren Tucker4aa665b2006-09-21 13:00:25 +1000835 continue;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000836 comp = &active_state->newkeys[mode]->comp;
Damien Miller9786e6e2005-07-26 21:54:56 +1000837 if (comp && !comp->enabled && comp->type == COMP_DELAYED) {
Damien Millerb5c01252005-08-12 22:10:28 +1000838 packet_init_compression();
Damien Miller9786e6e2005-07-26 21:54:56 +1000839 if (mode == MODE_OUT)
840 buffer_compress_init_send(6);
841 else
842 buffer_compress_init_recv();
843 comp->enabled = 1;
844 }
845 }
846}
847
848/*
Damien Miller33b13562000-04-04 14:38:59 +1000849 * Finalize packet in SSH2 format (compress, mac, encrypt, enqueue)
850 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000851static void
Damien Millera5539d22003-04-09 20:50:06 +1000852packet_send2_wrapped(void)
Damien Miller33b13562000-04-04 14:38:59 +1000853{
Ben Lindstrom4a7714a2002-02-26 18:04:38 +0000854 u_char type, *cp, *macbuf = NULL;
Damien Milleraf43a7a2012-12-12 10:46:31 +1100855 u_char padlen, pad = 0;
Damien Miller1d75abf2013-01-09 16:12:19 +1100856 u_int i, len, authlen = 0, aadlen = 0;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000857 u_int32_t rnd = 0;
Damien Miller33b13562000-04-04 14:38:59 +1000858 Enc *enc = NULL;
859 Mac *mac = NULL;
860 Comp *comp = NULL;
861 int block_size;
862
Darren Tuckerf7288d72009-06-21 18:12:20 +1000863 if (active_state->newkeys[MODE_OUT] != NULL) {
864 enc = &active_state->newkeys[MODE_OUT]->enc;
865 mac = &active_state->newkeys[MODE_OUT]->mac;
866 comp = &active_state->newkeys[MODE_OUT]->comp;
Damien Miller1d75abf2013-01-09 16:12:19 +1100867 /* disable mac for authenticated encryption */
868 if ((authlen = cipher_authlen(enc->cipher)) != 0)
869 mac = NULL;
Damien Miller33b13562000-04-04 14:38:59 +1000870 }
Damien Miller963f6b22002-02-19 15:21:23 +1100871 block_size = enc ? enc->block_size : 8;
Damien Miller1d75abf2013-01-09 16:12:19 +1100872 aadlen = (mac && mac->enabled && mac->etm) || authlen ? 4 : 0;
Damien Miller33b13562000-04-04 14:38:59 +1000873
Darren Tuckerf7288d72009-06-21 18:12:20 +1000874 cp = buffer_ptr(&active_state->outgoing_packet);
Ben Lindstrom4a7714a2002-02-26 18:04:38 +0000875 type = cp[5];
Damien Miller33b13562000-04-04 14:38:59 +1000876
877#ifdef PACKET_DEBUG
878 fprintf(stderr, "plain: ");
Darren Tuckerf7288d72009-06-21 18:12:20 +1000879 buffer_dump(&active_state->outgoing_packet);
Damien Miller33b13562000-04-04 14:38:59 +1000880#endif
881
882 if (comp && comp->enabled) {
Darren Tuckerf7288d72009-06-21 18:12:20 +1000883 len = buffer_len(&active_state->outgoing_packet);
Damien Miller33b13562000-04-04 14:38:59 +1000884 /* skip header, compress only payload */
Darren Tuckerf7288d72009-06-21 18:12:20 +1000885 buffer_consume(&active_state->outgoing_packet, 5);
886 buffer_clear(&active_state->compression_buffer);
887 buffer_compress(&active_state->outgoing_packet,
888 &active_state->compression_buffer);
889 buffer_clear(&active_state->outgoing_packet);
890 buffer_append(&active_state->outgoing_packet, "\0\0\0\0\0", 5);
891 buffer_append(&active_state->outgoing_packet,
892 buffer_ptr(&active_state->compression_buffer),
893 buffer_len(&active_state->compression_buffer));
Damien Miller33b13562000-04-04 14:38:59 +1000894 DBG(debug("compression: raw %d compressed %d", len,
Darren Tuckerf7288d72009-06-21 18:12:20 +1000895 buffer_len(&active_state->outgoing_packet)));
Damien Miller33b13562000-04-04 14:38:59 +1000896 }
897
898 /* sizeof (packet_len + pad_len + payload) */
Darren Tuckerf7288d72009-06-21 18:12:20 +1000899 len = buffer_len(&active_state->outgoing_packet);
Damien Miller33b13562000-04-04 14:38:59 +1000900
901 /*
902 * calc size of padding, alloc space, get random data,
903 * minimum padding is 4 bytes
904 */
Damien Milleraf43a7a2012-12-12 10:46:31 +1100905 len -= aadlen; /* packet length is not encrypted for EtM modes */
Damien Miller33b13562000-04-04 14:38:59 +1000906 padlen = block_size - (len % block_size);
907 if (padlen < 4)
908 padlen += block_size;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000909 if (active_state->extra_pad) {
Damien Miller9f643902001-11-12 11:02:52 +1100910 /* will wrap if extra_pad+padlen > 255 */
Darren Tuckerf7288d72009-06-21 18:12:20 +1000911 active_state->extra_pad =
912 roundup(active_state->extra_pad, block_size);
913 pad = active_state->extra_pad -
914 ((len + padlen) % active_state->extra_pad);
Damien Miller2a328432014-04-20 13:24:01 +1000915 DBG(debug3("%s: adding %d (len %d padlen %d extra_pad %d)",
916 __func__, pad, len, padlen, active_state->extra_pad));
Damien Miller9f643902001-11-12 11:02:52 +1100917 padlen += pad;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000918 active_state->extra_pad = 0;
Damien Miller9f643902001-11-12 11:02:52 +1100919 }
Darren Tuckerf7288d72009-06-21 18:12:20 +1000920 cp = buffer_append_space(&active_state->outgoing_packet, padlen);
921 if (enc && !active_state->send_context.plaintext) {
Damien Millere247cc42000-05-07 12:03:14 +1000922 /* random padding */
Damien Miller33b13562000-04-04 14:38:59 +1000923 for (i = 0; i < padlen; i++) {
924 if (i % 4 == 0)
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000925 rnd = arc4random();
926 cp[i] = rnd & 0xff;
927 rnd >>= 8;
Damien Miller33b13562000-04-04 14:38:59 +1000928 }
Damien Millere247cc42000-05-07 12:03:14 +1000929 } else {
930 /* clear padding */
Damien Millera5103f42014-02-04 11:20:14 +1100931 explicit_bzero(cp, padlen);
Damien Miller33b13562000-04-04 14:38:59 +1000932 }
Damien Milleraf43a7a2012-12-12 10:46:31 +1100933 /* sizeof (packet_len + pad_len + payload + padding) */
934 len = buffer_len(&active_state->outgoing_packet);
Darren Tuckerf7288d72009-06-21 18:12:20 +1000935 cp = buffer_ptr(&active_state->outgoing_packet);
Damien Milleraf43a7a2012-12-12 10:46:31 +1100936 /* packet_length includes payload, padding and padding length field */
937 put_u32(cp, len - 4);
Ben Lindstrom4a7714a2002-02-26 18:04:38 +0000938 cp[4] = padlen;
Damien Milleraf43a7a2012-12-12 10:46:31 +1100939 DBG(debug("send: len %d (includes padlen %d, aadlen %d)",
940 len, padlen, aadlen));
Damien Miller33b13562000-04-04 14:38:59 +1000941
942 /* compute MAC over seqnr and packet(length fields, payload, padding) */
Damien Milleraf43a7a2012-12-12 10:46:31 +1100943 if (mac && mac->enabled && !mac->etm) {
Darren Tuckerf7288d72009-06-21 18:12:20 +1000944 macbuf = mac_compute(mac, active_state->p_send.seqnr,
Damien Milleraf43a7a2012-12-12 10:46:31 +1100945 buffer_ptr(&active_state->outgoing_packet), len);
Darren Tuckerf7288d72009-06-21 18:12:20 +1000946 DBG(debug("done calc MAC out #%d", active_state->p_send.seqnr));
Damien Miller33b13562000-04-04 14:38:59 +1000947 }
948 /* encrypt packet and append to output buffer. */
Damien Miller1d75abf2013-01-09 16:12:19 +1100949 cp = buffer_append_space(&active_state->output, len + authlen);
Damien Millerbcd00ab2013-12-07 10:41:55 +1100950 if (cipher_crypt(&active_state->send_context, active_state->p_send.seqnr,
Damien Miller0fde8ac2013-11-21 14:12:23 +1100951 cp, buffer_ptr(&active_state->outgoing_packet),
Damien Millerbcd00ab2013-12-07 10:41:55 +1100952 len - aadlen, aadlen, authlen) != 0)
953 fatal("%s: cipher_crypt failed", __func__);
Damien Miller33b13562000-04-04 14:38:59 +1000954 /* append unencrypted MAC */
Damien Milleraf43a7a2012-12-12 10:46:31 +1100955 if (mac && mac->enabled) {
956 if (mac->etm) {
957 /* EtM: compute mac over aadlen + cipher text */
958 macbuf = mac_compute(mac,
959 active_state->p_send.seqnr, cp, len);
960 DBG(debug("done calc MAC(EtM) out #%d",
961 active_state->p_send.seqnr));
962 }
Darren Tuckerf7288d72009-06-21 18:12:20 +1000963 buffer_append(&active_state->output, macbuf, mac->mac_len);
Damien Milleraf43a7a2012-12-12 10:46:31 +1100964 }
Damien Miller33b13562000-04-04 14:38:59 +1000965#ifdef PACKET_DEBUG
966 fprintf(stderr, "encrypted: ");
Darren Tuckerf7288d72009-06-21 18:12:20 +1000967 buffer_dump(&active_state->output);
Damien Miller33b13562000-04-04 14:38:59 +1000968#endif
Damien Miller4af51302000-04-16 11:18:38 +1000969 /* increment sequence number for outgoing packets */
Darren Tuckerf7288d72009-06-21 18:12:20 +1000970 if (++active_state->p_send.seqnr == 0)
Damien Miller996acd22003-04-09 20:59:48 +1000971 logit("outgoing seqnr wraps around");
Darren Tuckerf7288d72009-06-21 18:12:20 +1000972 if (++active_state->p_send.packets == 0)
Damien Millera5539d22003-04-09 20:50:06 +1000973 if (!(datafellows & SSH_BUG_NOREKEY))
974 fatal("XXX too many packets with same key");
Damien Milleraf43a7a2012-12-12 10:46:31 +1100975 active_state->p_send.blocks += len / block_size;
976 active_state->p_send.bytes += len;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000977 buffer_clear(&active_state->outgoing_packet);
Damien Miller33b13562000-04-04 14:38:59 +1000978
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000979 if (type == SSH2_MSG_NEWKEYS)
980 set_newkeys(MODE_OUT);
Darren Tuckerf7288d72009-06-21 18:12:20 +1000981 else if (type == SSH2_MSG_USERAUTH_SUCCESS && active_state->server_side)
Damien Miller9786e6e2005-07-26 21:54:56 +1000982 packet_enable_delayed_compress();
Damien Miller33b13562000-04-04 14:38:59 +1000983}
984
Damien Millera5539d22003-04-09 20:50:06 +1000985static void
986packet_send2(void)
987{
Damien Millera5539d22003-04-09 20:50:06 +1000988 struct packet *p;
989 u_char type, *cp;
990
Darren Tuckerf7288d72009-06-21 18:12:20 +1000991 cp = buffer_ptr(&active_state->outgoing_packet);
Damien Millera5539d22003-04-09 20:50:06 +1000992 type = cp[5];
993
994 /* during rekeying we can only send key exchange messages */
Darren Tucker7b935c72009-06-21 18:59:36 +1000995 if (active_state->rekeying) {
Damien Miller1de2cfe2012-02-11 08:18:43 +1100996 if ((type < SSH2_MSG_TRANSPORT_MIN) ||
997 (type > SSH2_MSG_TRANSPORT_MAX) ||
998 (type == SSH2_MSG_SERVICE_REQUEST) ||
999 (type == SSH2_MSG_SERVICE_ACCEPT)) {
Damien Millera5539d22003-04-09 20:50:06 +10001000 debug("enqueue packet: %u", type);
Damien Miller6c81fee2013-11-08 12:19:55 +11001001 p = xcalloc(1, sizeof(*p));
Damien Millera5539d22003-04-09 20:50:06 +10001002 p->type = type;
Darren Tuckerf7288d72009-06-21 18:12:20 +10001003 memcpy(&p->payload, &active_state->outgoing_packet,
1004 sizeof(Buffer));
1005 buffer_init(&active_state->outgoing_packet);
1006 TAILQ_INSERT_TAIL(&active_state->outgoing, p, next);
Damien Millera5539d22003-04-09 20:50:06 +10001007 return;
1008 }
1009 }
1010
1011 /* rekeying starts with sending KEXINIT */
1012 if (type == SSH2_MSG_KEXINIT)
Darren Tucker7b935c72009-06-21 18:59:36 +10001013 active_state->rekeying = 1;
Damien Millera5539d22003-04-09 20:50:06 +10001014
1015 packet_send2_wrapped();
1016
1017 /* after a NEWKEYS message we can send the complete queue */
1018 if (type == SSH2_MSG_NEWKEYS) {
Darren Tucker7b935c72009-06-21 18:59:36 +10001019 active_state->rekeying = 0;
Darren Tuckerb759c9c2013-06-02 07:46:16 +10001020 active_state->rekey_time = monotime();
Darren Tuckerf7288d72009-06-21 18:12:20 +10001021 while ((p = TAILQ_FIRST(&active_state->outgoing))) {
Damien Millera5539d22003-04-09 20:50:06 +10001022 type = p->type;
1023 debug("dequeue packet: %u", type);
Darren Tuckerf7288d72009-06-21 18:12:20 +10001024 buffer_free(&active_state->outgoing_packet);
1025 memcpy(&active_state->outgoing_packet, &p->payload,
Damien Millera5539d22003-04-09 20:50:06 +10001026 sizeof(Buffer));
Darren Tuckerf7288d72009-06-21 18:12:20 +10001027 TAILQ_REMOVE(&active_state->outgoing, p, next);
Darren Tuckera627d422013-06-02 07:31:17 +10001028 free(p);
Damien Millera5539d22003-04-09 20:50:06 +10001029 packet_send2_wrapped();
1030 }
1031 }
1032}
1033
Damien Miller33b13562000-04-04 14:38:59 +10001034void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001035packet_send(void)
Damien Miller33b13562000-04-04 14:38:59 +10001036{
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001037 if (compat20)
Damien Miller33b13562000-04-04 14:38:59 +10001038 packet_send2();
1039 else
1040 packet_send1();
1041 DBG(debug("packet_send done"));
1042}
1043
Damien Miller33b13562000-04-04 14:38:59 +10001044/*
Damien Miller5428f641999-11-25 11:54:57 +11001045 * Waits until a packet has been received, and returns its type. Note that
1046 * no other data is processed until this returns, so this function should not
1047 * be used during the interactive session.
1048 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001049
1050int
Damien Millerdff50992002-01-22 23:16:32 +11001051packet_read_seqnr(u_int32_t *seqnr_p)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001052{
Damien Millerce986542013-07-18 16:12:44 +10001053 int type, len, ret, cont, ms_remain = 0;
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001054 fd_set *setp;
Damien Miller95def091999-11-25 00:26:21 +11001055 char buf[8192];
Darren Tucker3fc464e2008-06-13 06:42:45 +10001056 struct timeval timeout, start, *timeoutp = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001057
Darren Tucker99bb7612008-06-13 22:02:50 +10001058 DBG(debug("packet_read()"));
1059
Darren Tuckerf7288d72009-06-21 18:12:20 +10001060 setp = (fd_set *)xcalloc(howmany(active_state->connection_in + 1,
1061 NFDBITS), sizeof(fd_mask));
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001062
Damien Miller95def091999-11-25 00:26:21 +11001063 /* Since we are blocking, ensure that all written packets have been sent. */
1064 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001065
Damien Miller95def091999-11-25 00:26:21 +11001066 /* Stay in the loop until we have received a complete packet. */
1067 for (;;) {
1068 /* Try to read a packet from the buffer. */
Damien Millerdff50992002-01-22 23:16:32 +11001069 type = packet_read_poll_seqnr(seqnr_p);
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001070 if (!compat20 && (
Damien Millere247cc42000-05-07 12:03:14 +10001071 type == SSH_SMSG_SUCCESS
Damien Miller95def091999-11-25 00:26:21 +11001072 || type == SSH_SMSG_FAILURE
1073 || type == SSH_CMSG_EOF
Damien Millere247cc42000-05-07 12:03:14 +10001074 || type == SSH_CMSG_EXIT_CONFIRMATION))
Damien Miller48b03fc2002-01-22 23:11:40 +11001075 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +11001076 /* If we got a packet, return it. */
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001077 if (type != SSH_MSG_NONE) {
Darren Tuckera627d422013-06-02 07:31:17 +10001078 free(setp);
Damien Miller95def091999-11-25 00:26:21 +11001079 return type;
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001080 }
Damien Miller5428f641999-11-25 11:54:57 +11001081 /*
1082 * Otherwise, wait for some data to arrive, add it to the
1083 * buffer, and try again.
1084 */
Darren Tuckerf7288d72009-06-21 18:12:20 +10001085 memset(setp, 0, howmany(active_state->connection_in + 1,
1086 NFDBITS) * sizeof(fd_mask));
1087 FD_SET(active_state->connection_in, setp);
Damien Miller5428f641999-11-25 11:54:57 +11001088
Darren Tuckerf7288d72009-06-21 18:12:20 +10001089 if (active_state->packet_timeout_ms > 0) {
1090 ms_remain = active_state->packet_timeout_ms;
Darren Tucker3fc464e2008-06-13 06:42:45 +10001091 timeoutp = &timeout;
1092 }
Damien Miller95def091999-11-25 00:26:21 +11001093 /* Wait for some data to arrive. */
Darren Tucker3fc464e2008-06-13 06:42:45 +10001094 for (;;) {
Darren Tuckerf7288d72009-06-21 18:12:20 +10001095 if (active_state->packet_timeout_ms != -1) {
Darren Tucker3fc464e2008-06-13 06:42:45 +10001096 ms_to_timeval(&timeout, ms_remain);
1097 gettimeofday(&start, NULL);
1098 }
Darren Tuckerf7288d72009-06-21 18:12:20 +10001099 if ((ret = select(active_state->connection_in + 1, setp,
1100 NULL, NULL, timeoutp)) >= 0)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001101 break;
Damien Millerea437422009-10-02 11:49:03 +10001102 if (errno != EAGAIN && errno != EINTR &&
1103 errno != EWOULDBLOCK)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001104 break;
Darren Tuckerf7288d72009-06-21 18:12:20 +10001105 if (active_state->packet_timeout_ms == -1)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001106 continue;
1107 ms_subtract_diff(&start, &ms_remain);
1108 if (ms_remain <= 0) {
1109 ret = 0;
1110 break;
1111 }
1112 }
1113 if (ret == 0) {
1114 logit("Connection to %.200s timed out while "
1115 "waiting to read", get_remote_ipaddr());
1116 cleanup_exit(255);
1117 }
Damien Miller95def091999-11-25 00:26:21 +11001118 /* Read data from the socket. */
Darren Tuckerc5564e12009-06-21 18:53:53 +10001119 do {
1120 cont = 0;
1121 len = roaming_read(active_state->connection_in, buf,
1122 sizeof(buf), &cont);
1123 } while (len == 0 && cont);
Damien Miller5e7c10e1999-12-16 13:18:04 +11001124 if (len == 0) {
Damien Miller996acd22003-04-09 20:59:48 +10001125 logit("Connection closed by %.200s", get_remote_ipaddr());
Darren Tucker3e33cec2003-10-02 16:12:36 +10001126 cleanup_exit(255);
Damien Miller5e7c10e1999-12-16 13:18:04 +11001127 }
Damien Miller95def091999-11-25 00:26:21 +11001128 if (len < 0)
1129 fatal("Read from socket failed: %.100s", strerror(errno));
1130 /* Append it to the buffer. */
1131 packet_process_incoming(buf, len);
1132 }
1133 /* NOTREACHED */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001134}
1135
Damien Miller278f9072001-12-21 15:00:19 +11001136int
Damien Millerdff50992002-01-22 23:16:32 +11001137packet_read(void)
Damien Miller278f9072001-12-21 15:00:19 +11001138{
Damien Millerdff50992002-01-22 23:16:32 +11001139 return packet_read_seqnr(NULL);
Damien Miller278f9072001-12-21 15:00:19 +11001140}
1141
Damien Miller5428f641999-11-25 11:54:57 +11001142/*
1143 * Waits until a packet has been received, verifies that its type matches
1144 * that given, and gives a fatal error and exits if there is a mismatch.
1145 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001146
1147void
Damien Millerdff50992002-01-22 23:16:32 +11001148packet_read_expect(int expected_type)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001149{
Damien Miller95def091999-11-25 00:26:21 +11001150 int type;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001151
Damien Millerdff50992002-01-22 23:16:32 +11001152 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001153 if (type != expected_type)
1154 packet_disconnect("Protocol error: expected packet type %d, got %d",
Damien Miller33b13562000-04-04 14:38:59 +10001155 expected_type, type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001156}
1157
1158/* Checks if a full packet is available in the data received so far via
Damien Miller95def091999-11-25 00:26:21 +11001159 * packet_process_incoming. If so, reads the packet; otherwise returns
1160 * SSH_MSG_NONE. This does not wait for data from the connection.
1161 *
Damien Miller5ed3d572008-02-10 22:27:47 +11001162 * SSH_MSG_DISCONNECT is handled specially here. Also,
1163 * SSH_MSG_IGNORE messages are skipped by this function and are never returned
1164 * to higher levels.
Damien Miller95def091999-11-25 00:26:21 +11001165 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001166
Ben Lindstrombba81212001-06-25 05:01:22 +00001167static int
Damien Millerdff50992002-01-22 23:16:32 +11001168packet_read_poll1(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001169{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001170 u_int len, padded_len;
Ben Lindstrom4a7714a2002-02-26 18:04:38 +00001171 u_char *cp, type;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001172 u_int checksum, stored_checksum;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001173
Damien Miller95def091999-11-25 00:26:21 +11001174 /* Check if input size is less than minimum packet size. */
Darren Tuckerf7288d72009-06-21 18:12:20 +10001175 if (buffer_len(&active_state->input) < 4 + 8)
Damien Miller95def091999-11-25 00:26:21 +11001176 return SSH_MSG_NONE;
1177 /* Get length of incoming packet. */
Darren Tuckerf7288d72009-06-21 18:12:20 +10001178 cp = buffer_ptr(&active_state->input);
Damien Miller3f941882006-03-31 23:13:02 +11001179 len = get_u32(cp);
Damien Miller95def091999-11-25 00:26:21 +11001180 if (len < 1 + 2 + 2 || len > 256 * 1024)
Ben Lindstrom0cc2a472002-11-09 15:41:39 +00001181 packet_disconnect("Bad packet length %u.", len);
Damien Miller95def091999-11-25 00:26:21 +11001182 padded_len = (len + 8) & ~7;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001183
Damien Miller95def091999-11-25 00:26:21 +11001184 /* Check if the packet has been entirely received. */
Darren Tuckerf7288d72009-06-21 18:12:20 +10001185 if (buffer_len(&active_state->input) < 4 + padded_len)
Damien Miller95def091999-11-25 00:26:21 +11001186 return SSH_MSG_NONE;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001187
Damien Miller95def091999-11-25 00:26:21 +11001188 /* The entire packet is in buffer. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001189
Damien Miller95def091999-11-25 00:26:21 +11001190 /* Consume packet length. */
Darren Tuckerf7288d72009-06-21 18:12:20 +10001191 buffer_consume(&active_state->input, 4);
Damien Miller95def091999-11-25 00:26:21 +11001192
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001193 /*
1194 * Cryptographic attack detector for ssh
1195 * (C)1998 CORE-SDI, Buenos Aires Argentina
1196 * Ariel Futoransky(futo@core-sdi.com)
1197 */
Darren Tuckerf7288d72009-06-21 18:12:20 +10001198 if (!active_state->receive_context.plaintext) {
1199 switch (detect_attack(buffer_ptr(&active_state->input),
1200 padded_len)) {
Damien Miller3c9c1fb2006-09-17 06:08:53 +10001201 case DEATTACK_DETECTED:
1202 packet_disconnect("crc32 compensation attack: "
1203 "network attack detected");
1204 case DEATTACK_DOS_DETECTED:
1205 packet_disconnect("deattack denial of "
1206 "service detected");
1207 }
1208 }
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001209
1210 /* Decrypt data to incoming_packet. */
Darren Tuckerf7288d72009-06-21 18:12:20 +10001211 buffer_clear(&active_state->incoming_packet);
1212 cp = buffer_append_space(&active_state->incoming_packet, padded_len);
Damien Millerbcd00ab2013-12-07 10:41:55 +11001213 if (cipher_crypt(&active_state->receive_context, 0, cp,
1214 buffer_ptr(&active_state->input), padded_len, 0, 0) != 0)
1215 fatal("%s: cipher_crypt failed", __func__);
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001216
Darren Tuckerf7288d72009-06-21 18:12:20 +10001217 buffer_consume(&active_state->input, padded_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001218
1219#ifdef PACKET_DEBUG
Damien Miller95def091999-11-25 00:26:21 +11001220 fprintf(stderr, "read_poll plain: ");
Darren Tuckerf7288d72009-06-21 18:12:20 +10001221 buffer_dump(&active_state->incoming_packet);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001222#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001223
Damien Miller95def091999-11-25 00:26:21 +11001224 /* Compute packet checksum. */
Darren Tuckerf7288d72009-06-21 18:12:20 +10001225 checksum = ssh_crc32(buffer_ptr(&active_state->incoming_packet),
1226 buffer_len(&active_state->incoming_packet) - 4);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001227
Damien Miller95def091999-11-25 00:26:21 +11001228 /* Skip padding. */
Darren Tuckerf7288d72009-06-21 18:12:20 +10001229 buffer_consume(&active_state->incoming_packet, 8 - len % 8);
Damien Millerfd7c9111999-11-08 16:15:55 +11001230
Damien Miller95def091999-11-25 00:26:21 +11001231 /* Test check bytes. */
Darren Tuckerf7288d72009-06-21 18:12:20 +10001232 if (len != buffer_len(&active_state->incoming_packet))
Damien Miller278f9072001-12-21 15:00:19 +11001233 packet_disconnect("packet_read_poll1: len %d != buffer_len %d.",
Darren Tuckerf7288d72009-06-21 18:12:20 +10001234 len, buffer_len(&active_state->incoming_packet));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001235
Darren Tuckerf7288d72009-06-21 18:12:20 +10001236 cp = (u_char *)buffer_ptr(&active_state->incoming_packet) + len - 4;
Damien Miller3f941882006-03-31 23:13:02 +11001237 stored_checksum = get_u32(cp);
Damien Miller95def091999-11-25 00:26:21 +11001238 if (checksum != stored_checksum)
1239 packet_disconnect("Corrupted check bytes on input.");
Darren Tuckerf7288d72009-06-21 18:12:20 +10001240 buffer_consume_end(&active_state->incoming_packet, 4);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001241
Darren Tuckerf7288d72009-06-21 18:12:20 +10001242 if (active_state->packet_compression) {
1243 buffer_clear(&active_state->compression_buffer);
1244 buffer_uncompress(&active_state->incoming_packet,
1245 &active_state->compression_buffer);
1246 buffer_clear(&active_state->incoming_packet);
1247 buffer_append(&active_state->incoming_packet,
1248 buffer_ptr(&active_state->compression_buffer),
1249 buffer_len(&active_state->compression_buffer));
Damien Miller95def091999-11-25 00:26:21 +11001250 }
Darren Tuckerf7288d72009-06-21 18:12:20 +10001251 active_state->p_read.packets++;
1252 active_state->p_read.bytes += padded_len + 4;
1253 type = buffer_get_char(&active_state->incoming_packet);
Darren Tuckerb2694f02004-11-05 20:27:54 +11001254 if (type < SSH_MSG_MIN || type > SSH_MSG_MAX)
1255 packet_disconnect("Invalid ssh1 packet type: %d", type);
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001256 return type;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001257}
Damien Miller95def091999-11-25 00:26:21 +11001258
Ben Lindstrombba81212001-06-25 05:01:22 +00001259static int
Damien Millerdff50992002-01-22 23:16:32 +11001260packet_read_poll2(u_int32_t *seqnr_p)
Damien Miller33b13562000-04-04 14:38:59 +10001261{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001262 u_int padlen, need;
Damien Milleraf43a7a2012-12-12 10:46:31 +11001263 u_char *macbuf = NULL, *cp, type;
Damien Miller1d75abf2013-01-09 16:12:19 +11001264 u_int maclen, authlen = 0, aadlen = 0, block_size;
Damien Miller33b13562000-04-04 14:38:59 +10001265 Enc *enc = NULL;
1266 Mac *mac = NULL;
1267 Comp *comp = NULL;
1268
Darren Tuckerf7288d72009-06-21 18:12:20 +10001269 if (active_state->packet_discard)
Damien Miller13ae44c2009-01-28 16:38:41 +11001270 return SSH_MSG_NONE;
1271
Darren Tuckerf7288d72009-06-21 18:12:20 +10001272 if (active_state->newkeys[MODE_IN] != NULL) {
1273 enc = &active_state->newkeys[MODE_IN]->enc;
1274 mac = &active_state->newkeys[MODE_IN]->mac;
1275 comp = &active_state->newkeys[MODE_IN]->comp;
Damien Miller1d75abf2013-01-09 16:12:19 +11001276 /* disable mac for authenticated encryption */
1277 if ((authlen = cipher_authlen(enc->cipher)) != 0)
1278 mac = NULL;
Damien Miller33b13562000-04-04 14:38:59 +10001279 }
1280 maclen = mac && mac->enabled ? mac->mac_len : 0;
Damien Miller963f6b22002-02-19 15:21:23 +11001281 block_size = enc ? enc->block_size : 8;
Damien Miller1d75abf2013-01-09 16:12:19 +11001282 aadlen = (mac && mac->enabled && mac->etm) || authlen ? 4 : 0;
Damien Miller33b13562000-04-04 14:38:59 +10001283
Damien Milleraf43a7a2012-12-12 10:46:31 +11001284 if (aadlen && active_state->packlen == 0) {
Damien Miller0fde8ac2013-11-21 14:12:23 +11001285 if (cipher_get_length(&active_state->receive_context,
1286 &active_state->packlen,
1287 active_state->p_read.seqnr,
1288 buffer_ptr(&active_state->input),
1289 buffer_len(&active_state->input)) != 0)
Damien Milleraf43a7a2012-12-12 10:46:31 +11001290 return SSH_MSG_NONE;
Damien Milleraf43a7a2012-12-12 10:46:31 +11001291 if (active_state->packlen < 1 + 4 ||
1292 active_state->packlen > PACKET_MAX_SIZE) {
1293#ifdef PACKET_DEBUG
1294 buffer_dump(&active_state->input);
1295#endif
1296 logit("Bad packet length %u.", active_state->packlen);
1297 packet_disconnect("Packet corrupt");
1298 }
Damien Miller8c05da32012-12-13 07:18:59 +11001299 buffer_clear(&active_state->incoming_packet);
Damien Milleraf43a7a2012-12-12 10:46:31 +11001300 } else if (active_state->packlen == 0) {
Damien Miller33b13562000-04-04 14:38:59 +10001301 /*
1302 * check if input size is less than the cipher block size,
1303 * decrypt first block and extract length of incoming packet
1304 */
Darren Tuckerf7288d72009-06-21 18:12:20 +10001305 if (buffer_len(&active_state->input) < block_size)
Damien Miller33b13562000-04-04 14:38:59 +10001306 return SSH_MSG_NONE;
Darren Tuckerf7288d72009-06-21 18:12:20 +10001307 buffer_clear(&active_state->incoming_packet);
1308 cp = buffer_append_space(&active_state->incoming_packet,
Damien Miller33b13562000-04-04 14:38:59 +10001309 block_size);
Damien Millerbcd00ab2013-12-07 10:41:55 +11001310 if (cipher_crypt(&active_state->receive_context,
Damien Miller0fde8ac2013-11-21 14:12:23 +11001311 active_state->p_read.seqnr, cp,
Damien Millerbcd00ab2013-12-07 10:41:55 +11001312 buffer_ptr(&active_state->input), block_size, 0, 0) != 0)
1313 fatal("Decryption integrity check failed");
Darren Tuckerf7288d72009-06-21 18:12:20 +10001314 cp = buffer_ptr(&active_state->incoming_packet);
1315 active_state->packlen = get_u32(cp);
1316 if (active_state->packlen < 1 + 4 ||
1317 active_state->packlen > PACKET_MAX_SIZE) {
Darren Tuckera8151da2003-09-22 21:06:46 +10001318#ifdef PACKET_DEBUG
Darren Tuckerf7288d72009-06-21 18:12:20 +10001319 buffer_dump(&active_state->incoming_packet);
Darren Tuckera8151da2003-09-22 21:06:46 +10001320#endif
Darren Tuckerf7288d72009-06-21 18:12:20 +10001321 logit("Bad packet length %u.", active_state->packlen);
1322 packet_start_discard(enc, mac, active_state->packlen,
Damien Miller13ae44c2009-01-28 16:38:41 +11001323 PACKET_MAX_SIZE);
1324 return SSH_MSG_NONE;
Damien Miller33b13562000-04-04 14:38:59 +10001325 }
Darren Tuckerf7288d72009-06-21 18:12:20 +10001326 buffer_consume(&active_state->input, block_size);
Damien Miller33b13562000-04-04 14:38:59 +10001327 }
Damien Milleraf43a7a2012-12-12 10:46:31 +11001328 DBG(debug("input: packet len %u", active_state->packlen+4));
1329 if (aadlen) {
1330 /* only the payload is encrypted */
1331 need = active_state->packlen;
1332 } else {
1333 /*
1334 * the payload size and the payload are encrypted, but we
1335 * have a partial packet of block_size bytes
1336 */
1337 need = 4 + active_state->packlen - block_size;
1338 }
Damien Miller1d75abf2013-01-09 16:12:19 +11001339 DBG(debug("partial packet: block %d, need %d, maclen %d, authlen %d,"
1340 " aadlen %d", block_size, need, maclen, authlen, aadlen));
Darren Tucker99d11a32008-12-01 21:40:48 +11001341 if (need % block_size != 0) {
1342 logit("padding error: need %d block %d mod %d",
Damien Miller33b13562000-04-04 14:38:59 +10001343 need, block_size, need % block_size);
Darren Tuckerf7288d72009-06-21 18:12:20 +10001344 packet_start_discard(enc, mac, active_state->packlen,
Damien Miller13ae44c2009-01-28 16:38:41 +11001345 PACKET_MAX_SIZE - block_size);
1346 return SSH_MSG_NONE;
Darren Tucker99d11a32008-12-01 21:40:48 +11001347 }
Damien Miller33b13562000-04-04 14:38:59 +10001348 /*
1349 * check if the entire packet has been received and
Damien Milleraf43a7a2012-12-12 10:46:31 +11001350 * decrypt into incoming_packet:
1351 * 'aadlen' bytes are unencrypted, but authenticated.
Damien Miller1d75abf2013-01-09 16:12:19 +11001352 * 'need' bytes are encrypted, followed by either
1353 * 'authlen' bytes of authentication tag or
Damien Milleraf43a7a2012-12-12 10:46:31 +11001354 * 'maclen' bytes of message authentication code.
Damien Miller33b13562000-04-04 14:38:59 +10001355 */
Damien Miller1d75abf2013-01-09 16:12:19 +11001356 if (buffer_len(&active_state->input) < aadlen + need + authlen + maclen)
Damien Miller33b13562000-04-04 14:38:59 +10001357 return SSH_MSG_NONE;
1358#ifdef PACKET_DEBUG
1359 fprintf(stderr, "read_poll enc/full: ");
Darren Tuckerf7288d72009-06-21 18:12:20 +10001360 buffer_dump(&active_state->input);
Damien Miller33b13562000-04-04 14:38:59 +10001361#endif
Damien Milleraf43a7a2012-12-12 10:46:31 +11001362 /* EtM: compute mac over encrypted input */
1363 if (mac && mac->enabled && mac->etm)
1364 macbuf = mac_compute(mac, active_state->p_read.seqnr,
1365 buffer_ptr(&active_state->input), aadlen + need);
1366 cp = buffer_append_space(&active_state->incoming_packet, aadlen + need);
Damien Millerbcd00ab2013-12-07 10:41:55 +11001367 if (cipher_crypt(&active_state->receive_context,
Damien Miller0fde8ac2013-11-21 14:12:23 +11001368 active_state->p_read.seqnr, cp,
Damien Millerbcd00ab2013-12-07 10:41:55 +11001369 buffer_ptr(&active_state->input), need, aadlen, authlen) != 0)
1370 fatal("Decryption integrity check failed");
Damien Miller1d75abf2013-01-09 16:12:19 +11001371 buffer_consume(&active_state->input, aadlen + need + authlen);
Damien Miller33b13562000-04-04 14:38:59 +10001372 /*
1373 * compute MAC over seqnr and packet,
1374 * increment sequence number for incoming packet
1375 */
Damien Miller4af51302000-04-16 11:18:38 +10001376 if (mac && mac->enabled) {
Damien Milleraf43a7a2012-12-12 10:46:31 +11001377 if (!mac->etm)
1378 macbuf = mac_compute(mac, active_state->p_read.seqnr,
1379 buffer_ptr(&active_state->incoming_packet),
1380 buffer_len(&active_state->incoming_packet));
Damien Millerea1651c2010-07-16 13:58:37 +10001381 if (timingsafe_bcmp(macbuf, buffer_ptr(&active_state->input),
Darren Tuckerf7288d72009-06-21 18:12:20 +10001382 mac->mac_len) != 0) {
Damien Miller13ae44c2009-01-28 16:38:41 +11001383 logit("Corrupted MAC on input.");
1384 if (need > PACKET_MAX_SIZE)
1385 fatal("internal error need %d", need);
Darren Tuckerf7288d72009-06-21 18:12:20 +10001386 packet_start_discard(enc, mac, active_state->packlen,
Damien Miller13ae44c2009-01-28 16:38:41 +11001387 PACKET_MAX_SIZE - need);
1388 return SSH_MSG_NONE;
1389 }
1390
Darren Tuckerf7288d72009-06-21 18:12:20 +10001391 DBG(debug("MAC #%d ok", active_state->p_read.seqnr));
1392 buffer_consume(&active_state->input, mac->mac_len);
Damien Miller33b13562000-04-04 14:38:59 +10001393 }
Damien Miller13ae44c2009-01-28 16:38:41 +11001394 /* XXX now it's safe to use fatal/packet_disconnect */
Damien Miller278f9072001-12-21 15:00:19 +11001395 if (seqnr_p != NULL)
Darren Tuckerf7288d72009-06-21 18:12:20 +10001396 *seqnr_p = active_state->p_read.seqnr;
1397 if (++active_state->p_read.seqnr == 0)
Damien Miller996acd22003-04-09 20:59:48 +10001398 logit("incoming seqnr wraps around");
Darren Tuckerf7288d72009-06-21 18:12:20 +10001399 if (++active_state->p_read.packets == 0)
Damien Millera5539d22003-04-09 20:50:06 +10001400 if (!(datafellows & SSH_BUG_NOREKEY))
1401 fatal("XXX too many packets with same key");
Darren Tuckerf7288d72009-06-21 18:12:20 +10001402 active_state->p_read.blocks += (active_state->packlen + 4) / block_size;
1403 active_state->p_read.bytes += active_state->packlen + 4;
Damien Miller33b13562000-04-04 14:38:59 +10001404
1405 /* get padlen */
Darren Tuckerf7288d72009-06-21 18:12:20 +10001406 cp = buffer_ptr(&active_state->incoming_packet);
Ben Lindstrom4a7714a2002-02-26 18:04:38 +00001407 padlen = cp[4];
Damien Miller33b13562000-04-04 14:38:59 +10001408 DBG(debug("input: padlen %d", padlen));
1409 if (padlen < 4)
1410 packet_disconnect("Corrupted padlen %d on input.", padlen);
1411
1412 /* skip packet size + padlen, discard padding */
Darren Tuckerf7288d72009-06-21 18:12:20 +10001413 buffer_consume(&active_state->incoming_packet, 4 + 1);
1414 buffer_consume_end(&active_state->incoming_packet, padlen);
Damien Miller33b13562000-04-04 14:38:59 +10001415
Darren Tuckerf7288d72009-06-21 18:12:20 +10001416 DBG(debug("input: len before de-compress %d",
1417 buffer_len(&active_state->incoming_packet)));
Damien Miller33b13562000-04-04 14:38:59 +10001418 if (comp && comp->enabled) {
Darren Tuckerf7288d72009-06-21 18:12:20 +10001419 buffer_clear(&active_state->compression_buffer);
1420 buffer_uncompress(&active_state->incoming_packet,
1421 &active_state->compression_buffer);
1422 buffer_clear(&active_state->incoming_packet);
1423 buffer_append(&active_state->incoming_packet,
1424 buffer_ptr(&active_state->compression_buffer),
1425 buffer_len(&active_state->compression_buffer));
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001426 DBG(debug("input: len after de-compress %d",
Darren Tuckerf7288d72009-06-21 18:12:20 +10001427 buffer_len(&active_state->incoming_packet)));
Damien Miller33b13562000-04-04 14:38:59 +10001428 }
1429 /*
1430 * get packet type, implies consume.
1431 * return length of payload (without type field)
1432 */
Darren Tuckerf7288d72009-06-21 18:12:20 +10001433 type = buffer_get_char(&active_state->incoming_packet);
Darren Tuckerb2694f02004-11-05 20:27:54 +11001434 if (type < SSH2_MSG_MIN || type >= SSH2_MSG_LOCAL_MIN)
1435 packet_disconnect("Invalid ssh2 packet type: %d", type);
Ben Lindstrom2d90e002001-04-04 02:00:54 +00001436 if (type == SSH2_MSG_NEWKEYS)
1437 set_newkeys(MODE_IN);
Darren Tuckerf7288d72009-06-21 18:12:20 +10001438 else if (type == SSH2_MSG_USERAUTH_SUCCESS &&
1439 !active_state->server_side)
Damien Miller9786e6e2005-07-26 21:54:56 +10001440 packet_enable_delayed_compress();
Damien Miller33b13562000-04-04 14:38:59 +10001441#ifdef PACKET_DEBUG
Ben Lindstrom204e4882001-03-05 06:47:00 +00001442 fprintf(stderr, "read/plain[%d]:\r\n", type);
Darren Tuckerf7288d72009-06-21 18:12:20 +10001443 buffer_dump(&active_state->incoming_packet);
Damien Miller33b13562000-04-04 14:38:59 +10001444#endif
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001445 /* reset for next packet */
Darren Tuckerf7288d72009-06-21 18:12:20 +10001446 active_state->packlen = 0;
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001447 return type;
Damien Miller33b13562000-04-04 14:38:59 +10001448}
1449
1450int
Damien Millerdff50992002-01-22 23:16:32 +11001451packet_read_poll_seqnr(u_int32_t *seqnr_p)
Damien Miller33b13562000-04-04 14:38:59 +10001452{
Ben Lindstrom3f584742002-06-23 21:49:25 +00001453 u_int reason, seqnr;
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001454 u_char type;
Damien Miller33b13562000-04-04 14:38:59 +10001455 char *msg;
Damien Miller33b13562000-04-04 14:38:59 +10001456
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001457 for (;;) {
1458 if (compat20) {
Damien Millerdff50992002-01-22 23:16:32 +11001459 type = packet_read_poll2(seqnr_p);
Darren Tucker136e56f2008-06-08 12:49:30 +10001460 if (type) {
Darren Tuckerf7288d72009-06-21 18:12:20 +10001461 active_state->keep_alive_timeouts = 0;
Damien Miller33b13562000-04-04 14:38:59 +10001462 DBG(debug("received packet type %d", type));
Darren Tucker136e56f2008-06-08 12:49:30 +10001463 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001464 switch (type) {
Damien Miller5ed3d572008-02-10 22:27:47 +11001465 case SSH2_MSG_IGNORE:
Damien Miller58226f62008-03-07 18:33:30 +11001466 debug3("Received SSH2_MSG_IGNORE");
Damien Miller5ed3d572008-02-10 22:27:47 +11001467 break;
Damien Miller33b13562000-04-04 14:38:59 +10001468 case SSH2_MSG_DEBUG:
1469 packet_get_char();
1470 msg = packet_get_string(NULL);
1471 debug("Remote: %.900s", msg);
Darren Tuckera627d422013-06-02 07:31:17 +10001472 free(msg);
Damien Miller33b13562000-04-04 14:38:59 +10001473 msg = packet_get_string(NULL);
Darren Tuckera627d422013-06-02 07:31:17 +10001474 free(msg);
Damien Miller33b13562000-04-04 14:38:59 +10001475 break;
1476 case SSH2_MSG_DISCONNECT:
1477 reason = packet_get_int();
1478 msg = packet_get_string(NULL);
Damien Millerd5edefd2013-04-23 15:21:39 +10001479 /* Ignore normal client exit notifications */
1480 do_log2(active_state->server_side &&
1481 reason == SSH2_DISCONNECT_BY_APPLICATION ?
1482 SYSLOG_LEVEL_INFO : SYSLOG_LEVEL_ERROR,
1483 "Received disconnect from %s: %u: %.400s",
Ben Lindstrom3f584742002-06-23 21:49:25 +00001484 get_remote_ipaddr(), reason, msg);
Darren Tuckera627d422013-06-02 07:31:17 +10001485 free(msg);
Darren Tucker3e33cec2003-10-02 16:12:36 +10001486 cleanup_exit(255);
Damien Miller33b13562000-04-04 14:38:59 +10001487 break;
Damien Miller659811f2002-01-22 23:23:11 +11001488 case SSH2_MSG_UNIMPLEMENTED:
1489 seqnr = packet_get_int();
Ben Lindstrom3f584742002-06-23 21:49:25 +00001490 debug("Received SSH2_MSG_UNIMPLEMENTED for %u",
1491 seqnr);
Damien Miller5ed3d572008-02-10 22:27:47 +11001492 break;
Damien Miller33b13562000-04-04 14:38:59 +10001493 default:
1494 return type;
Kevin Stevesef4eea92001-02-05 12:42:17 +00001495 }
Damien Miller33b13562000-04-04 14:38:59 +10001496 } else {
Damien Millerdff50992002-01-22 23:16:32 +11001497 type = packet_read_poll1();
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001498 switch (type) {
Damien Millerce986542013-07-18 16:12:44 +10001499 case SSH_MSG_NONE:
1500 return SSH_MSG_NONE;
Damien Miller33b13562000-04-04 14:38:59 +10001501 case SSH_MSG_IGNORE:
1502 break;
1503 case SSH_MSG_DEBUG:
1504 msg = packet_get_string(NULL);
1505 debug("Remote: %.900s", msg);
Darren Tuckera627d422013-06-02 07:31:17 +10001506 free(msg);
Damien Miller33b13562000-04-04 14:38:59 +10001507 break;
1508 case SSH_MSG_DISCONNECT:
1509 msg = packet_get_string(NULL);
Damien Miller894926e2013-02-12 11:03:58 +11001510 error("Received disconnect from %s: %.400s",
Ben Lindstrom3f584742002-06-23 21:49:25 +00001511 get_remote_ipaddr(), msg);
Darren Tucker3e33cec2003-10-02 16:12:36 +10001512 cleanup_exit(255);
Damien Miller33b13562000-04-04 14:38:59 +10001513 break;
1514 default:
Damien Millerce986542013-07-18 16:12:44 +10001515 DBG(debug("received packet type %d", type));
Damien Miller33b13562000-04-04 14:38:59 +10001516 return type;
Kevin Stevesef4eea92001-02-05 12:42:17 +00001517 }
Damien Miller33b13562000-04-04 14:38:59 +10001518 }
1519 }
1520}
1521
Damien Miller5428f641999-11-25 11:54:57 +11001522/*
1523 * Buffers the given amount of input characters. This is intended to be used
1524 * together with packet_read_poll.
1525 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001526
1527void
Ben Lindstrom46c16222000-12-22 01:43:59 +00001528packet_process_incoming(const char *buf, u_int len)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001529{
Darren Tuckerf7288d72009-06-21 18:12:20 +10001530 if (active_state->packet_discard) {
1531 active_state->keep_alive_timeouts = 0; /* ?? */
1532 if (len >= active_state->packet_discard)
Damien Miller13ae44c2009-01-28 16:38:41 +11001533 packet_stop_discard();
Darren Tuckerf7288d72009-06-21 18:12:20 +10001534 active_state->packet_discard -= len;
Damien Miller13ae44c2009-01-28 16:38:41 +11001535 return;
1536 }
Darren Tuckerf7288d72009-06-21 18:12:20 +10001537 buffer_append(&active_state->input, buf, len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001538}
1539
1540/* Returns a character from the packet. */
1541
Ben Lindstrom46c16222000-12-22 01:43:59 +00001542u_int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001543packet_get_char(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001544{
Damien Miller95def091999-11-25 00:26:21 +11001545 char ch;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001546
Darren Tuckerf7288d72009-06-21 18:12:20 +10001547 buffer_get(&active_state->incoming_packet, &ch, 1);
Ben Lindstrom46c16222000-12-22 01:43:59 +00001548 return (u_char) ch;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001549}
1550
1551/* Returns an integer from the packet data. */
1552
Ben Lindstrom46c16222000-12-22 01:43:59 +00001553u_int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001554packet_get_int(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001555{
Darren Tuckerf7288d72009-06-21 18:12:20 +10001556 return buffer_get_int(&active_state->incoming_packet);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001557}
1558
Darren Tucker761c3892009-06-21 18:16:26 +10001559/* Returns an 64 bit integer from the packet data. */
1560
1561u_int64_t
1562packet_get_int64(void)
1563{
1564 return buffer_get_int64(&active_state->incoming_packet);
1565}
1566
Damien Miller5428f641999-11-25 11:54:57 +11001567/*
1568 * Returns an arbitrary precision integer from the packet data. The integer
1569 * must have been initialized before this call.
1570 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001571
1572void
Damien Millerd432ccf2002-01-22 23:14:44 +11001573packet_get_bignum(BIGNUM * value)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001574{
Darren Tuckerf7288d72009-06-21 18:12:20 +10001575 buffer_get_bignum(&active_state->incoming_packet, value);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001576}
1577
Damien Miller33b13562000-04-04 14:38:59 +10001578void
Damien Millerd432ccf2002-01-22 23:14:44 +11001579packet_get_bignum2(BIGNUM * value)
Damien Miller33b13562000-04-04 14:38:59 +10001580{
Darren Tuckerf7288d72009-06-21 18:12:20 +10001581 buffer_get_bignum2(&active_state->incoming_packet, value);
Damien Miller33b13562000-04-04 14:38:59 +10001582}
1583
Damien Miller6af914a2010-09-10 11:39:26 +10001584#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +10001585void
1586packet_get_ecpoint(const EC_GROUP *curve, EC_POINT *point)
1587{
1588 buffer_get_ecpoint(&active_state->incoming_packet, curve, point);
1589}
Damien Miller6af914a2010-09-10 11:39:26 +10001590#endif
Damien Millereb8b60e2010-08-31 22:41:14 +10001591
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001592void *
Damien Millereccb9de2005-06-17 12:59:34 +10001593packet_get_raw(u_int *length_ptr)
Damien Miller33b13562000-04-04 14:38:59 +10001594{
Darren Tuckerf7288d72009-06-21 18:12:20 +10001595 u_int bytes = buffer_len(&active_state->incoming_packet);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001596
Damien Miller33b13562000-04-04 14:38:59 +10001597 if (length_ptr != NULL)
1598 *length_ptr = bytes;
Darren Tuckerf7288d72009-06-21 18:12:20 +10001599 return buffer_ptr(&active_state->incoming_packet);
Damien Miller33b13562000-04-04 14:38:59 +10001600}
1601
Damien Miller4af51302000-04-16 11:18:38 +10001602int
1603packet_remaining(void)
1604{
Darren Tuckerf7288d72009-06-21 18:12:20 +10001605 return buffer_len(&active_state->incoming_packet);
Damien Miller4af51302000-04-16 11:18:38 +10001606}
1607
Damien Miller5428f641999-11-25 11:54:57 +11001608/*
1609 * Returns a string from the packet data. The string is allocated using
1610 * xmalloc; it is the responsibility of the calling program to free it when
1611 * no longer needed. The length_ptr argument may be NULL, or point to an
1612 * integer into which the length of the string is stored.
1613 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001614
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001615void *
Ben Lindstrom46c16222000-12-22 01:43:59 +00001616packet_get_string(u_int *length_ptr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001617{
Darren Tuckerf7288d72009-06-21 18:12:20 +10001618 return buffer_get_string(&active_state->incoming_packet, length_ptr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001619}
1620
Damien Millerdb255ca2008-05-19 14:59:37 +10001621void *
1622packet_get_string_ptr(u_int *length_ptr)
1623{
Darren Tuckerf7288d72009-06-21 18:12:20 +10001624 return buffer_get_string_ptr(&active_state->incoming_packet, length_ptr);
Damien Millerdb255ca2008-05-19 14:59:37 +10001625}
1626
Damien Millerda108ec2010-08-31 22:36:39 +10001627/* Ensures the returned string has no embedded \0 characters in it. */
1628char *
1629packet_get_cstring(u_int *length_ptr)
1630{
1631 return buffer_get_cstring(&active_state->incoming_packet, length_ptr);
1632}
1633
Damien Miller5428f641999-11-25 11:54:57 +11001634/*
1635 * Sends a diagnostic message from the server to the client. This message
1636 * can be sent at any time (but not while constructing another message). The
1637 * message is printed immediately, but only if the client is being executed
1638 * in verbose mode. These messages are primarily intended to ease debugging
1639 * authentication problems. The length of the formatted message must not
1640 * exceed 1024 bytes. This will automatically call packet_write_wait.
1641 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001642
1643void
Damien Miller95def091999-11-25 00:26:21 +11001644packet_send_debug(const char *fmt,...)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001645{
Damien Miller95def091999-11-25 00:26:21 +11001646 char buf[1024];
1647 va_list args;
1648
Ben Lindstroma14ee472000-12-07 01:24:58 +00001649 if (compat20 && (datafellows & SSH_BUG_DEBUG))
1650 return;
1651
Damien Miller95def091999-11-25 00:26:21 +11001652 va_start(args, fmt);
1653 vsnprintf(buf, sizeof(buf), fmt, args);
1654 va_end(args);
1655
Damien Miller7c8af4f2000-05-01 08:24:07 +10001656 if (compat20) {
1657 packet_start(SSH2_MSG_DEBUG);
1658 packet_put_char(0); /* bool: always display */
1659 packet_put_cstring(buf);
1660 packet_put_cstring("");
1661 } else {
1662 packet_start(SSH_MSG_DEBUG);
1663 packet_put_cstring(buf);
1664 }
Damien Miller95def091999-11-25 00:26:21 +11001665 packet_send();
1666 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001667}
1668
Damien Miller5428f641999-11-25 11:54:57 +11001669/*
1670 * Logs the error plus constructs and sends a disconnect packet, closes the
1671 * connection, and exits. This function never returns. The error message
1672 * should not contain a newline. The length of the formatted message must
1673 * not exceed 1024 bytes.
1674 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001675
1676void
Damien Miller95def091999-11-25 00:26:21 +11001677packet_disconnect(const char *fmt,...)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001678{
Damien Miller95def091999-11-25 00:26:21 +11001679 char buf[1024];
1680 va_list args;
1681 static int disconnecting = 0;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001682
Damien Miller95def091999-11-25 00:26:21 +11001683 if (disconnecting) /* Guard against recursive invocations. */
1684 fatal("packet_disconnect called recursively.");
1685 disconnecting = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001686
Damien Miller5428f641999-11-25 11:54:57 +11001687 /*
1688 * Format the message. Note that the caller must make sure the
1689 * message is of limited size.
1690 */
Damien Miller95def091999-11-25 00:26:21 +11001691 va_start(args, fmt);
1692 vsnprintf(buf, sizeof(buf), fmt, args);
1693 va_end(args);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001694
Ben Lindstrom9bda7ae2002-11-09 15:46:24 +00001695 /* Display the error locally */
Damien Miller996acd22003-04-09 20:59:48 +10001696 logit("Disconnecting: %.100s", buf);
Ben Lindstrom9bda7ae2002-11-09 15:46:24 +00001697
Damien Miller95def091999-11-25 00:26:21 +11001698 /* Send the disconnect message to the other side, and wait for it to get sent. */
Damien Miller33b13562000-04-04 14:38:59 +10001699 if (compat20) {
1700 packet_start(SSH2_MSG_DISCONNECT);
1701 packet_put_int(SSH2_DISCONNECT_PROTOCOL_ERROR);
1702 packet_put_cstring(buf);
1703 packet_put_cstring("");
1704 } else {
1705 packet_start(SSH_MSG_DISCONNECT);
Ben Lindstrom664408d2001-06-09 01:42:01 +00001706 packet_put_cstring(buf);
Damien Miller33b13562000-04-04 14:38:59 +10001707 }
Damien Miller95def091999-11-25 00:26:21 +11001708 packet_send();
1709 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001710
Damien Miller95def091999-11-25 00:26:21 +11001711 /* Stop listening for connections. */
Ben Lindstrom601e4362001-06-21 03:19:23 +00001712 channel_close_all();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001713
Damien Miller95def091999-11-25 00:26:21 +11001714 /* Close the connection. */
1715 packet_close();
Darren Tucker3e33cec2003-10-02 16:12:36 +10001716 cleanup_exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001717}
1718
Damien Miller5428f641999-11-25 11:54:57 +11001719/* Checks if there is any buffered output, and tries to write some of the output. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001720
1721void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001722packet_write_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001723{
Darren Tuckerf7288d72009-06-21 18:12:20 +10001724 int len = buffer_len(&active_state->output);
Darren Tuckerc5564e12009-06-21 18:53:53 +10001725 int cont;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001726
Damien Miller95def091999-11-25 00:26:21 +11001727 if (len > 0) {
Darren Tuckerc5564e12009-06-21 18:53:53 +10001728 cont = 0;
1729 len = roaming_write(active_state->connection_out,
1730 buffer_ptr(&active_state->output), len, &cont);
Damien Millerd874fa52008-07-05 09:40:56 +10001731 if (len == -1) {
Damien Millerea437422009-10-02 11:49:03 +10001732 if (errno == EINTR || errno == EAGAIN ||
1733 errno == EWOULDBLOCK)
Damien Miller95def091999-11-25 00:26:21 +11001734 return;
Damien Millerd874fa52008-07-05 09:40:56 +10001735 fatal("Write failed: %.100s", strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +11001736 }
Darren Tuckerc5564e12009-06-21 18:53:53 +10001737 if (len == 0 && !cont)
Damien Millerd874fa52008-07-05 09:40:56 +10001738 fatal("Write connection closed");
Darren Tuckerf7288d72009-06-21 18:12:20 +10001739 buffer_consume(&active_state->output, len);
Damien Miller95def091999-11-25 00:26:21 +11001740 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001741}
1742
Damien Miller5428f641999-11-25 11:54:57 +11001743/*
1744 * Calls packet_write_poll repeatedly until all pending output data has been
1745 * written.
1746 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001747
1748void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001749packet_write_wait(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001750{
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001751 fd_set *setp;
Damien Millerce986542013-07-18 16:12:44 +10001752 int ret, ms_remain = 0;
Darren Tucker3fc464e2008-06-13 06:42:45 +10001753 struct timeval start, timeout, *timeoutp = NULL;
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001754
Darren Tuckerf7288d72009-06-21 18:12:20 +10001755 setp = (fd_set *)xcalloc(howmany(active_state->connection_out + 1,
1756 NFDBITS), sizeof(fd_mask));
Damien Miller95def091999-11-25 00:26:21 +11001757 packet_write_poll();
1758 while (packet_have_data_to_write()) {
Darren Tuckerf7288d72009-06-21 18:12:20 +10001759 memset(setp, 0, howmany(active_state->connection_out + 1,
1760 NFDBITS) * sizeof(fd_mask));
1761 FD_SET(active_state->connection_out, setp);
Darren Tucker3fc464e2008-06-13 06:42:45 +10001762
Darren Tuckerf7288d72009-06-21 18:12:20 +10001763 if (active_state->packet_timeout_ms > 0) {
1764 ms_remain = active_state->packet_timeout_ms;
Darren Tucker3fc464e2008-06-13 06:42:45 +10001765 timeoutp = &timeout;
1766 }
1767 for (;;) {
Darren Tuckerf7288d72009-06-21 18:12:20 +10001768 if (active_state->packet_timeout_ms != -1) {
Darren Tucker3fc464e2008-06-13 06:42:45 +10001769 ms_to_timeval(&timeout, ms_remain);
1770 gettimeofday(&start, NULL);
1771 }
Darren Tuckerf7288d72009-06-21 18:12:20 +10001772 if ((ret = select(active_state->connection_out + 1,
1773 NULL, setp, NULL, timeoutp)) >= 0)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001774 break;
Damien Millerea437422009-10-02 11:49:03 +10001775 if (errno != EAGAIN && errno != EINTR &&
1776 errno != EWOULDBLOCK)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001777 break;
Darren Tuckerf7288d72009-06-21 18:12:20 +10001778 if (active_state->packet_timeout_ms == -1)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001779 continue;
1780 ms_subtract_diff(&start, &ms_remain);
1781 if (ms_remain <= 0) {
1782 ret = 0;
1783 break;
1784 }
1785 }
1786 if (ret == 0) {
1787 logit("Connection to %.200s timed out while "
1788 "waiting to write", get_remote_ipaddr());
1789 cleanup_exit(255);
1790 }
Damien Miller95def091999-11-25 00:26:21 +11001791 packet_write_poll();
1792 }
Darren Tuckera627d422013-06-02 07:31:17 +10001793 free(setp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001794}
1795
1796/* Returns true if there is buffered data to write to the connection. */
1797
1798int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001799packet_have_data_to_write(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001800{
Darren Tuckerf7288d72009-06-21 18:12:20 +10001801 return buffer_len(&active_state->output) != 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001802}
1803
1804/* Returns true if there is not too much data to write to the connection. */
1805
1806int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001807packet_not_very_much_data_to_write(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001808{
Darren Tuckerf7288d72009-06-21 18:12:20 +10001809 if (active_state->interactive_mode)
1810 return buffer_len(&active_state->output) < 16384;
Damien Miller95def091999-11-25 00:26:21 +11001811 else
Darren Tuckerf7288d72009-06-21 18:12:20 +10001812 return buffer_len(&active_state->output) < 128 * 1024;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001813}
1814
Ben Lindstromfaa1ea82002-12-23 02:42:52 +00001815static void
Damien Miller0dac6fb2010-11-20 15:19:38 +11001816packet_set_tos(int tos)
Ben Lindstroma7433982002-12-23 02:41:41 +00001817{
Damien Millerd2ac5d72011-05-15 08:43:13 +10001818#ifndef IP_TOS_IS_BROKEN
1819 if (!packet_connection_is_on_socket())
Ben Lindstroma7433982002-12-23 02:41:41 +00001820 return;
Damien Millerd2ac5d72011-05-15 08:43:13 +10001821 switch (packet_connection_af()) {
1822# ifdef IP_TOS
1823 case AF_INET:
1824 debug3("%s: set IP_TOS 0x%02x", __func__, tos);
1825 if (setsockopt(active_state->connection_in,
1826 IPPROTO_IP, IP_TOS, &tos, sizeof(tos)) < 0)
1827 error("setsockopt IP_TOS %d: %.100s:",
1828 tos, strerror(errno));
1829 break;
1830# endif /* IP_TOS */
1831# ifdef IPV6_TCLASS
1832 case AF_INET6:
1833 debug3("%s: set IPV6_TCLASS 0x%02x", __func__, tos);
1834 if (setsockopt(active_state->connection_in,
1835 IPPROTO_IPV6, IPV6_TCLASS, &tos, sizeof(tos)) < 0)
1836 error("setsockopt IPV6_TCLASS %d: %.100s:",
1837 tos, strerror(errno));
1838 break;
Damien Millerd2ac5d72011-05-15 08:43:13 +10001839# endif /* IPV6_TCLASS */
Damien Miller23f425b2011-05-15 08:58:15 +10001840 }
Damien Millerd2ac5d72011-05-15 08:43:13 +10001841#endif /* IP_TOS_IS_BROKEN */
Damien Miller5924ceb2003-11-22 15:02:42 +11001842}
Ben Lindstroma7433982002-12-23 02:41:41 +00001843
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001844/* Informs that the current session is interactive. Sets IP flags for that. */
1845
1846void
Damien Miller0dac6fb2010-11-20 15:19:38 +11001847packet_set_interactive(int interactive, int qos_interactive, int qos_bulk)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001848{
Darren Tucker7b935c72009-06-21 18:59:36 +10001849 if (active_state->set_interactive_called)
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001850 return;
Darren Tucker7b935c72009-06-21 18:59:36 +10001851 active_state->set_interactive_called = 1;
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001852
Damien Miller95def091999-11-25 00:26:21 +11001853 /* Record that we are in interactive mode. */
Darren Tuckerf7288d72009-06-21 18:12:20 +10001854 active_state->interactive_mode = interactive;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001855
Damien Miller34132e52000-01-14 15:45:46 +11001856 /* Only set socket options if using a socket. */
1857 if (!packet_connection_is_on_socket())
Ben Lindstrom93b6b772003-04-27 17:55:33 +00001858 return;
Darren Tuckerf7288d72009-06-21 18:12:20 +10001859 set_nodelay(active_state->connection_in);
Damien Miller0dac6fb2010-11-20 15:19:38 +11001860 packet_set_tos(interactive ? qos_interactive : qos_bulk);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001861}
1862
1863/* Returns true if the current connection is interactive. */
1864
1865int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001866packet_is_interactive(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001867{
Darren Tuckerf7288d72009-06-21 18:12:20 +10001868 return active_state->interactive_mode;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001869}
Damien Miller6162d121999-11-21 13:23:52 +11001870
Darren Tucker1f8311c2004-05-13 16:39:33 +10001871int
Darren Tucker502d3842003-06-28 12:38:01 +10001872packet_set_maxsize(u_int s)
Damien Miller6162d121999-11-21 13:23:52 +11001873{
Darren Tucker7b935c72009-06-21 18:59:36 +10001874 if (active_state->set_maxsize_called) {
Damien Miller996acd22003-04-09 20:59:48 +10001875 logit("packet_set_maxsize: called twice: old %d new %d",
Darren Tuckerf7288d72009-06-21 18:12:20 +10001876 active_state->max_packet_size, s);
Damien Miller95def091999-11-25 00:26:21 +11001877 return -1;
1878 }
1879 if (s < 4 * 1024 || s > 1024 * 1024) {
Damien Miller996acd22003-04-09 20:59:48 +10001880 logit("packet_set_maxsize: bad size %d", s);
Damien Miller95def091999-11-25 00:26:21 +11001881 return -1;
1882 }
Darren Tucker7b935c72009-06-21 18:59:36 +10001883 active_state->set_maxsize_called = 1;
Ben Lindstrom16d45b32001-06-13 04:39:18 +00001884 debug("packet_set_maxsize: setting to %d", s);
Darren Tuckerf7288d72009-06-21 18:12:20 +10001885 active_state->max_packet_size = s;
Damien Miller95def091999-11-25 00:26:21 +11001886 return s;
Damien Miller6162d121999-11-21 13:23:52 +11001887}
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001888
Darren Tuckerf7288d72009-06-21 18:12:20 +10001889int
1890packet_inc_alive_timeouts(void)
1891{
1892 return ++active_state->keep_alive_timeouts;
1893}
1894
1895void
1896packet_set_alive_timeouts(int ka)
1897{
1898 active_state->keep_alive_timeouts = ka;
1899}
1900
1901u_int
1902packet_get_maxsize(void)
1903{
1904 return active_state->max_packet_size;
1905}
1906
Damien Miller9f643902001-11-12 11:02:52 +11001907/* roundup current message to pad bytes */
1908void
1909packet_add_padding(u_char pad)
1910{
Darren Tuckerf7288d72009-06-21 18:12:20 +10001911 active_state->extra_pad = pad;
Damien Miller9f643902001-11-12 11:02:52 +11001912}
1913
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001914/*
1915 * 9.2. Ignored Data Message
Ben Lindstroma3700052001-04-05 23:26:32 +00001916 *
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001917 * byte SSH_MSG_IGNORE
1918 * string data
Ben Lindstroma3700052001-04-05 23:26:32 +00001919 *
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001920 * All implementations MUST understand (and ignore) this message at any
1921 * time (after receiving the protocol version). No implementation is
1922 * required to send them. This message can be used as an additional
1923 * protection measure against advanced traffic analysis techniques.
1924 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001925void
1926packet_send_ignore(int nbytes)
1927{
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001928 u_int32_t rnd = 0;
Ben Lindstrome229b252001-03-05 06:28:06 +00001929 int i;
1930
1931 packet_start(compat20 ? SSH2_MSG_IGNORE : SSH_MSG_IGNORE);
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001932 packet_put_int(nbytes);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001933 for (i = 0; i < nbytes; i++) {
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001934 if (i % 4 == 0)
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001935 rnd = arc4random();
Damien Miller8ba29fe2006-03-26 14:25:19 +11001936 packet_put_char((u_char)rnd & 0xff);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001937 rnd >>= 8;
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001938 }
1939}
Damien Millera5539d22003-04-09 20:50:06 +10001940
Darren Tucker1f8311c2004-05-13 16:39:33 +10001941#define MAX_PACKETS (1U<<31)
Damien Millera5539d22003-04-09 20:50:06 +10001942int
1943packet_need_rekeying(void)
1944{
1945 if (datafellows & SSH_BUG_NOREKEY)
1946 return 0;
1947 return
Darren Tuckerf7288d72009-06-21 18:12:20 +10001948 (active_state->p_send.packets > MAX_PACKETS) ||
1949 (active_state->p_read.packets > MAX_PACKETS) ||
1950 (active_state->max_blocks_out &&
1951 (active_state->p_send.blocks > active_state->max_blocks_out)) ||
1952 (active_state->max_blocks_in &&
Darren Tuckerc53c2af2013-05-16 20:28:16 +10001953 (active_state->p_read.blocks > active_state->max_blocks_in)) ||
1954 (active_state->rekey_interval != 0 && active_state->rekey_time +
Darren Tuckerb759c9c2013-06-02 07:46:16 +10001955 active_state->rekey_interval <= monotime());
Damien Millera5539d22003-04-09 20:50:06 +10001956}
1957
1958void
Darren Tuckerc53c2af2013-05-16 20:28:16 +10001959packet_set_rekey_limits(u_int32_t bytes, time_t seconds)
Damien Millera5539d22003-04-09 20:50:06 +10001960{
Darren Tuckerc53c2af2013-05-16 20:28:16 +10001961 debug3("rekey after %lld bytes, %d seconds", (long long)bytes,
1962 (int)seconds);
Darren Tuckerf7288d72009-06-21 18:12:20 +10001963 active_state->rekey_limit = bytes;
Darren Tuckerc53c2af2013-05-16 20:28:16 +10001964 active_state->rekey_interval = seconds;
1965 /*
1966 * We set the time here so that in post-auth privsep slave we count
1967 * from the completion of the authentication.
1968 */
Darren Tuckerb759c9c2013-06-02 07:46:16 +10001969 active_state->rekey_time = monotime();
Darren Tuckerc53c2af2013-05-16 20:28:16 +10001970}
1971
1972time_t
1973packet_get_rekey_timeout(void)
1974{
1975 time_t seconds;
1976
1977 seconds = active_state->rekey_time + active_state->rekey_interval -
Darren Tuckerb759c9c2013-06-02 07:46:16 +10001978 monotime();
Darren Tucker5f96f3b2013-05-16 20:29:28 +10001979 return (seconds <= 0 ? 1 : seconds);
Damien Millera5539d22003-04-09 20:50:06 +10001980}
Damien Miller9786e6e2005-07-26 21:54:56 +10001981
1982void
1983packet_set_server(void)
1984{
Darren Tuckerf7288d72009-06-21 18:12:20 +10001985 active_state->server_side = 1;
Damien Miller9786e6e2005-07-26 21:54:56 +10001986}
1987
1988void
1989packet_set_authenticated(void)
1990{
Darren Tuckerf7288d72009-06-21 18:12:20 +10001991 active_state->after_authentication = 1;
1992}
1993
1994void *
1995packet_get_input(void)
1996{
1997 return (void *)&active_state->input;
1998}
1999
2000void *
2001packet_get_output(void)
2002{
2003 return (void *)&active_state->output;
2004}
2005
2006void *
2007packet_get_newkeys(int mode)
2008{
2009 return (void *)active_state->newkeys[mode];
Damien Miller9786e6e2005-07-26 21:54:56 +10002010}
Darren Tuckere841eb02009-07-06 07:11:13 +10002011
2012/*
2013 * Save the state for the real connection, and use a separate state when
2014 * resuming a suspended connection.
2015 */
2016void
2017packet_backup_state(void)
2018{
2019 struct session_state *tmp;
2020
2021 close(active_state->connection_in);
2022 active_state->connection_in = -1;
2023 close(active_state->connection_out);
2024 active_state->connection_out = -1;
2025 if (backup_state)
2026 tmp = backup_state;
2027 else
2028 tmp = alloc_session_state();
2029 backup_state = active_state;
2030 active_state = tmp;
2031}
2032
2033/*
2034 * Swap in the old state when resuming a connecion.
2035 */
2036void
2037packet_restore_state(void)
2038{
2039 struct session_state *tmp;
2040 void *buf;
2041 u_int len;
2042
2043 tmp = backup_state;
2044 backup_state = active_state;
2045 active_state = tmp;
2046 active_state->connection_in = backup_state->connection_in;
2047 backup_state->connection_in = -1;
2048 active_state->connection_out = backup_state->connection_out;
2049 backup_state->connection_out = -1;
2050 len = buffer_len(&backup_state->input);
2051 if (len > 0) {
2052 buf = buffer_ptr(&backup_state->input);
2053 buffer_append(&active_state->input, buf, len);
2054 buffer_clear(&backup_state->input);
2055 add_recv_bytes(len);
2056 }
2057}