blob: fdc64888811061b1e2dd1ab7269554dd8879c78e [file] [log] [blame]
Darren Tuckerf7288d72009-06-21 18:12:20 +10001/* $OpenBSD: packet.c,v 1.161 2009/05/25 06:48:01 andreas 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 Tucker5d196262006-07-12 22:15:16 +100061
Damien Millerd4a8b7e1999-10-27 13:42:43 +100062#include "xmalloc.h"
63#include "buffer.h"
64#include "packet.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100065#include "crc32.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100066#include "compress.h"
67#include "deattack.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000068#include "channels.h"
Damien Miller33b13562000-04-04 14:38:59 +100069#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000070#include "ssh1.h"
Damien Miller33b13562000-04-04 14:38:59 +100071#include "ssh2.h"
Damien Miller874d77b2000-10-14 16:23:11 +110072#include "cipher.h"
Damien Millerd7834352006-08-05 12:39:39 +100073#include "key.h"
Damien Miller33b13562000-04-04 14:38:59 +100074#include "kex.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000075#include "mac.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000076#include "log.h"
77#include "canohost.h"
Damien Miller4d007762002-02-05 11:52:54 +110078#include "misc.h"
Ben Lindstrom402c6cc2002-06-21 00:43:42 +000079#include "ssh.h"
Damien Miller33b13562000-04-04 14:38:59 +100080
81#ifdef PACKET_DEBUG
82#define DBG(x) x
83#else
84#define DBG(x)
85#endif
86
Damien Miller13ae44c2009-01-28 16:38:41 +110087#define PACKET_MAX_SIZE (256 * 1024)
88
Darren Tuckerf7288d72009-06-21 18:12:20 +100089struct packet_state {
Damien Millera5539d22003-04-09 20:50:06 +100090 u_int32_t seqnr;
91 u_int32_t packets;
92 u_int64_t blocks;
Damien Millerb61f3fc2008-07-11 17:36:48 +100093 u_int64_t bytes;
Darren Tuckerf7288d72009-06-21 18:12:20 +100094};
Damien Miller13ae44c2009-01-28 16:38:41 +110095
Damien Millera5539d22003-04-09 20:50:06 +100096struct packet {
97 TAILQ_ENTRY(packet) next;
98 u_char type;
99 Buffer payload;
100};
Darren Tuckerf7288d72009-06-21 18:12:20 +1000101
102struct session_state {
103 /*
104 * This variable contains the file descriptors used for
105 * communicating with the other side. connection_in is used for
106 * reading; connection_out for writing. These can be the same
107 * descriptor, in which case it is assumed to be a socket.
108 */
109 int connection_in;
110 int connection_out;
111
112 /* Protocol flags for the remote side. */
113 u_int remote_protocol_flags;
114
115 /* Encryption context for receiving data. Only used for decryption. */
116 CipherContext receive_context;
117
118 /* Encryption context for sending data. Only used for encryption. */
119 CipherContext send_context;
120
121 /* Buffer for raw input data from the socket. */
122 Buffer input;
123
124 /* Buffer for raw output data going to the socket. */
125 Buffer output;
126
127 /* Buffer for the partial outgoing packet being constructed. */
128 Buffer outgoing_packet;
129
130 /* Buffer for the incoming packet currently being processed. */
131 Buffer incoming_packet;
132
133 /* Scratch buffer for packet compression/decompression. */
134 Buffer compression_buffer;
135 int compression_buffer_ready;
136
137 /*
138 * Flag indicating whether packet compression/decompression is
139 * enabled.
140 */
141 int packet_compression;
142
143 /* default maximum packet size */
144 u_int max_packet_size;
145
146 /* Flag indicating whether this module has been initialized. */
147 int initialized;
148
149 /* Set to true if the connection is interactive. */
150 int interactive_mode;
151
152 /* Set to true if we are the server side. */
153 int server_side;
154
155 /* Set to true if we are authenticated. */
156 int after_authentication;
157
158 int keep_alive_timeouts;
159
160 /* The maximum time that we will wait to send or receive a packet */
161 int packet_timeout_ms;
162
163 /* Session key information for Encryption and MAC */
164 Newkeys *newkeys[MODE_MAX];
165 struct packet_state p_read, p_send;
166
167 u_int64_t max_blocks_in, max_blocks_out;
168 u_int32_t rekey_limit;
169
170 /* Session key for protocol v1 */
171 u_char ssh1_key[SSH_SESSION_KEY_LENGTH];
172 u_int ssh1_keylen;
173
174 /* roundup current message to extra_pad bytes */
175 u_char extra_pad;
176
177 /* XXX discard incoming data after MAC error */
178 u_int packet_discard;
179 Mac *packet_discard_mac;
180
181 /* Used in packet_read_poll2() */
182 u_int packlen;
183
184 TAILQ_HEAD(, packet) outgoing;
185};
186
187static struct session_state *active_state;
188
189static struct session_state *
190alloc_session_state()
191{
192 struct session_state *s = xcalloc(1, sizeof(*s));
193
194 s->connection_in = -1;
195 s->connection_out = -1;
196 s->max_packet_size = 32768;
197 s->packet_timeout_ms = -1;
198 return s;
199}
Damien Millera5539d22003-04-09 20:50:06 +1000200
Damien Miller5428f641999-11-25 11:54:57 +1100201/*
202 * Sets the descriptors used for communication. Disables encryption until
203 * packet_set_encryption_key is called.
204 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000205void
206packet_set_connection(int fd_in, int fd_out)
207{
Damien Miller874d77b2000-10-14 16:23:11 +1100208 Cipher *none = cipher_by_name("none");
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000209
Damien Miller874d77b2000-10-14 16:23:11 +1100210 if (none == NULL)
211 fatal("packet_set_connection: cannot load cipher 'none'");
Darren Tuckerf7288d72009-06-21 18:12:20 +1000212 if (active_state == NULL)
213 active_state = alloc_session_state();
214 active_state->connection_in = fd_in;
215 active_state->connection_out = fd_out;
216 cipher_init(&active_state->send_context, none, (const u_char *)"",
Darren Tucker1f8311c2004-05-13 16:39:33 +1000217 0, NULL, 0, CIPHER_ENCRYPT);
Darren Tuckerf7288d72009-06-21 18:12:20 +1000218 cipher_init(&active_state->receive_context, none, (const u_char *)"",
Darren Tucker1f8311c2004-05-13 16:39:33 +1000219 0, NULL, 0, CIPHER_DECRYPT);
Darren Tuckerf7288d72009-06-21 18:12:20 +1000220 active_state->newkeys[MODE_IN] = active_state->newkeys[MODE_OUT] = NULL;
221 if (!active_state->initialized) {
222 active_state->initialized = 1;
223 buffer_init(&active_state->input);
224 buffer_init(&active_state->output);
225 buffer_init(&active_state->outgoing_packet);
226 buffer_init(&active_state->incoming_packet);
227 TAILQ_INIT(&active_state->outgoing);
228 active_state->p_send.packets = active_state->p_read.packets = 0;
Damien Miller95def091999-11-25 00:26:21 +1100229 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000230}
231
Darren Tucker3fc464e2008-06-13 06:42:45 +1000232void
233packet_set_timeout(int timeout, int count)
234{
235 if (timeout == 0 || count == 0) {
Darren Tuckerf7288d72009-06-21 18:12:20 +1000236 active_state->packet_timeout_ms = -1;
Darren Tucker3fc464e2008-06-13 06:42:45 +1000237 return;
238 }
239 if ((INT_MAX / 1000) / count < timeout)
Darren Tuckerf7288d72009-06-21 18:12:20 +1000240 active_state->packet_timeout_ms = INT_MAX;
Darren Tucker3fc464e2008-06-13 06:42:45 +1000241 else
Darren Tuckerf7288d72009-06-21 18:12:20 +1000242 active_state->packet_timeout_ms = timeout * count * 1000;
Darren Tucker3fc464e2008-06-13 06:42:45 +1000243}
244
Damien Miller13ae44c2009-01-28 16:38:41 +1100245static void
246packet_stop_discard(void)
247{
Darren Tuckerf7288d72009-06-21 18:12:20 +1000248 if (active_state->packet_discard_mac) {
Damien Miller13ae44c2009-01-28 16:38:41 +1100249 char buf[1024];
250
251 memset(buf, 'a', sizeof(buf));
Darren Tuckerf7288d72009-06-21 18:12:20 +1000252 while (buffer_len(&active_state->incoming_packet) <
253 PACKET_MAX_SIZE)
254 buffer_append(&active_state->incoming_packet, buf,
255 sizeof(buf));
256 (void) mac_compute(active_state->packet_discard_mac,
257 active_state->p_read.seqnr,
258 buffer_ptr(&active_state->incoming_packet),
Damien Miller13ae44c2009-01-28 16:38:41 +1100259 PACKET_MAX_SIZE);
260 }
261 logit("Finished discarding for %.200s", get_remote_ipaddr());
262 cleanup_exit(255);
263}
264
265static void
266packet_start_discard(Enc *enc, Mac *mac, u_int packet_length, u_int discard)
267{
Damien Miller61433be2009-02-14 16:35:01 +1100268 if (enc == NULL || !cipher_is_cbc(enc->cipher))
Damien Miller13ae44c2009-01-28 16:38:41 +1100269 packet_disconnect("Packet corrupt");
270 if (packet_length != PACKET_MAX_SIZE && mac && mac->enabled)
Darren Tuckerf7288d72009-06-21 18:12:20 +1000271 active_state->packet_discard_mac = mac;
272 if (buffer_len(&active_state->input) >= discard)
Damien Miller13ae44c2009-01-28 16:38:41 +1100273 packet_stop_discard();
Darren Tuckerf7288d72009-06-21 18:12:20 +1000274 active_state->packet_discard = discard -
275 buffer_len(&active_state->input);
Damien Miller13ae44c2009-01-28 16:38:41 +1100276}
277
Damien Miller34132e52000-01-14 15:45:46 +1100278/* Returns 1 if remote host is connected via socket, 0 if not. */
279
280int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000281packet_connection_is_on_socket(void)
Damien Miller34132e52000-01-14 15:45:46 +1100282{
283 struct sockaddr_storage from, to;
284 socklen_t fromlen, tolen;
285
286 /* filedescriptors in and out are the same, so it's a socket */
Darren Tuckerf7288d72009-06-21 18:12:20 +1000287 if (active_state->connection_in == active_state->connection_out)
Damien Miller34132e52000-01-14 15:45:46 +1100288 return 1;
289 fromlen = sizeof(from);
290 memset(&from, 0, sizeof(from));
Darren Tuckerf7288d72009-06-21 18:12:20 +1000291 if (getpeername(active_state->connection_in, (struct sockaddr *)&from,
292 &fromlen) < 0)
Damien Miller34132e52000-01-14 15:45:46 +1100293 return 0;
294 tolen = sizeof(to);
295 memset(&to, 0, sizeof(to));
Darren Tuckerf7288d72009-06-21 18:12:20 +1000296 if (getpeername(active_state->connection_out, (struct sockaddr *)&to,
297 &tolen) < 0)
Damien Miller34132e52000-01-14 15:45:46 +1100298 return 0;
299 if (fromlen != tolen || memcmp(&from, &to, fromlen) != 0)
300 return 0;
301 if (from.ss_family != AF_INET && from.ss_family != AF_INET6)
302 return 0;
303 return 1;
304}
305
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000306/*
Ben Lindstromf6027d32002-03-22 01:42:04 +0000307 * Exports an IV from the CipherContext required to export the key
308 * state back from the unprivileged child to the privileged parent
309 * process.
310 */
311
312void
313packet_get_keyiv(int mode, u_char *iv, u_int len)
314{
315 CipherContext *cc;
316
317 if (mode == MODE_OUT)
Darren Tuckerf7288d72009-06-21 18:12:20 +1000318 cc = &active_state->send_context;
Ben Lindstromf6027d32002-03-22 01:42:04 +0000319 else
Darren Tuckerf7288d72009-06-21 18:12:20 +1000320 cc = &active_state->receive_context;
Ben Lindstromf6027d32002-03-22 01:42:04 +0000321
322 cipher_get_keyiv(cc, iv, len);
323}
324
325int
326packet_get_keycontext(int mode, u_char *dat)
327{
328 CipherContext *cc;
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000329
Ben Lindstromf6027d32002-03-22 01:42:04 +0000330 if (mode == MODE_OUT)
Darren Tuckerf7288d72009-06-21 18:12:20 +1000331 cc = &active_state->send_context;
Ben Lindstromf6027d32002-03-22 01:42:04 +0000332 else
Darren Tuckerf7288d72009-06-21 18:12:20 +1000333 cc = &active_state->receive_context;
Ben Lindstromf6027d32002-03-22 01:42:04 +0000334
335 return (cipher_get_keycontext(cc, dat));
336}
337
338void
339packet_set_keycontext(int mode, u_char *dat)
340{
341 CipherContext *cc;
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000342
Ben Lindstromf6027d32002-03-22 01:42:04 +0000343 if (mode == MODE_OUT)
Darren Tuckerf7288d72009-06-21 18:12:20 +1000344 cc = &active_state->send_context;
Ben Lindstromf6027d32002-03-22 01:42:04 +0000345 else
Darren Tuckerf7288d72009-06-21 18:12:20 +1000346 cc = &active_state->receive_context;
Ben Lindstromf6027d32002-03-22 01:42:04 +0000347
348 cipher_set_keycontext(cc, dat);
349}
350
351int
352packet_get_keyiv_len(int mode)
353{
354 CipherContext *cc;
355
356 if (mode == MODE_OUT)
Darren Tuckerf7288d72009-06-21 18:12:20 +1000357 cc = &active_state->send_context;
Ben Lindstromf6027d32002-03-22 01:42:04 +0000358 else
Darren Tuckerf7288d72009-06-21 18:12:20 +1000359 cc = &active_state->receive_context;
Ben Lindstromf6027d32002-03-22 01:42:04 +0000360
361 return (cipher_get_keyiv_len(cc));
362}
Damien Miller4f7becb2006-03-26 14:10:14 +1100363
Ben Lindstromf6027d32002-03-22 01:42:04 +0000364void
365packet_set_iv(int mode, u_char *dat)
366{
367 CipherContext *cc;
368
369 if (mode == MODE_OUT)
Darren Tuckerf7288d72009-06-21 18:12:20 +1000370 cc = &active_state->send_context;
Ben Lindstromf6027d32002-03-22 01:42:04 +0000371 else
Darren Tuckerf7288d72009-06-21 18:12:20 +1000372 cc = &active_state->receive_context;
Ben Lindstromf6027d32002-03-22 01:42:04 +0000373
374 cipher_set_keyiv(cc, dat);
375}
Damien Miller4f7becb2006-03-26 14:10:14 +1100376
Ben Lindstromf6027d32002-03-22 01:42:04 +0000377int
Damien Miller2b92d322003-06-11 22:05:06 +1000378packet_get_ssh1_cipher(void)
Ben Lindstromf6027d32002-03-22 01:42:04 +0000379{
Darren Tuckerf7288d72009-06-21 18:12:20 +1000380 return (cipher_get_number(active_state->receive_context.cipher));
Ben Lindstromf6027d32002-03-22 01:42:04 +0000381}
382
Damien Millera5539d22003-04-09 20:50:06 +1000383void
Damien Millerb61f3fc2008-07-11 17:36:48 +1000384packet_get_state(int mode, u_int32_t *seqnr, u_int64_t *blocks, u_int32_t *packets,
385 u_int64_t *bytes)
Ben Lindstromf6027d32002-03-22 01:42:04 +0000386{
Damien Millera5539d22003-04-09 20:50:06 +1000387 struct packet_state *state;
388
Darren Tuckerf7288d72009-06-21 18:12:20 +1000389 state = (mode == MODE_IN) ?
390 &active_state->p_read : &active_state->p_send;
Damien Millerb61f3fc2008-07-11 17:36:48 +1000391 if (seqnr)
392 *seqnr = state->seqnr;
393 if (blocks)
394 *blocks = state->blocks;
395 if (packets)
396 *packets = state->packets;
397 if (bytes)
398 *bytes = state->bytes;
Ben Lindstromf6027d32002-03-22 01:42:04 +0000399}
400
401void
Damien Millerb61f3fc2008-07-11 17:36:48 +1000402packet_set_state(int mode, u_int32_t seqnr, u_int64_t blocks, u_int32_t packets,
403 u_int64_t bytes)
Ben Lindstromf6027d32002-03-22 01:42:04 +0000404{
Damien Millera5539d22003-04-09 20:50:06 +1000405 struct packet_state *state;
406
Darren Tuckerf7288d72009-06-21 18:12:20 +1000407 state = (mode == MODE_IN) ?
408 &active_state->p_read : &active_state->p_send;
Damien Millera5539d22003-04-09 20:50:06 +1000409 state->seqnr = seqnr;
410 state->blocks = blocks;
411 state->packets = packets;
Damien Millerb61f3fc2008-07-11 17:36:48 +1000412 state->bytes = bytes;
Ben Lindstromf6027d32002-03-22 01:42:04 +0000413}
414
Damien Miller34132e52000-01-14 15:45:46 +1100415/* returns 1 if connection is via ipv4 */
416
417int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000418packet_connection_is_ipv4(void)
Damien Miller34132e52000-01-14 15:45:46 +1100419{
420 struct sockaddr_storage to;
Damien Miller6fe375d2000-01-23 09:38:00 +1100421 socklen_t tolen = sizeof(to);
Damien Miller34132e52000-01-14 15:45:46 +1100422
423 memset(&to, 0, sizeof(to));
Darren Tuckerf7288d72009-06-21 18:12:20 +1000424 if (getsockname(active_state->connection_out, (struct sockaddr *)&to,
425 &tolen) < 0)
Damien Miller34132e52000-01-14 15:45:46 +1100426 return 0;
Damien Milleraa100c52002-04-26 16:54:34 +1000427 if (to.ss_family == AF_INET)
428 return 1;
429#ifdef IPV4_IN_IPV6
Damien Millera8e06ce2003-11-21 23:48:55 +1100430 if (to.ss_family == AF_INET6 &&
Damien Milleraa100c52002-04-26 16:54:34 +1000431 IN6_IS_ADDR_V4MAPPED(&((struct sockaddr_in6 *)&to)->sin6_addr))
432 return 1;
433#endif
434 return 0;
Damien Miller34132e52000-01-14 15:45:46 +1100435}
436
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000437/* Sets the connection into non-blocking mode. */
438
439void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000440packet_set_nonblocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000441{
Damien Miller95def091999-11-25 00:26:21 +1100442 /* Set the socket into non-blocking mode. */
Darren Tuckerf7288d72009-06-21 18:12:20 +1000443 set_nonblock(active_state->connection_in);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000444
Darren Tuckerf7288d72009-06-21 18:12:20 +1000445 if (active_state->connection_out != active_state->connection_in)
446 set_nonblock(active_state->connection_out);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000447}
448
449/* Returns the socket used for reading. */
450
451int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000452packet_get_connection_in(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000453{
Darren Tuckerf7288d72009-06-21 18:12:20 +1000454 return active_state->connection_in;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000455}
456
457/* Returns the descriptor used for writing. */
458
459int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000460packet_get_connection_out(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000461{
Darren Tuckerf7288d72009-06-21 18:12:20 +1000462 return active_state->connection_out;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000463}
464
465/* Closes the connection and clears and frees internal data structures. */
466
467void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000468packet_close(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000469{
Darren Tuckerf7288d72009-06-21 18:12:20 +1000470 if (!active_state->initialized)
Damien Miller95def091999-11-25 00:26:21 +1100471 return;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000472 active_state->initialized = 0;
473 if (active_state->connection_in == active_state->connection_out) {
474 shutdown(active_state->connection_out, SHUT_RDWR);
475 close(active_state->connection_out);
Damien Miller95def091999-11-25 00:26:21 +1100476 } else {
Darren Tuckerf7288d72009-06-21 18:12:20 +1000477 close(active_state->connection_in);
478 close(active_state->connection_out);
Damien Miller95def091999-11-25 00:26:21 +1100479 }
Darren Tuckerf7288d72009-06-21 18:12:20 +1000480 buffer_free(&active_state->input);
481 buffer_free(&active_state->output);
482 buffer_free(&active_state->outgoing_packet);
483 buffer_free(&active_state->incoming_packet);
484 if (active_state->compression_buffer_ready) {
485 buffer_free(&active_state->compression_buffer);
Damien Miller95def091999-11-25 00:26:21 +1100486 buffer_compress_uninit();
487 }
Darren Tuckerf7288d72009-06-21 18:12:20 +1000488 cipher_cleanup(&active_state->send_context);
489 cipher_cleanup(&active_state->receive_context);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000490}
491
492/* Sets remote side protocol flags. */
493
494void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000495packet_set_protocol_flags(u_int protocol_flags)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000496{
Darren Tuckerf7288d72009-06-21 18:12:20 +1000497 active_state->remote_protocol_flags = protocol_flags;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000498}
499
500/* Returns the remote protocol flags set earlier by the above function. */
501
Ben Lindstrom46c16222000-12-22 01:43:59 +0000502u_int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000503packet_get_protocol_flags(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000504{
Darren Tuckerf7288d72009-06-21 18:12:20 +1000505 return active_state->remote_protocol_flags;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000506}
507
Damien Miller5428f641999-11-25 11:54:57 +1100508/*
509 * Starts packet compression from the next packet on in both directions.
510 * Level is compression level 1 (fastest) - 9 (slow, best) as in gzip.
511 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000512
Ben Lindstrombba81212001-06-25 05:01:22 +0000513static void
514packet_init_compression(void)
Ben Lindstromfb50cdf2001-04-05 23:20:46 +0000515{
Darren Tuckerf7288d72009-06-21 18:12:20 +1000516 if (active_state->compression_buffer_ready == 1)
Ben Lindstromfb50cdf2001-04-05 23:20:46 +0000517 return;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000518 active_state->compression_buffer_ready = 1;
519 buffer_init(&active_state->compression_buffer);
Ben Lindstromfb50cdf2001-04-05 23:20:46 +0000520}
521
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000522void
523packet_start_compression(int level)
524{
Darren Tuckerf7288d72009-06-21 18:12:20 +1000525 if (active_state->packet_compression && !compat20)
Damien Miller95def091999-11-25 00:26:21 +1100526 fatal("Compression already enabled.");
Darren Tuckerf7288d72009-06-21 18:12:20 +1000527 active_state->packet_compression = 1;
Ben Lindstromfb50cdf2001-04-05 23:20:46 +0000528 packet_init_compression();
529 buffer_compress_init_send(level);
530 buffer_compress_init_recv();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000531}
532
Damien Miller5428f641999-11-25 11:54:57 +1100533/*
Damien Miller5428f641999-11-25 11:54:57 +1100534 * Causes any further packets to be encrypted using the given key. The same
535 * key is used for both sending and reception. However, both directions are
536 * encrypted independently of each other.
537 */
Ben Lindstrom402c6cc2002-06-21 00:43:42 +0000538
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000539void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000540packet_set_encryption_key(const u_char *key, u_int keylen,
Damien Miller874d77b2000-10-14 16:23:11 +1100541 int number)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000542{
Damien Miller874d77b2000-10-14 16:23:11 +1100543 Cipher *cipher = cipher_by_number(number);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000544
Damien Miller874d77b2000-10-14 16:23:11 +1100545 if (cipher == NULL)
546 fatal("packet_set_encryption_key: unknown cipher number %d", number);
Damien Miller33b13562000-04-04 14:38:59 +1000547 if (keylen < 20)
Damien Miller874d77b2000-10-14 16:23:11 +1100548 fatal("packet_set_encryption_key: keylen too small: %d", keylen);
Ben Lindstrom402c6cc2002-06-21 00:43:42 +0000549 if (keylen > SSH_SESSION_KEY_LENGTH)
550 fatal("packet_set_encryption_key: keylen too big: %d", keylen);
Darren Tuckerf7288d72009-06-21 18:12:20 +1000551 memcpy(active_state->ssh1_key, key, keylen);
552 active_state->ssh1_keylen = keylen;
553 cipher_init(&active_state->send_context, cipher, key, keylen, NULL,
554 0, CIPHER_ENCRYPT);
555 cipher_init(&active_state->receive_context, cipher, key, keylen, NULL,
556 0, CIPHER_DECRYPT);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000557}
558
Ben Lindstrom402c6cc2002-06-21 00:43:42 +0000559u_int
560packet_get_encryption_key(u_char *key)
561{
562 if (key == NULL)
Darren Tuckerf7288d72009-06-21 18:12:20 +1000563 return (active_state->ssh1_keylen);
564 memcpy(key, active_state->ssh1_key, active_state->ssh1_keylen);
565 return (active_state->ssh1_keylen);
Ben Lindstrom402c6cc2002-06-21 00:43:42 +0000566}
567
Ben Lindstrom80c6d772001-06-05 21:09:18 +0000568/* Start constructing a packet to send. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000569void
Ben Lindstrom80c6d772001-06-05 21:09:18 +0000570packet_start(u_char type)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000571{
Ben Lindstrom80c6d772001-06-05 21:09:18 +0000572 u_char buf[9];
573 int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000574
Ben Lindstrom204e4882001-03-05 06:47:00 +0000575 DBG(debug("packet_start[%d]", type));
Ben Lindstrom80c6d772001-06-05 21:09:18 +0000576 len = compat20 ? 6 : 9;
577 memset(buf, 0, len - 1);
578 buf[len - 1] = type;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000579 buffer_clear(&active_state->outgoing_packet);
580 buffer_append(&active_state->outgoing_packet, buf, len);
Damien Miller33b13562000-04-04 14:38:59 +1000581}
582
Ben Lindstrom80c6d772001-06-05 21:09:18 +0000583/* Append payload. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000584void
585packet_put_char(int value)
586{
Damien Miller95def091999-11-25 00:26:21 +1100587 char ch = value;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000588
Darren Tuckerf7288d72009-06-21 18:12:20 +1000589 buffer_append(&active_state->outgoing_packet, &ch, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000590}
Damien Miller4f7becb2006-03-26 14:10:14 +1100591
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000592void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000593packet_put_int(u_int value)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000594{
Darren Tuckerf7288d72009-06-21 18:12:20 +1000595 buffer_put_int(&active_state->outgoing_packet, value);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000596}
Damien Miller4f7becb2006-03-26 14:10:14 +1100597
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000598void
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100599packet_put_string(const void *buf, u_int len)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000600{
Darren Tuckerf7288d72009-06-21 18:12:20 +1000601 buffer_put_string(&active_state->outgoing_packet, buf, len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000602}
Damien Miller4f7becb2006-03-26 14:10:14 +1100603
Damien Miller33b13562000-04-04 14:38:59 +1000604void
605packet_put_cstring(const char *str)
606{
Darren Tuckerf7288d72009-06-21 18:12:20 +1000607 buffer_put_cstring(&active_state->outgoing_packet, str);
Damien Miller33b13562000-04-04 14:38:59 +1000608}
Damien Miller4f7becb2006-03-26 14:10:14 +1100609
Damien Miller33b13562000-04-04 14:38:59 +1000610void
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100611packet_put_raw(const void *buf, u_int len)
Damien Miller33b13562000-04-04 14:38:59 +1000612{
Darren Tuckerf7288d72009-06-21 18:12:20 +1000613 buffer_append(&active_state->outgoing_packet, buf, len);
Damien Miller33b13562000-04-04 14:38:59 +1000614}
Damien Miller4f7becb2006-03-26 14:10:14 +1100615
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000616void
Damien Miller95def091999-11-25 00:26:21 +1100617packet_put_bignum(BIGNUM * value)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000618{
Darren Tuckerf7288d72009-06-21 18:12:20 +1000619 buffer_put_bignum(&active_state->outgoing_packet, value);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000620}
Damien Miller4f7becb2006-03-26 14:10:14 +1100621
Damien Miller33b13562000-04-04 14:38:59 +1000622void
623packet_put_bignum2(BIGNUM * value)
624{
Darren Tuckerf7288d72009-06-21 18:12:20 +1000625 buffer_put_bignum2(&active_state->outgoing_packet, value);
Damien Miller33b13562000-04-04 14:38:59 +1000626}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000627
Damien Miller5428f641999-11-25 11:54:57 +1100628/*
629 * Finalizes and sends the packet. If the encryption key has been set,
630 * encrypts the packet before sending.
631 */
Damien Miller95def091999-11-25 00:26:21 +1100632
Ben Lindstrombba81212001-06-25 05:01:22 +0000633static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000634packet_send1(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000635{
Ben Lindstrom4a7714a2002-02-26 18:04:38 +0000636 u_char buf[8], *cp;
Damien Miller95def091999-11-25 00:26:21 +1100637 int i, padding, len;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000638 u_int checksum;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000639 u_int32_t rnd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000640
Damien Miller5428f641999-11-25 11:54:57 +1100641 /*
642 * If using packet compression, compress the payload of the outgoing
643 * packet.
644 */
Darren Tuckerf7288d72009-06-21 18:12:20 +1000645 if (active_state->packet_compression) {
646 buffer_clear(&active_state->compression_buffer);
Damien Miller95def091999-11-25 00:26:21 +1100647 /* Skip padding. */
Darren Tuckerf7288d72009-06-21 18:12:20 +1000648 buffer_consume(&active_state->outgoing_packet, 8);
Damien Miller95def091999-11-25 00:26:21 +1100649 /* padding */
Darren Tuckerf7288d72009-06-21 18:12:20 +1000650 buffer_append(&active_state->compression_buffer,
651 "\0\0\0\0\0\0\0\0", 8);
652 buffer_compress(&active_state->outgoing_packet,
653 &active_state->compression_buffer);
654 buffer_clear(&active_state->outgoing_packet);
655 buffer_append(&active_state->outgoing_packet,
656 buffer_ptr(&active_state->compression_buffer),
657 buffer_len(&active_state->compression_buffer));
Damien Miller95def091999-11-25 00:26:21 +1100658 }
659 /* Compute packet length without padding (add checksum, remove padding). */
Darren Tuckerf7288d72009-06-21 18:12:20 +1000660 len = buffer_len(&active_state->outgoing_packet) + 4 - 8;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000661
Damien Millere247cc42000-05-07 12:03:14 +1000662 /* Insert padding. Initialized to zero in packet_start1() */
Damien Miller95def091999-11-25 00:26:21 +1100663 padding = 8 - len % 8;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000664 if (!active_state->send_context.plaintext) {
665 cp = buffer_ptr(&active_state->outgoing_packet);
Damien Miller95def091999-11-25 00:26:21 +1100666 for (i = 0; i < padding; i++) {
667 if (i % 4 == 0)
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000668 rnd = arc4random();
669 cp[7 - i] = rnd & 0xff;
670 rnd >>= 8;
Damien Miller95def091999-11-25 00:26:21 +1100671 }
672 }
Darren Tuckerf7288d72009-06-21 18:12:20 +1000673 buffer_consume(&active_state->outgoing_packet, 8 - padding);
Damien Miller95def091999-11-25 00:26:21 +1100674
675 /* Add check bytes. */
Darren Tuckerf7288d72009-06-21 18:12:20 +1000676 checksum = ssh_crc32(buffer_ptr(&active_state->outgoing_packet),
677 buffer_len(&active_state->outgoing_packet));
Damien Miller3f941882006-03-31 23:13:02 +1100678 put_u32(buf, checksum);
Darren Tuckerf7288d72009-06-21 18:12:20 +1000679 buffer_append(&active_state->outgoing_packet, buf, 4);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000680
681#ifdef PACKET_DEBUG
Damien Miller95def091999-11-25 00:26:21 +1100682 fprintf(stderr, "packet_send plain: ");
Darren Tuckerf7288d72009-06-21 18:12:20 +1000683 buffer_dump(&active_state->outgoing_packet);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000684#endif
685
Damien Miller95def091999-11-25 00:26:21 +1100686 /* Append to output. */
Damien Miller3f941882006-03-31 23:13:02 +1100687 put_u32(buf, len);
Darren Tuckerf7288d72009-06-21 18:12:20 +1000688 buffer_append(&active_state->output, buf, 4);
689 cp = buffer_append_space(&active_state->output,
690 buffer_len(&active_state->outgoing_packet));
691 cipher_crypt(&active_state->send_context, cp,
692 buffer_ptr(&active_state->outgoing_packet),
693 buffer_len(&active_state->outgoing_packet));
Damien Miller95def091999-11-25 00:26:21 +1100694
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000695#ifdef PACKET_DEBUG
Damien Miller95def091999-11-25 00:26:21 +1100696 fprintf(stderr, "encrypted: ");
Darren Tuckerf7288d72009-06-21 18:12:20 +1000697 buffer_dump(&active_state->output);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000698#endif
Darren Tuckerf7288d72009-06-21 18:12:20 +1000699 active_state->p_send.packets++;
700 active_state->p_send.bytes += len +
701 buffer_len(&active_state->outgoing_packet);
702 buffer_clear(&active_state->outgoing_packet);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000703
Damien Miller5428f641999-11-25 11:54:57 +1100704 /*
Damien Miller788f2122005-11-05 15:14:59 +1100705 * Note that the packet is now only buffered in output. It won't be
Damien Miller5428f641999-11-25 11:54:57 +1100706 * actually sent until packet_write_wait or packet_write_poll is
707 * called.
708 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000709}
710
Ben Lindstromf6027d32002-03-22 01:42:04 +0000711void
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000712set_newkeys(int mode)
713{
714 Enc *enc;
715 Mac *mac;
716 Comp *comp;
717 CipherContext *cc;
Damien Millera5539d22003-04-09 20:50:06 +1000718 u_int64_t *max_blocks;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000719 int crypt_type;
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000720
Ben Lindstrom064496f2002-12-23 02:04:22 +0000721 debug2("set_newkeys: mode %d", mode);
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000722
Damien Miller963f6b22002-02-19 15:21:23 +1100723 if (mode == MODE_OUT) {
Darren Tuckerf7288d72009-06-21 18:12:20 +1000724 cc = &active_state->send_context;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000725 crypt_type = CIPHER_ENCRYPT;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000726 active_state->p_send.packets = active_state->p_send.blocks = 0;
727 max_blocks = &active_state->max_blocks_out;
Damien Miller963f6b22002-02-19 15:21:23 +1100728 } else {
Darren Tuckerf7288d72009-06-21 18:12:20 +1000729 cc = &active_state->receive_context;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000730 crypt_type = CIPHER_DECRYPT;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000731 active_state->p_read.packets = active_state->p_read.blocks = 0;
732 max_blocks = &active_state->max_blocks_in;
Damien Miller963f6b22002-02-19 15:21:23 +1100733 }
Darren Tuckerf7288d72009-06-21 18:12:20 +1000734 if (active_state->newkeys[mode] != NULL) {
Ben Lindstrom064496f2002-12-23 02:04:22 +0000735 debug("set_newkeys: rekeying");
Damien Miller963f6b22002-02-19 15:21:23 +1100736 cipher_cleanup(cc);
Darren Tuckerf7288d72009-06-21 18:12:20 +1000737 enc = &active_state->newkeys[mode]->enc;
738 mac = &active_state->newkeys[mode]->mac;
739 comp = &active_state->newkeys[mode]->comp;
Damien Millere45796f2007-06-11 14:01:42 +1000740 mac_clear(mac);
Ben Lindstrom5ba23b32001-04-05 02:05:21 +0000741 xfree(enc->name);
742 xfree(enc->iv);
743 xfree(enc->key);
744 xfree(mac->name);
745 xfree(mac->key);
746 xfree(comp->name);
Darren Tuckerf7288d72009-06-21 18:12:20 +1000747 xfree(active_state->newkeys[mode]);
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000748 }
Darren Tuckerf7288d72009-06-21 18:12:20 +1000749 active_state->newkeys[mode] = kex_get_newkeys(mode);
750 if (active_state->newkeys[mode] == NULL)
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000751 fatal("newkeys: no keys for mode %d", mode);
Darren Tuckerf7288d72009-06-21 18:12:20 +1000752 enc = &active_state->newkeys[mode]->enc;
753 mac = &active_state->newkeys[mode]->mac;
754 comp = &active_state->newkeys[mode]->comp;
Damien Millere45796f2007-06-11 14:01:42 +1000755 if (mac_init(mac) == 0)
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000756 mac->enabled = 1;
757 DBG(debug("cipher_init_context: %d", mode));
Damien Miller963f6b22002-02-19 15:21:23 +1100758 cipher_init(cc, enc->cipher, enc->key, enc->key_len,
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000759 enc->iv, enc->block_size, crypt_type);
Ben Lindstromf6027d32002-03-22 01:42:04 +0000760 /* Deleting the keys does not gain extra security */
761 /* memset(enc->iv, 0, enc->block_size);
Darren Tucker5f3d5be2007-06-05 18:30:18 +1000762 memset(enc->key, 0, enc->key_len);
763 memset(mac->key, 0, mac->key_len); */
Damien Miller9786e6e2005-07-26 21:54:56 +1000764 if ((comp->type == COMP_ZLIB ||
Darren Tuckerf7288d72009-06-21 18:12:20 +1000765 (comp->type == COMP_DELAYED &&
766 active_state->after_authentication)) && comp->enabled == 0) {
Ben Lindstromfb50cdf2001-04-05 23:20:46 +0000767 packet_init_compression();
768 if (mode == MODE_OUT)
769 buffer_compress_init_send(6);
770 else
771 buffer_compress_init_recv();
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000772 comp->enabled = 1;
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000773 }
Darren Tucker81a0b372003-07-14 17:31:06 +1000774 /*
775 * The 2^(blocksize*2) limit is too expensive for 3DES,
776 * blowfish, etc, so enforce a 1GB limit for small blocksizes.
777 */
778 if (enc->block_size >= 16)
779 *max_blocks = (u_int64_t)1 << (enc->block_size*2);
780 else
781 *max_blocks = ((u_int64_t)1 << 30) / enc->block_size;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000782 if (active_state->rekey_limit)
783 *max_blocks = MIN(*max_blocks,
784 active_state->rekey_limit / enc->block_size);
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000785}
786
Damien Miller5428f641999-11-25 11:54:57 +1100787/*
Damien Miller9786e6e2005-07-26 21:54:56 +1000788 * Delayed compression for SSH2 is enabled after authentication:
Darren Tuckerf676c572006-08-05 18:51:08 +1000789 * This happens on the server side after a SSH2_MSG_USERAUTH_SUCCESS is sent,
Damien Miller9786e6e2005-07-26 21:54:56 +1000790 * and on the client side after a SSH2_MSG_USERAUTH_SUCCESS is received.
791 */
792static void
793packet_enable_delayed_compress(void)
794{
795 Comp *comp = NULL;
796 int mode;
797
798 /*
799 * Remember that we are past the authentication step, so rekeying
800 * with COMP_DELAYED will turn on compression immediately.
801 */
Darren Tuckerf7288d72009-06-21 18:12:20 +1000802 active_state->after_authentication = 1;
Damien Miller9786e6e2005-07-26 21:54:56 +1000803 for (mode = 0; mode < MODE_MAX; mode++) {
Darren Tucker4aa665b2006-09-21 13:00:25 +1000804 /* protocol error: USERAUTH_SUCCESS received before NEWKEYS */
Darren Tuckerf7288d72009-06-21 18:12:20 +1000805 if (active_state->newkeys[mode] == NULL)
Darren Tucker4aa665b2006-09-21 13:00:25 +1000806 continue;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000807 comp = &active_state->newkeys[mode]->comp;
Damien Miller9786e6e2005-07-26 21:54:56 +1000808 if (comp && !comp->enabled && comp->type == COMP_DELAYED) {
Damien Millerb5c01252005-08-12 22:10:28 +1000809 packet_init_compression();
Damien Miller9786e6e2005-07-26 21:54:56 +1000810 if (mode == MODE_OUT)
811 buffer_compress_init_send(6);
812 else
813 buffer_compress_init_recv();
814 comp->enabled = 1;
815 }
816 }
817}
818
819/*
Damien Miller33b13562000-04-04 14:38:59 +1000820 * Finalize packet in SSH2 format (compress, mac, encrypt, enqueue)
821 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000822static void
Damien Millera5539d22003-04-09 20:50:06 +1000823packet_send2_wrapped(void)
Damien Miller33b13562000-04-04 14:38:59 +1000824{
Ben Lindstrom4a7714a2002-02-26 18:04:38 +0000825 u_char type, *cp, *macbuf = NULL;
Damien Miller9f643902001-11-12 11:02:52 +1100826 u_char padlen, pad;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000827 u_int packet_length = 0;
Damien Miller9f643902001-11-12 11:02:52 +1100828 u_int i, len;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000829 u_int32_t rnd = 0;
Damien Miller33b13562000-04-04 14:38:59 +1000830 Enc *enc = NULL;
831 Mac *mac = NULL;
832 Comp *comp = NULL;
833 int block_size;
834
Darren Tuckerf7288d72009-06-21 18:12:20 +1000835 if (active_state->newkeys[MODE_OUT] != NULL) {
836 enc = &active_state->newkeys[MODE_OUT]->enc;
837 mac = &active_state->newkeys[MODE_OUT]->mac;
838 comp = &active_state->newkeys[MODE_OUT]->comp;
Damien Miller33b13562000-04-04 14:38:59 +1000839 }
Damien Miller963f6b22002-02-19 15:21:23 +1100840 block_size = enc ? enc->block_size : 8;
Damien Miller33b13562000-04-04 14:38:59 +1000841
Darren Tuckerf7288d72009-06-21 18:12:20 +1000842 cp = buffer_ptr(&active_state->outgoing_packet);
Ben Lindstrom4a7714a2002-02-26 18:04:38 +0000843 type = cp[5];
Damien Miller33b13562000-04-04 14:38:59 +1000844
845#ifdef PACKET_DEBUG
846 fprintf(stderr, "plain: ");
Darren Tuckerf7288d72009-06-21 18:12:20 +1000847 buffer_dump(&active_state->outgoing_packet);
Damien Miller33b13562000-04-04 14:38:59 +1000848#endif
849
850 if (comp && comp->enabled) {
Darren Tuckerf7288d72009-06-21 18:12:20 +1000851 len = buffer_len(&active_state->outgoing_packet);
Damien Miller33b13562000-04-04 14:38:59 +1000852 /* skip header, compress only payload */
Darren Tuckerf7288d72009-06-21 18:12:20 +1000853 buffer_consume(&active_state->outgoing_packet, 5);
854 buffer_clear(&active_state->compression_buffer);
855 buffer_compress(&active_state->outgoing_packet,
856 &active_state->compression_buffer);
857 buffer_clear(&active_state->outgoing_packet);
858 buffer_append(&active_state->outgoing_packet, "\0\0\0\0\0", 5);
859 buffer_append(&active_state->outgoing_packet,
860 buffer_ptr(&active_state->compression_buffer),
861 buffer_len(&active_state->compression_buffer));
Damien Miller33b13562000-04-04 14:38:59 +1000862 DBG(debug("compression: raw %d compressed %d", len,
Darren Tuckerf7288d72009-06-21 18:12:20 +1000863 buffer_len(&active_state->outgoing_packet)));
Damien Miller33b13562000-04-04 14:38:59 +1000864 }
865
866 /* sizeof (packet_len + pad_len + payload) */
Darren Tuckerf7288d72009-06-21 18:12:20 +1000867 len = buffer_len(&active_state->outgoing_packet);
Damien Miller33b13562000-04-04 14:38:59 +1000868
869 /*
870 * calc size of padding, alloc space, get random data,
871 * minimum padding is 4 bytes
872 */
873 padlen = block_size - (len % block_size);
874 if (padlen < 4)
875 padlen += block_size;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000876 if (active_state->extra_pad) {
Damien Miller9f643902001-11-12 11:02:52 +1100877 /* will wrap if extra_pad+padlen > 255 */
Darren Tuckerf7288d72009-06-21 18:12:20 +1000878 active_state->extra_pad =
879 roundup(active_state->extra_pad, block_size);
880 pad = active_state->extra_pad -
881 ((len + padlen) % active_state->extra_pad);
Ben Lindstrom8b08d812002-03-26 02:09:41 +0000882 debug3("packet_send2: adding %d (len %d padlen %d extra_pad %d)",
Darren Tuckerf7288d72009-06-21 18:12:20 +1000883 pad, len, padlen, active_state->extra_pad);
Damien Miller9f643902001-11-12 11:02:52 +1100884 padlen += pad;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000885 active_state->extra_pad = 0;
Damien Miller9f643902001-11-12 11:02:52 +1100886 }
Darren Tuckerf7288d72009-06-21 18:12:20 +1000887 cp = buffer_append_space(&active_state->outgoing_packet, padlen);
888 if (enc && !active_state->send_context.plaintext) {
Damien Millere247cc42000-05-07 12:03:14 +1000889 /* random padding */
Damien Miller33b13562000-04-04 14:38:59 +1000890 for (i = 0; i < padlen; i++) {
891 if (i % 4 == 0)
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000892 rnd = arc4random();
893 cp[i] = rnd & 0xff;
894 rnd >>= 8;
Damien Miller33b13562000-04-04 14:38:59 +1000895 }
Damien Millere247cc42000-05-07 12:03:14 +1000896 } else {
897 /* clear padding */
898 memset(cp, 0, padlen);
Damien Miller33b13562000-04-04 14:38:59 +1000899 }
900 /* packet_length includes payload, padding and padding length field */
Darren Tuckerf7288d72009-06-21 18:12:20 +1000901 packet_length = buffer_len(&active_state->outgoing_packet) - 4;
902 cp = buffer_ptr(&active_state->outgoing_packet);
Damien Miller3f941882006-03-31 23:13:02 +1100903 put_u32(cp, packet_length);
Ben Lindstrom4a7714a2002-02-26 18:04:38 +0000904 cp[4] = padlen;
Damien Miller33b13562000-04-04 14:38:59 +1000905 DBG(debug("send: len %d (includes padlen %d)", packet_length+4, padlen));
906
907 /* compute MAC over seqnr and packet(length fields, payload, padding) */
908 if (mac && mac->enabled) {
Darren Tuckerf7288d72009-06-21 18:12:20 +1000909 macbuf = mac_compute(mac, active_state->p_send.seqnr,
910 buffer_ptr(&active_state->outgoing_packet),
911 buffer_len(&active_state->outgoing_packet));
912 DBG(debug("done calc MAC out #%d", active_state->p_send.seqnr));
Damien Miller33b13562000-04-04 14:38:59 +1000913 }
914 /* encrypt packet and append to output buffer. */
Darren Tuckerf7288d72009-06-21 18:12:20 +1000915 cp = buffer_append_space(&active_state->output,
916 buffer_len(&active_state->outgoing_packet));
917 cipher_crypt(&active_state->send_context, cp,
918 buffer_ptr(&active_state->outgoing_packet),
919 buffer_len(&active_state->outgoing_packet));
Damien Miller33b13562000-04-04 14:38:59 +1000920 /* append unencrypted MAC */
921 if (mac && mac->enabled)
Darren Tuckerf7288d72009-06-21 18:12:20 +1000922 buffer_append(&active_state->output, macbuf, mac->mac_len);
Damien Miller33b13562000-04-04 14:38:59 +1000923#ifdef PACKET_DEBUG
924 fprintf(stderr, "encrypted: ");
Darren Tuckerf7288d72009-06-21 18:12:20 +1000925 buffer_dump(&active_state->output);
Damien Miller33b13562000-04-04 14:38:59 +1000926#endif
Damien Miller4af51302000-04-16 11:18:38 +1000927 /* increment sequence number for outgoing packets */
Darren Tuckerf7288d72009-06-21 18:12:20 +1000928 if (++active_state->p_send.seqnr == 0)
Damien Miller996acd22003-04-09 20:59:48 +1000929 logit("outgoing seqnr wraps around");
Darren Tuckerf7288d72009-06-21 18:12:20 +1000930 if (++active_state->p_send.packets == 0)
Damien Millera5539d22003-04-09 20:50:06 +1000931 if (!(datafellows & SSH_BUG_NOREKEY))
932 fatal("XXX too many packets with same key");
Darren Tuckerf7288d72009-06-21 18:12:20 +1000933 active_state->p_send.blocks += (packet_length + 4) / block_size;
934 active_state->p_send.bytes += packet_length + 4;
935 buffer_clear(&active_state->outgoing_packet);
Damien Miller33b13562000-04-04 14:38:59 +1000936
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000937 if (type == SSH2_MSG_NEWKEYS)
938 set_newkeys(MODE_OUT);
Darren Tuckerf7288d72009-06-21 18:12:20 +1000939 else if (type == SSH2_MSG_USERAUTH_SUCCESS && active_state->server_side)
Damien Miller9786e6e2005-07-26 21:54:56 +1000940 packet_enable_delayed_compress();
Damien Miller33b13562000-04-04 14:38:59 +1000941}
942
Damien Millera5539d22003-04-09 20:50:06 +1000943static void
944packet_send2(void)
945{
946 static int rekeying = 0;
947 struct packet *p;
948 u_char type, *cp;
949
Darren Tuckerf7288d72009-06-21 18:12:20 +1000950 cp = buffer_ptr(&active_state->outgoing_packet);
Damien Millera5539d22003-04-09 20:50:06 +1000951 type = cp[5];
952
953 /* during rekeying we can only send key exchange messages */
954 if (rekeying) {
955 if (!((type >= SSH2_MSG_TRANSPORT_MIN) &&
956 (type <= SSH2_MSG_TRANSPORT_MAX))) {
957 debug("enqueue packet: %u", type);
958 p = xmalloc(sizeof(*p));
959 p->type = type;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000960 memcpy(&p->payload, &active_state->outgoing_packet,
961 sizeof(Buffer));
962 buffer_init(&active_state->outgoing_packet);
963 TAILQ_INSERT_TAIL(&active_state->outgoing, p, next);
Damien Millera5539d22003-04-09 20:50:06 +1000964 return;
965 }
966 }
967
968 /* rekeying starts with sending KEXINIT */
969 if (type == SSH2_MSG_KEXINIT)
970 rekeying = 1;
971
972 packet_send2_wrapped();
973
974 /* after a NEWKEYS message we can send the complete queue */
975 if (type == SSH2_MSG_NEWKEYS) {
976 rekeying = 0;
Darren Tuckerf7288d72009-06-21 18:12:20 +1000977 while ((p = TAILQ_FIRST(&active_state->outgoing))) {
Damien Millera5539d22003-04-09 20:50:06 +1000978 type = p->type;
979 debug("dequeue packet: %u", type);
Darren Tuckerf7288d72009-06-21 18:12:20 +1000980 buffer_free(&active_state->outgoing_packet);
981 memcpy(&active_state->outgoing_packet, &p->payload,
Damien Millera5539d22003-04-09 20:50:06 +1000982 sizeof(Buffer));
Darren Tuckerf7288d72009-06-21 18:12:20 +1000983 TAILQ_REMOVE(&active_state->outgoing, p, next);
Damien Millera5539d22003-04-09 20:50:06 +1000984 xfree(p);
985 packet_send2_wrapped();
986 }
987 }
988}
989
Damien Miller33b13562000-04-04 14:38:59 +1000990void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000991packet_send(void)
Damien Miller33b13562000-04-04 14:38:59 +1000992{
Ben Lindstrom80c6d772001-06-05 21:09:18 +0000993 if (compat20)
Damien Miller33b13562000-04-04 14:38:59 +1000994 packet_send2();
995 else
996 packet_send1();
997 DBG(debug("packet_send done"));
998}
999
Damien Miller33b13562000-04-04 14:38:59 +10001000/*
Damien Miller5428f641999-11-25 11:54:57 +11001001 * Waits until a packet has been received, and returns its type. Note that
1002 * no other data is processed until this returns, so this function should not
1003 * be used during the interactive session.
1004 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001005
1006int
Damien Millerdff50992002-01-22 23:16:32 +11001007packet_read_seqnr(u_int32_t *seqnr_p)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001008{
Darren Tucker3fc464e2008-06-13 06:42:45 +10001009 int type, len, ret, ms_remain;
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001010 fd_set *setp;
Damien Miller95def091999-11-25 00:26:21 +11001011 char buf[8192];
Darren Tucker3fc464e2008-06-13 06:42:45 +10001012 struct timeval timeout, start, *timeoutp = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001013
Darren Tucker99bb7612008-06-13 22:02:50 +10001014 DBG(debug("packet_read()"));
1015
Darren Tuckerf7288d72009-06-21 18:12:20 +10001016 setp = (fd_set *)xcalloc(howmany(active_state->connection_in + 1,
1017 NFDBITS), sizeof(fd_mask));
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001018
Damien Miller95def091999-11-25 00:26:21 +11001019 /* Since we are blocking, ensure that all written packets have been sent. */
1020 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001021
Damien Miller95def091999-11-25 00:26:21 +11001022 /* Stay in the loop until we have received a complete packet. */
1023 for (;;) {
1024 /* Try to read a packet from the buffer. */
Damien Millerdff50992002-01-22 23:16:32 +11001025 type = packet_read_poll_seqnr(seqnr_p);
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001026 if (!compat20 && (
Damien Millere247cc42000-05-07 12:03:14 +10001027 type == SSH_SMSG_SUCCESS
Damien Miller95def091999-11-25 00:26:21 +11001028 || type == SSH_SMSG_FAILURE
1029 || type == SSH_CMSG_EOF
Damien Millere247cc42000-05-07 12:03:14 +10001030 || type == SSH_CMSG_EXIT_CONFIRMATION))
Damien Miller48b03fc2002-01-22 23:11:40 +11001031 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +11001032 /* If we got a packet, return it. */
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001033 if (type != SSH_MSG_NONE) {
1034 xfree(setp);
Damien Miller95def091999-11-25 00:26:21 +11001035 return type;
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001036 }
Damien Miller5428f641999-11-25 11:54:57 +11001037 /*
1038 * Otherwise, wait for some data to arrive, add it to the
1039 * buffer, and try again.
1040 */
Darren Tuckerf7288d72009-06-21 18:12:20 +10001041 memset(setp, 0, howmany(active_state->connection_in + 1,
1042 NFDBITS) * sizeof(fd_mask));
1043 FD_SET(active_state->connection_in, setp);
Damien Miller5428f641999-11-25 11:54:57 +11001044
Darren Tuckerf7288d72009-06-21 18:12:20 +10001045 if (active_state->packet_timeout_ms > 0) {
1046 ms_remain = active_state->packet_timeout_ms;
Darren Tucker3fc464e2008-06-13 06:42:45 +10001047 timeoutp = &timeout;
1048 }
Damien Miller95def091999-11-25 00:26:21 +11001049 /* Wait for some data to arrive. */
Darren Tucker3fc464e2008-06-13 06:42:45 +10001050 for (;;) {
Darren Tuckerf7288d72009-06-21 18:12:20 +10001051 if (active_state->packet_timeout_ms != -1) {
Darren Tucker3fc464e2008-06-13 06:42:45 +10001052 ms_to_timeval(&timeout, ms_remain);
1053 gettimeofday(&start, NULL);
1054 }
Darren Tuckerf7288d72009-06-21 18:12:20 +10001055 if ((ret = select(active_state->connection_in + 1, setp,
1056 NULL, NULL, timeoutp)) >= 0)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001057 break;
Darren Tuckerf7288d72009-06-21 18:12:20 +10001058 if (errno != EAGAIN && errno != EINTR &&
Damien Millerd8968ad2008-07-04 23:10:49 +10001059 errno != EWOULDBLOCK)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001060 break;
Darren Tuckerf7288d72009-06-21 18:12:20 +10001061 if (active_state->packet_timeout_ms == -1)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001062 continue;
1063 ms_subtract_diff(&start, &ms_remain);
1064 if (ms_remain <= 0) {
1065 ret = 0;
1066 break;
1067 }
1068 }
1069 if (ret == 0) {
1070 logit("Connection to %.200s timed out while "
1071 "waiting to read", get_remote_ipaddr());
1072 cleanup_exit(255);
1073 }
Damien Miller95def091999-11-25 00:26:21 +11001074 /* Read data from the socket. */
Darren Tuckerf7288d72009-06-21 18:12:20 +10001075 len = read(active_state->connection_in, buf, sizeof(buf));
Damien Miller5e7c10e1999-12-16 13:18:04 +11001076 if (len == 0) {
Damien Miller996acd22003-04-09 20:59:48 +10001077 logit("Connection closed by %.200s", get_remote_ipaddr());
Darren Tucker3e33cec2003-10-02 16:12:36 +10001078 cleanup_exit(255);
Damien Miller5e7c10e1999-12-16 13:18:04 +11001079 }
Damien Miller95def091999-11-25 00:26:21 +11001080 if (len < 0)
1081 fatal("Read from socket failed: %.100s", strerror(errno));
1082 /* Append it to the buffer. */
1083 packet_process_incoming(buf, len);
1084 }
1085 /* NOTREACHED */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001086}
1087
Damien Miller278f9072001-12-21 15:00:19 +11001088int
Damien Millerdff50992002-01-22 23:16:32 +11001089packet_read(void)
Damien Miller278f9072001-12-21 15:00:19 +11001090{
Damien Millerdff50992002-01-22 23:16:32 +11001091 return packet_read_seqnr(NULL);
Damien Miller278f9072001-12-21 15:00:19 +11001092}
1093
Damien Miller5428f641999-11-25 11:54:57 +11001094/*
1095 * Waits until a packet has been received, verifies that its type matches
1096 * that given, and gives a fatal error and exits if there is a mismatch.
1097 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001098
1099void
Damien Millerdff50992002-01-22 23:16:32 +11001100packet_read_expect(int expected_type)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001101{
Damien Miller95def091999-11-25 00:26:21 +11001102 int type;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001103
Damien Millerdff50992002-01-22 23:16:32 +11001104 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001105 if (type != expected_type)
1106 packet_disconnect("Protocol error: expected packet type %d, got %d",
Damien Miller33b13562000-04-04 14:38:59 +10001107 expected_type, type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001108}
1109
1110/* Checks if a full packet is available in the data received so far via
Damien Miller95def091999-11-25 00:26:21 +11001111 * packet_process_incoming. If so, reads the packet; otherwise returns
1112 * SSH_MSG_NONE. This does not wait for data from the connection.
1113 *
Damien Miller5ed3d572008-02-10 22:27:47 +11001114 * SSH_MSG_DISCONNECT is handled specially here. Also,
1115 * SSH_MSG_IGNORE messages are skipped by this function and are never returned
1116 * to higher levels.
Damien Miller95def091999-11-25 00:26:21 +11001117 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001118
Ben Lindstrombba81212001-06-25 05:01:22 +00001119static int
Damien Millerdff50992002-01-22 23:16:32 +11001120packet_read_poll1(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001121{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001122 u_int len, padded_len;
Ben Lindstrom4a7714a2002-02-26 18:04:38 +00001123 u_char *cp, type;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001124 u_int checksum, stored_checksum;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001125
Damien Miller95def091999-11-25 00:26:21 +11001126 /* Check if input size is less than minimum packet size. */
Darren Tuckerf7288d72009-06-21 18:12:20 +10001127 if (buffer_len(&active_state->input) < 4 + 8)
Damien Miller95def091999-11-25 00:26:21 +11001128 return SSH_MSG_NONE;
1129 /* Get length of incoming packet. */
Darren Tuckerf7288d72009-06-21 18:12:20 +10001130 cp = buffer_ptr(&active_state->input);
Damien Miller3f941882006-03-31 23:13:02 +11001131 len = get_u32(cp);
Damien Miller95def091999-11-25 00:26:21 +11001132 if (len < 1 + 2 + 2 || len > 256 * 1024)
Ben Lindstrom0cc2a472002-11-09 15:41:39 +00001133 packet_disconnect("Bad packet length %u.", len);
Damien Miller95def091999-11-25 00:26:21 +11001134 padded_len = (len + 8) & ~7;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001135
Damien Miller95def091999-11-25 00:26:21 +11001136 /* Check if the packet has been entirely received. */
Darren Tuckerf7288d72009-06-21 18:12:20 +10001137 if (buffer_len(&active_state->input) < 4 + padded_len)
Damien Miller95def091999-11-25 00:26:21 +11001138 return SSH_MSG_NONE;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001139
Damien Miller95def091999-11-25 00:26:21 +11001140 /* The entire packet is in buffer. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001141
Damien Miller95def091999-11-25 00:26:21 +11001142 /* Consume packet length. */
Darren Tuckerf7288d72009-06-21 18:12:20 +10001143 buffer_consume(&active_state->input, 4);
Damien Miller95def091999-11-25 00:26:21 +11001144
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001145 /*
1146 * Cryptographic attack detector for ssh
1147 * (C)1998 CORE-SDI, Buenos Aires Argentina
1148 * Ariel Futoransky(futo@core-sdi.com)
1149 */
Darren Tuckerf7288d72009-06-21 18:12:20 +10001150 if (!active_state->receive_context.plaintext) {
1151 switch (detect_attack(buffer_ptr(&active_state->input),
1152 padded_len)) {
Damien Miller3c9c1fb2006-09-17 06:08:53 +10001153 case DEATTACK_DETECTED:
1154 packet_disconnect("crc32 compensation attack: "
1155 "network attack detected");
1156 case DEATTACK_DOS_DETECTED:
1157 packet_disconnect("deattack denial of "
1158 "service detected");
1159 }
1160 }
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001161
1162 /* Decrypt data to incoming_packet. */
Darren Tuckerf7288d72009-06-21 18:12:20 +10001163 buffer_clear(&active_state->incoming_packet);
1164 cp = buffer_append_space(&active_state->incoming_packet, padded_len);
1165 cipher_crypt(&active_state->receive_context, cp,
1166 buffer_ptr(&active_state->input), padded_len);
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001167
Darren Tuckerf7288d72009-06-21 18:12:20 +10001168 buffer_consume(&active_state->input, padded_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001169
1170#ifdef PACKET_DEBUG
Damien Miller95def091999-11-25 00:26:21 +11001171 fprintf(stderr, "read_poll plain: ");
Darren Tuckerf7288d72009-06-21 18:12:20 +10001172 buffer_dump(&active_state->incoming_packet);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001173#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001174
Damien Miller95def091999-11-25 00:26:21 +11001175 /* Compute packet checksum. */
Darren Tuckerf7288d72009-06-21 18:12:20 +10001176 checksum = ssh_crc32(buffer_ptr(&active_state->incoming_packet),
1177 buffer_len(&active_state->incoming_packet) - 4);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001178
Damien Miller95def091999-11-25 00:26:21 +11001179 /* Skip padding. */
Darren Tuckerf7288d72009-06-21 18:12:20 +10001180 buffer_consume(&active_state->incoming_packet, 8 - len % 8);
Damien Millerfd7c9111999-11-08 16:15:55 +11001181
Damien Miller95def091999-11-25 00:26:21 +11001182 /* Test check bytes. */
Darren Tuckerf7288d72009-06-21 18:12:20 +10001183 if (len != buffer_len(&active_state->incoming_packet))
Damien Miller278f9072001-12-21 15:00:19 +11001184 packet_disconnect("packet_read_poll1: len %d != buffer_len %d.",
Darren Tuckerf7288d72009-06-21 18:12:20 +10001185 len, buffer_len(&active_state->incoming_packet));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001186
Darren Tuckerf7288d72009-06-21 18:12:20 +10001187 cp = (u_char *)buffer_ptr(&active_state->incoming_packet) + len - 4;
Damien Miller3f941882006-03-31 23:13:02 +11001188 stored_checksum = get_u32(cp);
Damien Miller95def091999-11-25 00:26:21 +11001189 if (checksum != stored_checksum)
1190 packet_disconnect("Corrupted check bytes on input.");
Darren Tuckerf7288d72009-06-21 18:12:20 +10001191 buffer_consume_end(&active_state->incoming_packet, 4);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001192
Darren Tuckerf7288d72009-06-21 18:12:20 +10001193 if (active_state->packet_compression) {
1194 buffer_clear(&active_state->compression_buffer);
1195 buffer_uncompress(&active_state->incoming_packet,
1196 &active_state->compression_buffer);
1197 buffer_clear(&active_state->incoming_packet);
1198 buffer_append(&active_state->incoming_packet,
1199 buffer_ptr(&active_state->compression_buffer),
1200 buffer_len(&active_state->compression_buffer));
Damien Miller95def091999-11-25 00:26:21 +11001201 }
Darren Tuckerf7288d72009-06-21 18:12:20 +10001202 active_state->p_read.packets++;
1203 active_state->p_read.bytes += padded_len + 4;
1204 type = buffer_get_char(&active_state->incoming_packet);
Darren Tuckerb2694f02004-11-05 20:27:54 +11001205 if (type < SSH_MSG_MIN || type > SSH_MSG_MAX)
1206 packet_disconnect("Invalid ssh1 packet type: %d", type);
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001207 return type;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001208}
Damien Miller95def091999-11-25 00:26:21 +11001209
Ben Lindstrombba81212001-06-25 05:01:22 +00001210static int
Damien Millerdff50992002-01-22 23:16:32 +11001211packet_read_poll2(u_int32_t *seqnr_p)
Damien Miller33b13562000-04-04 14:38:59 +10001212{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001213 u_int padlen, need;
Ben Lindstrom4a7714a2002-02-26 18:04:38 +00001214 u_char *macbuf, *cp, type;
Damien Millereccb9de2005-06-17 12:59:34 +10001215 u_int maclen, block_size;
Damien Miller33b13562000-04-04 14:38:59 +10001216 Enc *enc = NULL;
1217 Mac *mac = NULL;
1218 Comp *comp = NULL;
1219
Darren Tuckerf7288d72009-06-21 18:12:20 +10001220 if (active_state->packet_discard)
Damien Miller13ae44c2009-01-28 16:38:41 +11001221 return SSH_MSG_NONE;
1222
Darren Tuckerf7288d72009-06-21 18:12:20 +10001223 if (active_state->newkeys[MODE_IN] != NULL) {
1224 enc = &active_state->newkeys[MODE_IN]->enc;
1225 mac = &active_state->newkeys[MODE_IN]->mac;
1226 comp = &active_state->newkeys[MODE_IN]->comp;
Damien Miller33b13562000-04-04 14:38:59 +10001227 }
1228 maclen = mac && mac->enabled ? mac->mac_len : 0;
Damien Miller963f6b22002-02-19 15:21:23 +11001229 block_size = enc ? enc->block_size : 8;
Damien Miller33b13562000-04-04 14:38:59 +10001230
Darren Tuckerf7288d72009-06-21 18:12:20 +10001231 if (active_state->packlen == 0) {
Damien Miller33b13562000-04-04 14:38:59 +10001232 /*
1233 * check if input size is less than the cipher block size,
1234 * decrypt first block and extract length of incoming packet
1235 */
Darren Tuckerf7288d72009-06-21 18:12:20 +10001236 if (buffer_len(&active_state->input) < block_size)
Damien Miller33b13562000-04-04 14:38:59 +10001237 return SSH_MSG_NONE;
Darren Tuckerf7288d72009-06-21 18:12:20 +10001238 buffer_clear(&active_state->incoming_packet);
1239 cp = buffer_append_space(&active_state->incoming_packet,
Damien Miller33b13562000-04-04 14:38:59 +10001240 block_size);
Darren Tuckerf7288d72009-06-21 18:12:20 +10001241 cipher_crypt(&active_state->receive_context, cp,
1242 buffer_ptr(&active_state->input), block_size);
1243 cp = buffer_ptr(&active_state->incoming_packet);
1244 active_state->packlen = get_u32(cp);
1245 if (active_state->packlen < 1 + 4 ||
1246 active_state->packlen > PACKET_MAX_SIZE) {
Darren Tuckera8151da2003-09-22 21:06:46 +10001247#ifdef PACKET_DEBUG
Darren Tuckerf7288d72009-06-21 18:12:20 +10001248 buffer_dump(&active_state->incoming_packet);
Darren Tuckera8151da2003-09-22 21:06:46 +10001249#endif
Darren Tuckerf7288d72009-06-21 18:12:20 +10001250 logit("Bad packet length %u.", active_state->packlen);
1251 packet_start_discard(enc, mac, active_state->packlen,
Damien Miller13ae44c2009-01-28 16:38:41 +11001252 PACKET_MAX_SIZE);
1253 return SSH_MSG_NONE;
Damien Miller33b13562000-04-04 14:38:59 +10001254 }
Darren Tuckerf7288d72009-06-21 18:12:20 +10001255 DBG(debug("input: packet len %u", active_state->packlen+4));
1256 buffer_consume(&active_state->input, block_size);
Damien Miller33b13562000-04-04 14:38:59 +10001257 }
1258 /* we have a partial packet of block_size bytes */
Darren Tuckerf7288d72009-06-21 18:12:20 +10001259 need = 4 + active_state->packlen - block_size;
Damien Miller33b13562000-04-04 14:38:59 +10001260 DBG(debug("partial packet %d, need %d, maclen %d", block_size,
1261 need, maclen));
Darren Tucker99d11a32008-12-01 21:40:48 +11001262 if (need % block_size != 0) {
1263 logit("padding error: need %d block %d mod %d",
Damien Miller33b13562000-04-04 14:38:59 +10001264 need, block_size, need % block_size);
Darren Tuckerf7288d72009-06-21 18:12:20 +10001265 packet_start_discard(enc, mac, active_state->packlen,
Damien Miller13ae44c2009-01-28 16:38:41 +11001266 PACKET_MAX_SIZE - block_size);
1267 return SSH_MSG_NONE;
Darren Tucker99d11a32008-12-01 21:40:48 +11001268 }
Damien Miller33b13562000-04-04 14:38:59 +10001269 /*
1270 * check if the entire packet has been received and
1271 * decrypt into incoming_packet
1272 */
Darren Tuckerf7288d72009-06-21 18:12:20 +10001273 if (buffer_len(&active_state->input) < need + maclen)
Damien Miller33b13562000-04-04 14:38:59 +10001274 return SSH_MSG_NONE;
1275#ifdef PACKET_DEBUG
1276 fprintf(stderr, "read_poll enc/full: ");
Darren Tuckerf7288d72009-06-21 18:12:20 +10001277 buffer_dump(&active_state->input);
Damien Miller33b13562000-04-04 14:38:59 +10001278#endif
Darren Tuckerf7288d72009-06-21 18:12:20 +10001279 cp = buffer_append_space(&active_state->incoming_packet, need);
1280 cipher_crypt(&active_state->receive_context, cp,
1281 buffer_ptr(&active_state->input), need);
1282 buffer_consume(&active_state->input, need);
Damien Miller33b13562000-04-04 14:38:59 +10001283 /*
1284 * compute MAC over seqnr and packet,
1285 * increment sequence number for incoming packet
1286 */
Damien Miller4af51302000-04-16 11:18:38 +10001287 if (mac && mac->enabled) {
Darren Tuckerf7288d72009-06-21 18:12:20 +10001288 macbuf = mac_compute(mac, active_state->p_read.seqnr,
1289 buffer_ptr(&active_state->incoming_packet),
1290 buffer_len(&active_state->incoming_packet));
1291 if (memcmp(macbuf, buffer_ptr(&active_state->input),
1292 mac->mac_len) != 0) {
Damien Miller13ae44c2009-01-28 16:38:41 +11001293 logit("Corrupted MAC on input.");
1294 if (need > PACKET_MAX_SIZE)
1295 fatal("internal error need %d", need);
Darren Tuckerf7288d72009-06-21 18:12:20 +10001296 packet_start_discard(enc, mac, active_state->packlen,
Damien Miller13ae44c2009-01-28 16:38:41 +11001297 PACKET_MAX_SIZE - need);
1298 return SSH_MSG_NONE;
1299 }
1300
Darren Tuckerf7288d72009-06-21 18:12:20 +10001301 DBG(debug("MAC #%d ok", active_state->p_read.seqnr));
1302 buffer_consume(&active_state->input, mac->mac_len);
Damien Miller33b13562000-04-04 14:38:59 +10001303 }
Damien Miller13ae44c2009-01-28 16:38:41 +11001304 /* XXX now it's safe to use fatal/packet_disconnect */
Damien Miller278f9072001-12-21 15:00:19 +11001305 if (seqnr_p != NULL)
Darren Tuckerf7288d72009-06-21 18:12:20 +10001306 *seqnr_p = active_state->p_read.seqnr;
1307 if (++active_state->p_read.seqnr == 0)
Damien Miller996acd22003-04-09 20:59:48 +10001308 logit("incoming seqnr wraps around");
Darren Tuckerf7288d72009-06-21 18:12:20 +10001309 if (++active_state->p_read.packets == 0)
Damien Millera5539d22003-04-09 20:50:06 +10001310 if (!(datafellows & SSH_BUG_NOREKEY))
1311 fatal("XXX too many packets with same key");
Darren Tuckerf7288d72009-06-21 18:12:20 +10001312 active_state->p_read.blocks += (active_state->packlen + 4) / block_size;
1313 active_state->p_read.bytes += active_state->packlen + 4;
Damien Miller33b13562000-04-04 14:38:59 +10001314
1315 /* get padlen */
Darren Tuckerf7288d72009-06-21 18:12:20 +10001316 cp = buffer_ptr(&active_state->incoming_packet);
Ben Lindstrom4a7714a2002-02-26 18:04:38 +00001317 padlen = cp[4];
Damien Miller33b13562000-04-04 14:38:59 +10001318 DBG(debug("input: padlen %d", padlen));
1319 if (padlen < 4)
1320 packet_disconnect("Corrupted padlen %d on input.", padlen);
1321
1322 /* skip packet size + padlen, discard padding */
Darren Tuckerf7288d72009-06-21 18:12:20 +10001323 buffer_consume(&active_state->incoming_packet, 4 + 1);
1324 buffer_consume_end(&active_state->incoming_packet, padlen);
Damien Miller33b13562000-04-04 14:38:59 +10001325
Darren Tuckerf7288d72009-06-21 18:12:20 +10001326 DBG(debug("input: len before de-compress %d",
1327 buffer_len(&active_state->incoming_packet)));
Damien Miller33b13562000-04-04 14:38:59 +10001328 if (comp && comp->enabled) {
Darren Tuckerf7288d72009-06-21 18:12:20 +10001329 buffer_clear(&active_state->compression_buffer);
1330 buffer_uncompress(&active_state->incoming_packet,
1331 &active_state->compression_buffer);
1332 buffer_clear(&active_state->incoming_packet);
1333 buffer_append(&active_state->incoming_packet,
1334 buffer_ptr(&active_state->compression_buffer),
1335 buffer_len(&active_state->compression_buffer));
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001336 DBG(debug("input: len after de-compress %d",
Darren Tuckerf7288d72009-06-21 18:12:20 +10001337 buffer_len(&active_state->incoming_packet)));
Damien Miller33b13562000-04-04 14:38:59 +10001338 }
1339 /*
1340 * get packet type, implies consume.
1341 * return length of payload (without type field)
1342 */
Darren Tuckerf7288d72009-06-21 18:12:20 +10001343 type = buffer_get_char(&active_state->incoming_packet);
Darren Tuckerb2694f02004-11-05 20:27:54 +11001344 if (type < SSH2_MSG_MIN || type >= SSH2_MSG_LOCAL_MIN)
1345 packet_disconnect("Invalid ssh2 packet type: %d", type);
Ben Lindstrom2d90e002001-04-04 02:00:54 +00001346 if (type == SSH2_MSG_NEWKEYS)
1347 set_newkeys(MODE_IN);
Darren Tuckerf7288d72009-06-21 18:12:20 +10001348 else if (type == SSH2_MSG_USERAUTH_SUCCESS &&
1349 !active_state->server_side)
Damien Miller9786e6e2005-07-26 21:54:56 +10001350 packet_enable_delayed_compress();
Damien Miller33b13562000-04-04 14:38:59 +10001351#ifdef PACKET_DEBUG
Ben Lindstrom204e4882001-03-05 06:47:00 +00001352 fprintf(stderr, "read/plain[%d]:\r\n", type);
Darren Tuckerf7288d72009-06-21 18:12:20 +10001353 buffer_dump(&active_state->incoming_packet);
Damien Miller33b13562000-04-04 14:38:59 +10001354#endif
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001355 /* reset for next packet */
Darren Tuckerf7288d72009-06-21 18:12:20 +10001356 active_state->packlen = 0;
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001357 return type;
Damien Miller33b13562000-04-04 14:38:59 +10001358}
1359
1360int
Damien Millerdff50992002-01-22 23:16:32 +11001361packet_read_poll_seqnr(u_int32_t *seqnr_p)
Damien Miller33b13562000-04-04 14:38:59 +10001362{
Ben Lindstrom3f584742002-06-23 21:49:25 +00001363 u_int reason, seqnr;
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001364 u_char type;
Damien Miller33b13562000-04-04 14:38:59 +10001365 char *msg;
Damien Miller33b13562000-04-04 14:38:59 +10001366
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001367 for (;;) {
1368 if (compat20) {
Damien Millerdff50992002-01-22 23:16:32 +11001369 type = packet_read_poll2(seqnr_p);
Darren Tucker136e56f2008-06-08 12:49:30 +10001370 if (type) {
Darren Tuckerf7288d72009-06-21 18:12:20 +10001371 active_state->keep_alive_timeouts = 0;
Damien Miller33b13562000-04-04 14:38:59 +10001372 DBG(debug("received packet type %d", type));
Darren Tucker136e56f2008-06-08 12:49:30 +10001373 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001374 switch (type) {
Damien Miller5ed3d572008-02-10 22:27:47 +11001375 case SSH2_MSG_IGNORE:
Damien Miller58226f62008-03-07 18:33:30 +11001376 debug3("Received SSH2_MSG_IGNORE");
Damien Miller5ed3d572008-02-10 22:27:47 +11001377 break;
Damien Miller33b13562000-04-04 14:38:59 +10001378 case SSH2_MSG_DEBUG:
1379 packet_get_char();
1380 msg = packet_get_string(NULL);
1381 debug("Remote: %.900s", msg);
1382 xfree(msg);
1383 msg = packet_get_string(NULL);
1384 xfree(msg);
1385 break;
1386 case SSH2_MSG_DISCONNECT:
1387 reason = packet_get_int();
1388 msg = packet_get_string(NULL);
Damien Miller996acd22003-04-09 20:59:48 +10001389 logit("Received disconnect from %s: %u: %.400s",
Ben Lindstrom3f584742002-06-23 21:49:25 +00001390 get_remote_ipaddr(), reason, msg);
Damien Miller33b13562000-04-04 14:38:59 +10001391 xfree(msg);
Darren Tucker3e33cec2003-10-02 16:12:36 +10001392 cleanup_exit(255);
Damien Miller33b13562000-04-04 14:38:59 +10001393 break;
Damien Miller659811f2002-01-22 23:23:11 +11001394 case SSH2_MSG_UNIMPLEMENTED:
1395 seqnr = packet_get_int();
Ben Lindstrom3f584742002-06-23 21:49:25 +00001396 debug("Received SSH2_MSG_UNIMPLEMENTED for %u",
1397 seqnr);
Damien Miller5ed3d572008-02-10 22:27:47 +11001398 break;
Damien Miller33b13562000-04-04 14:38:59 +10001399 default:
1400 return type;
Kevin Stevesef4eea92001-02-05 12:42:17 +00001401 }
Damien Miller33b13562000-04-04 14:38:59 +10001402 } else {
Damien Millerdff50992002-01-22 23:16:32 +11001403 type = packet_read_poll1();
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001404 switch (type) {
Damien Miller33b13562000-04-04 14:38:59 +10001405 case SSH_MSG_IGNORE:
1406 break;
1407 case SSH_MSG_DEBUG:
1408 msg = packet_get_string(NULL);
1409 debug("Remote: %.900s", msg);
1410 xfree(msg);
1411 break;
1412 case SSH_MSG_DISCONNECT:
1413 msg = packet_get_string(NULL);
Damien Miller996acd22003-04-09 20:59:48 +10001414 logit("Received disconnect from %s: %.400s",
Ben Lindstrom3f584742002-06-23 21:49:25 +00001415 get_remote_ipaddr(), msg);
Darren Tucker3e33cec2003-10-02 16:12:36 +10001416 cleanup_exit(255);
Damien Miller33b13562000-04-04 14:38:59 +10001417 break;
1418 default:
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001419 if (type)
Damien Miller33b13562000-04-04 14:38:59 +10001420 DBG(debug("received packet type %d", type));
1421 return type;
Kevin Stevesef4eea92001-02-05 12:42:17 +00001422 }
Damien Miller33b13562000-04-04 14:38:59 +10001423 }
1424 }
1425}
1426
Damien Miller278f9072001-12-21 15:00:19 +11001427int
Damien Millerdff50992002-01-22 23:16:32 +11001428packet_read_poll(void)
Damien Miller278f9072001-12-21 15:00:19 +11001429{
Damien Millerdff50992002-01-22 23:16:32 +11001430 return packet_read_poll_seqnr(NULL);
Damien Miller278f9072001-12-21 15:00:19 +11001431}
1432
Damien Miller5428f641999-11-25 11:54:57 +11001433/*
1434 * Buffers the given amount of input characters. This is intended to be used
1435 * together with packet_read_poll.
1436 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001437
1438void
Ben Lindstrom46c16222000-12-22 01:43:59 +00001439packet_process_incoming(const char *buf, u_int len)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001440{
Darren Tuckerf7288d72009-06-21 18:12:20 +10001441 if (active_state->packet_discard) {
1442 active_state->keep_alive_timeouts = 0; /* ?? */
1443 if (len >= active_state->packet_discard)
Damien Miller13ae44c2009-01-28 16:38:41 +11001444 packet_stop_discard();
Darren Tuckerf7288d72009-06-21 18:12:20 +10001445 active_state->packet_discard -= len;
Damien Miller13ae44c2009-01-28 16:38:41 +11001446 return;
1447 }
Darren Tuckerf7288d72009-06-21 18:12:20 +10001448 buffer_append(&active_state->input, buf, len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001449}
1450
1451/* Returns a character from the packet. */
1452
Ben Lindstrom46c16222000-12-22 01:43:59 +00001453u_int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001454packet_get_char(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001455{
Damien Miller95def091999-11-25 00:26:21 +11001456 char ch;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001457
Darren Tuckerf7288d72009-06-21 18:12:20 +10001458 buffer_get(&active_state->incoming_packet, &ch, 1);
Ben Lindstrom46c16222000-12-22 01:43:59 +00001459 return (u_char) ch;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001460}
1461
1462/* Returns an integer from the packet data. */
1463
Ben Lindstrom46c16222000-12-22 01:43:59 +00001464u_int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001465packet_get_int(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001466{
Darren Tuckerf7288d72009-06-21 18:12:20 +10001467 return buffer_get_int(&active_state->incoming_packet);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001468}
1469
Damien Miller5428f641999-11-25 11:54:57 +11001470/*
1471 * Returns an arbitrary precision integer from the packet data. The integer
1472 * must have been initialized before this call.
1473 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001474
1475void
Damien Millerd432ccf2002-01-22 23:14:44 +11001476packet_get_bignum(BIGNUM * value)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001477{
Darren Tuckerf7288d72009-06-21 18:12:20 +10001478 buffer_get_bignum(&active_state->incoming_packet, value);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001479}
1480
Damien Miller33b13562000-04-04 14:38:59 +10001481void
Damien Millerd432ccf2002-01-22 23:14:44 +11001482packet_get_bignum2(BIGNUM * value)
Damien Miller33b13562000-04-04 14:38:59 +10001483{
Darren Tuckerf7288d72009-06-21 18:12:20 +10001484 buffer_get_bignum2(&active_state->incoming_packet, value);
Damien Miller33b13562000-04-04 14:38:59 +10001485}
1486
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001487void *
Damien Millereccb9de2005-06-17 12:59:34 +10001488packet_get_raw(u_int *length_ptr)
Damien Miller33b13562000-04-04 14:38:59 +10001489{
Darren Tuckerf7288d72009-06-21 18:12:20 +10001490 u_int bytes = buffer_len(&active_state->incoming_packet);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001491
Damien Miller33b13562000-04-04 14:38:59 +10001492 if (length_ptr != NULL)
1493 *length_ptr = bytes;
Darren Tuckerf7288d72009-06-21 18:12:20 +10001494 return buffer_ptr(&active_state->incoming_packet);
Damien Miller33b13562000-04-04 14:38:59 +10001495}
1496
Damien Miller4af51302000-04-16 11:18:38 +10001497int
1498packet_remaining(void)
1499{
Darren Tuckerf7288d72009-06-21 18:12:20 +10001500 return buffer_len(&active_state->incoming_packet);
Damien Miller4af51302000-04-16 11:18:38 +10001501}
1502
Damien Miller5428f641999-11-25 11:54:57 +11001503/*
1504 * Returns a string from the packet data. The string is allocated using
1505 * xmalloc; it is the responsibility of the calling program to free it when
1506 * no longer needed. The length_ptr argument may be NULL, or point to an
1507 * integer into which the length of the string is stored.
1508 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001509
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001510void *
Ben Lindstrom46c16222000-12-22 01:43:59 +00001511packet_get_string(u_int *length_ptr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001512{
Darren Tuckerf7288d72009-06-21 18:12:20 +10001513 return buffer_get_string(&active_state->incoming_packet, length_ptr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001514}
1515
Damien Millerdb255ca2008-05-19 14:59:37 +10001516void *
1517packet_get_string_ptr(u_int *length_ptr)
1518{
Darren Tuckerf7288d72009-06-21 18:12:20 +10001519 return buffer_get_string_ptr(&active_state->incoming_packet, length_ptr);
Damien Millerdb255ca2008-05-19 14:59:37 +10001520}
1521
Damien Miller5428f641999-11-25 11:54:57 +11001522/*
1523 * Sends a diagnostic message from the server to the client. This message
1524 * can be sent at any time (but not while constructing another message). The
1525 * message is printed immediately, but only if the client is being executed
1526 * in verbose mode. These messages are primarily intended to ease debugging
1527 * authentication problems. The length of the formatted message must not
1528 * exceed 1024 bytes. This will automatically call packet_write_wait.
1529 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001530
1531void
Damien Miller95def091999-11-25 00:26:21 +11001532packet_send_debug(const char *fmt,...)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001533{
Damien Miller95def091999-11-25 00:26:21 +11001534 char buf[1024];
1535 va_list args;
1536
Ben Lindstroma14ee472000-12-07 01:24:58 +00001537 if (compat20 && (datafellows & SSH_BUG_DEBUG))
1538 return;
1539
Damien Miller95def091999-11-25 00:26:21 +11001540 va_start(args, fmt);
1541 vsnprintf(buf, sizeof(buf), fmt, args);
1542 va_end(args);
1543
Damien Miller7c8af4f2000-05-01 08:24:07 +10001544 if (compat20) {
1545 packet_start(SSH2_MSG_DEBUG);
1546 packet_put_char(0); /* bool: always display */
1547 packet_put_cstring(buf);
1548 packet_put_cstring("");
1549 } else {
1550 packet_start(SSH_MSG_DEBUG);
1551 packet_put_cstring(buf);
1552 }
Damien Miller95def091999-11-25 00:26:21 +11001553 packet_send();
1554 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001555}
1556
Damien Miller5428f641999-11-25 11:54:57 +11001557/*
1558 * Logs the error plus constructs and sends a disconnect packet, closes the
1559 * connection, and exits. This function never returns. The error message
1560 * should not contain a newline. The length of the formatted message must
1561 * not exceed 1024 bytes.
1562 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001563
1564void
Damien Miller95def091999-11-25 00:26:21 +11001565packet_disconnect(const char *fmt,...)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001566{
Damien Miller95def091999-11-25 00:26:21 +11001567 char buf[1024];
1568 va_list args;
1569 static int disconnecting = 0;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001570
Damien Miller95def091999-11-25 00:26:21 +11001571 if (disconnecting) /* Guard against recursive invocations. */
1572 fatal("packet_disconnect called recursively.");
1573 disconnecting = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001574
Damien Miller5428f641999-11-25 11:54:57 +11001575 /*
1576 * Format the message. Note that the caller must make sure the
1577 * message is of limited size.
1578 */
Damien Miller95def091999-11-25 00:26:21 +11001579 va_start(args, fmt);
1580 vsnprintf(buf, sizeof(buf), fmt, args);
1581 va_end(args);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001582
Ben Lindstrom9bda7ae2002-11-09 15:46:24 +00001583 /* Display the error locally */
Damien Miller996acd22003-04-09 20:59:48 +10001584 logit("Disconnecting: %.100s", buf);
Ben Lindstrom9bda7ae2002-11-09 15:46:24 +00001585
Damien Miller95def091999-11-25 00:26:21 +11001586 /* Send the disconnect message to the other side, and wait for it to get sent. */
Damien Miller33b13562000-04-04 14:38:59 +10001587 if (compat20) {
1588 packet_start(SSH2_MSG_DISCONNECT);
1589 packet_put_int(SSH2_DISCONNECT_PROTOCOL_ERROR);
1590 packet_put_cstring(buf);
1591 packet_put_cstring("");
1592 } else {
1593 packet_start(SSH_MSG_DISCONNECT);
Ben Lindstrom664408d2001-06-09 01:42:01 +00001594 packet_put_cstring(buf);
Damien Miller33b13562000-04-04 14:38:59 +10001595 }
Damien Miller95def091999-11-25 00:26:21 +11001596 packet_send();
1597 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001598
Damien Miller95def091999-11-25 00:26:21 +11001599 /* Stop listening for connections. */
Ben Lindstrom601e4362001-06-21 03:19:23 +00001600 channel_close_all();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001601
Damien Miller95def091999-11-25 00:26:21 +11001602 /* Close the connection. */
1603 packet_close();
Darren Tucker3e33cec2003-10-02 16:12:36 +10001604 cleanup_exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001605}
1606
Damien Miller5428f641999-11-25 11:54:57 +11001607/* Checks if there is any buffered output, and tries to write some of the output. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001608
1609void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001610packet_write_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001611{
Darren Tuckerf7288d72009-06-21 18:12:20 +10001612 int len = buffer_len(&active_state->output);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001613
Damien Miller95def091999-11-25 00:26:21 +11001614 if (len > 0) {
Darren Tuckerf7288d72009-06-21 18:12:20 +10001615 len = write(active_state->connection_out,
1616 buffer_ptr(&active_state->output), len);
Damien Millerd874fa52008-07-05 09:40:56 +10001617 if (len == -1) {
1618 if (errno == EINTR || errno == EAGAIN ||
1619 errno == EWOULDBLOCK)
Damien Miller95def091999-11-25 00:26:21 +11001620 return;
Damien Millerd874fa52008-07-05 09:40:56 +10001621 fatal("Write failed: %.100s", strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +11001622 }
Damien Millerd874fa52008-07-05 09:40:56 +10001623 if (len == 0)
1624 fatal("Write connection closed");
Darren Tuckerf7288d72009-06-21 18:12:20 +10001625 buffer_consume(&active_state->output, len);
Damien Miller95def091999-11-25 00:26:21 +11001626 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001627}
1628
Damien Millerd874fa52008-07-05 09:40:56 +10001629
Damien Miller5428f641999-11-25 11:54:57 +11001630/*
1631 * Calls packet_write_poll repeatedly until all pending output data has been
1632 * written.
1633 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001634
1635void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001636packet_write_wait(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001637{
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001638 fd_set *setp;
Darren Tucker3fc464e2008-06-13 06:42:45 +10001639 int ret, ms_remain;
1640 struct timeval start, timeout, *timeoutp = NULL;
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001641
Darren Tuckerf7288d72009-06-21 18:12:20 +10001642 setp = (fd_set *)xcalloc(howmany(active_state->connection_out + 1,
1643 NFDBITS), sizeof(fd_mask));
Damien Miller95def091999-11-25 00:26:21 +11001644 packet_write_poll();
1645 while (packet_have_data_to_write()) {
Darren Tuckerf7288d72009-06-21 18:12:20 +10001646 memset(setp, 0, howmany(active_state->connection_out + 1,
1647 NFDBITS) * sizeof(fd_mask));
1648 FD_SET(active_state->connection_out, setp);
Darren Tucker3fc464e2008-06-13 06:42:45 +10001649
Darren Tuckerf7288d72009-06-21 18:12:20 +10001650 if (active_state->packet_timeout_ms > 0) {
1651 ms_remain = active_state->packet_timeout_ms;
Darren Tucker3fc464e2008-06-13 06:42:45 +10001652 timeoutp = &timeout;
1653 }
1654 for (;;) {
Darren Tuckerf7288d72009-06-21 18:12:20 +10001655 if (active_state->packet_timeout_ms != -1) {
Darren Tucker3fc464e2008-06-13 06:42:45 +10001656 ms_to_timeval(&timeout, ms_remain);
1657 gettimeofday(&start, NULL);
1658 }
Darren Tuckerf7288d72009-06-21 18:12:20 +10001659 if ((ret = select(active_state->connection_out + 1,
1660 NULL, setp, NULL, timeoutp)) >= 0)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001661 break;
Darren Tuckerf7288d72009-06-21 18:12:20 +10001662 if (errno != EAGAIN && errno != EINTR &&
Damien Millerd8968ad2008-07-04 23:10:49 +10001663 errno != EWOULDBLOCK)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001664 break;
Darren Tuckerf7288d72009-06-21 18:12:20 +10001665 if (active_state->packet_timeout_ms == -1)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001666 continue;
1667 ms_subtract_diff(&start, &ms_remain);
1668 if (ms_remain <= 0) {
1669 ret = 0;
1670 break;
1671 }
1672 }
1673 if (ret == 0) {
1674 logit("Connection to %.200s timed out while "
1675 "waiting to write", get_remote_ipaddr());
1676 cleanup_exit(255);
1677 }
Damien Miller95def091999-11-25 00:26:21 +11001678 packet_write_poll();
1679 }
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001680 xfree(setp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001681}
1682
1683/* Returns true if there is buffered data to write to the connection. */
1684
1685int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001686packet_have_data_to_write(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001687{
Darren Tuckerf7288d72009-06-21 18:12:20 +10001688 return buffer_len(&active_state->output) != 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001689}
1690
1691/* Returns true if there is not too much data to write to the connection. */
1692
1693int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001694packet_not_very_much_data_to_write(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001695{
Darren Tuckerf7288d72009-06-21 18:12:20 +10001696 if (active_state->interactive_mode)
1697 return buffer_len(&active_state->output) < 16384;
Damien Miller95def091999-11-25 00:26:21 +11001698 else
Darren Tuckerf7288d72009-06-21 18:12:20 +10001699 return buffer_len(&active_state->output) < 128 * 1024;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001700}
1701
Ben Lindstromc8a49d72003-04-02 15:18:22 +00001702
Ben Lindstromfaa1ea82002-12-23 02:42:52 +00001703static void
Ben Lindstroma7433982002-12-23 02:41:41 +00001704packet_set_tos(int interactive)
1705{
Damien Miller5924ceb2003-11-22 15:02:42 +11001706#if defined(IP_TOS) && !defined(IP_TOS_IS_BROKEN)
Ben Lindstroma7433982002-12-23 02:41:41 +00001707 int tos = interactive ? IPTOS_LOWDELAY : IPTOS_THROUGHPUT;
1708
1709 if (!packet_connection_is_on_socket() ||
1710 !packet_connection_is_ipv4())
1711 return;
Darren Tuckerf7288d72009-06-21 18:12:20 +10001712 if (setsockopt(active_state->connection_in, IPPROTO_IP, IP_TOS, &tos,
Ben Lindstroma7433982002-12-23 02:41:41 +00001713 sizeof(tos)) < 0)
1714 error("setsockopt IP_TOS %d: %.100s:",
1715 tos, strerror(errno));
Ben Lindstromc8a49d72003-04-02 15:18:22 +00001716#endif
Damien Miller5924ceb2003-11-22 15:02:42 +11001717}
Ben Lindstroma7433982002-12-23 02:41:41 +00001718
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001719/* Informs that the current session is interactive. Sets IP flags for that. */
1720
1721void
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001722packet_set_interactive(int interactive)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001723{
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001724 static int called = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001725
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001726 if (called)
1727 return;
1728 called = 1;
1729
Damien Miller95def091999-11-25 00:26:21 +11001730 /* Record that we are in interactive mode. */
Darren Tuckerf7288d72009-06-21 18:12:20 +10001731 active_state->interactive_mode = interactive;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001732
Damien Miller34132e52000-01-14 15:45:46 +11001733 /* Only set socket options if using a socket. */
1734 if (!packet_connection_is_on_socket())
Ben Lindstrom93b6b772003-04-27 17:55:33 +00001735 return;
Darren Tuckerf7288d72009-06-21 18:12:20 +10001736 set_nodelay(active_state->connection_in);
Ben Lindstroma7433982002-12-23 02:41:41 +00001737 packet_set_tos(interactive);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001738}
1739
1740/* Returns true if the current connection is interactive. */
1741
1742int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001743packet_is_interactive(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001744{
Darren Tuckerf7288d72009-06-21 18:12:20 +10001745 return active_state->interactive_mode;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001746}
Damien Miller6162d121999-11-21 13:23:52 +11001747
Darren Tucker1f8311c2004-05-13 16:39:33 +10001748int
Darren Tucker502d3842003-06-28 12:38:01 +10001749packet_set_maxsize(u_int s)
Damien Miller6162d121999-11-21 13:23:52 +11001750{
Damien Miller95def091999-11-25 00:26:21 +11001751 static int called = 0;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001752
Damien Miller95def091999-11-25 00:26:21 +11001753 if (called) {
Damien Miller996acd22003-04-09 20:59:48 +10001754 logit("packet_set_maxsize: called twice: old %d new %d",
Darren Tuckerf7288d72009-06-21 18:12:20 +10001755 active_state->max_packet_size, s);
Damien Miller95def091999-11-25 00:26:21 +11001756 return -1;
1757 }
1758 if (s < 4 * 1024 || s > 1024 * 1024) {
Damien Miller996acd22003-04-09 20:59:48 +10001759 logit("packet_set_maxsize: bad size %d", s);
Damien Miller95def091999-11-25 00:26:21 +11001760 return -1;
1761 }
Ben Lindstromae3de4b2001-10-03 17:10:17 +00001762 called = 1;
Ben Lindstrom16d45b32001-06-13 04:39:18 +00001763 debug("packet_set_maxsize: setting to %d", s);
Darren Tuckerf7288d72009-06-21 18:12:20 +10001764 active_state->max_packet_size = s;
Damien Miller95def091999-11-25 00:26:21 +11001765 return s;
Damien Miller6162d121999-11-21 13:23:52 +11001766}
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001767
Darren Tuckerf7288d72009-06-21 18:12:20 +10001768int
1769packet_inc_alive_timeouts(void)
1770{
1771 return ++active_state->keep_alive_timeouts;
1772}
1773
1774void
1775packet_set_alive_timeouts(int ka)
1776{
1777 active_state->keep_alive_timeouts = ka;
1778}
1779
1780u_int
1781packet_get_maxsize(void)
1782{
1783 return active_state->max_packet_size;
1784}
1785
Damien Miller9f643902001-11-12 11:02:52 +11001786/* roundup current message to pad bytes */
1787void
1788packet_add_padding(u_char pad)
1789{
Darren Tuckerf7288d72009-06-21 18:12:20 +10001790 active_state->extra_pad = pad;
Damien Miller9f643902001-11-12 11:02:52 +11001791}
1792
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001793/*
1794 * 9.2. Ignored Data Message
Ben Lindstroma3700052001-04-05 23:26:32 +00001795 *
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001796 * byte SSH_MSG_IGNORE
1797 * string data
Ben Lindstroma3700052001-04-05 23:26:32 +00001798 *
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001799 * All implementations MUST understand (and ignore) this message at any
1800 * time (after receiving the protocol version). No implementation is
1801 * required to send them. This message can be used as an additional
1802 * protection measure against advanced traffic analysis techniques.
1803 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001804void
1805packet_send_ignore(int nbytes)
1806{
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001807 u_int32_t rnd = 0;
Ben Lindstrome229b252001-03-05 06:28:06 +00001808 int i;
1809
1810 packet_start(compat20 ? SSH2_MSG_IGNORE : SSH_MSG_IGNORE);
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001811 packet_put_int(nbytes);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001812 for (i = 0; i < nbytes; i++) {
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001813 if (i % 4 == 0)
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001814 rnd = arc4random();
Damien Miller8ba29fe2006-03-26 14:25:19 +11001815 packet_put_char((u_char)rnd & 0xff);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001816 rnd >>= 8;
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001817 }
1818}
Damien Millera5539d22003-04-09 20:50:06 +10001819
Darren Tucker1f8311c2004-05-13 16:39:33 +10001820#define MAX_PACKETS (1U<<31)
Damien Millera5539d22003-04-09 20:50:06 +10001821int
1822packet_need_rekeying(void)
1823{
1824 if (datafellows & SSH_BUG_NOREKEY)
1825 return 0;
1826 return
Darren Tuckerf7288d72009-06-21 18:12:20 +10001827 (active_state->p_send.packets > MAX_PACKETS) ||
1828 (active_state->p_read.packets > MAX_PACKETS) ||
1829 (active_state->max_blocks_out &&
1830 (active_state->p_send.blocks > active_state->max_blocks_out)) ||
1831 (active_state->max_blocks_in &&
1832 (active_state->p_read.blocks > active_state->max_blocks_in));
Damien Millera5539d22003-04-09 20:50:06 +10001833}
1834
1835void
1836packet_set_rekey_limit(u_int32_t bytes)
1837{
Darren Tuckerf7288d72009-06-21 18:12:20 +10001838 active_state->rekey_limit = bytes;
Damien Millera5539d22003-04-09 20:50:06 +10001839}
Damien Miller9786e6e2005-07-26 21:54:56 +10001840
1841void
1842packet_set_server(void)
1843{
Darren Tuckerf7288d72009-06-21 18:12:20 +10001844 active_state->server_side = 1;
Damien Miller9786e6e2005-07-26 21:54:56 +10001845}
1846
1847void
1848packet_set_authenticated(void)
1849{
Darren Tuckerf7288d72009-06-21 18:12:20 +10001850 active_state->after_authentication = 1;
1851}
1852
1853void *
1854packet_get_input(void)
1855{
1856 return (void *)&active_state->input;
1857}
1858
1859void *
1860packet_get_output(void)
1861{
1862 return (void *)&active_state->output;
1863}
1864
1865void *
1866packet_get_newkeys(int mode)
1867{
1868 return (void *)active_state->newkeys[mode];
Damien Miller9786e6e2005-07-26 21:54:56 +10001869}