blob: 1dda4a29458a1b66fd26cd36521960f664c1a397 [file] [log] [blame]
Damien Millerd874fa52008-07-05 09:40:56 +10001/* $OpenBSD: packet.c,v 1.156 2008/07/04 23:08:25 djm Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11004 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * This file contains code implementing the packet protocol and communication
7 * with the other side. This same code is used both on client and server side.
Damien Miller33b13562000-04-04 14:38:59 +10008 *
Damien Millere4340be2000-09-16 13:29:08 +11009 * As far as I am concerned, the code I have written for this software
10 * can be used freely for any purpose. Any derived versions of this
11 * software must be clearly marked as such, and if the derived work is
12 * incompatible with the protocol description in the RFC file, it must be
13 * called by a name other than "ssh" or "Secure Shell".
Damien Miller33b13562000-04-04 14:38:59 +100014 *
Damien Millere4340be2000-09-16 13:29:08 +110015 *
16 * SSH2 packet format added by Markus Friedl.
Ben Lindstrom44697232001-07-04 03:32:30 +000017 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110018 *
19 * Redistribution and use in source and binary forms, with or without
20 * modification, are permitted provided that the following conditions
21 * are met:
22 * 1. Redistributions of source code must retain the above copyright
23 * notice, this list of conditions and the following disclaimer.
24 * 2. Redistributions in binary form must reproduce the above copyright
25 * notice, this list of conditions and the following disclaimer in the
26 * documentation and/or other materials provided with the distribution.
27 *
28 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
29 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
30 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
31 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
32 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
33 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
34 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
35 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
36 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
37 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110038 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100039
40#include "includes.h"
Damien Miller68f8e992006-03-15 11:24:12 +110041
Damien Millere3b60b52006-07-10 21:08:03 +100042#include <sys/types.h>
Damien Millera0898b82003-04-09 21:05:52 +100043#include "openbsd-compat/sys-queue.h"
Damien Miller8dbffe72006-08-05 11:02:17 +100044#include <sys/param.h>
Damien Miller8ec8c3e2006-07-10 20:35:38 +100045#include <sys/socket.h>
Damien Miller9aec9192006-08-05 10:57:45 +100046#ifdef HAVE_SYS_TIME_H
47# include <sys/time.h>
48#endif
Damien Miller8ec8c3e2006-07-10 20:35:38 +100049
Damien Miller8ec8c3e2006-07-10 20:35:38 +100050#include <netinet/in.h>
Damien Miller68f8e992006-03-15 11:24:12 +110051#include <netinet/ip.h>
Darren Tuckerdace2332006-09-22 19:22:17 +100052#include <arpa/inet.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100053
Darren Tucker39972492006-07-12 22:22:46 +100054#include <errno.h>
Darren Tucker5d196262006-07-12 22:15:16 +100055#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100056#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100057#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100058#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100059#include <unistd.h>
Damien Millerd7834352006-08-05 12:39:39 +100060#include <signal.h>
Darren 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 Miller5428f641999-11-25 11:54:57 +110087/*
88 * This variable contains the file descriptors used for communicating with
89 * the other side. connection_in is used for reading; connection_out for
90 * writing. These can be the same descriptor, in which case it is assumed to
91 * be a socket.
92 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100093static int connection_in = -1;
94static int connection_out = -1;
95
Damien Millerd4a8b7e1999-10-27 13:42:43 +100096/* Protocol flags for the remote side. */
Ben Lindstrom46c16222000-12-22 01:43:59 +000097static u_int remote_protocol_flags = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100098
99/* Encryption context for receiving data. This is only used for decryption. */
100static CipherContext receive_context;
Damien Miller95def091999-11-25 00:26:21 +1100101
102/* Encryption context for sending data. This is only used for encryption. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000103static CipherContext send_context;
104
105/* Buffer for raw input data from the socket. */
Ben Lindstromf6027d32002-03-22 01:42:04 +0000106Buffer input;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000107
108/* Buffer for raw output data going to the socket. */
Ben Lindstromf6027d32002-03-22 01:42:04 +0000109Buffer output;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000110
111/* Buffer for the partial outgoing packet being constructed. */
112static Buffer outgoing_packet;
113
114/* Buffer for the incoming packet currently being processed. */
115static Buffer incoming_packet;
116
117/* Scratch buffer for packet compression/decompression. */
118static Buffer compression_buffer;
Ben Lindstromfb50cdf2001-04-05 23:20:46 +0000119static int compression_buffer_ready = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000120
121/* Flag indicating whether packet compression/decompression is enabled. */
122static int packet_compression = 0;
123
Damien Miller6162d121999-11-21 13:23:52 +1100124/* default maximum packet size */
Darren Tucker502d3842003-06-28 12:38:01 +1000125u_int max_packet_size = 32768;
Damien Miller6162d121999-11-21 13:23:52 +1100126
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000127/* Flag indicating whether this module has been initialized. */
128static int initialized = 0;
129
130/* Set to true if the connection is interactive. */
131static int interactive_mode = 0;
132
Damien Miller9786e6e2005-07-26 21:54:56 +1000133/* Set to true if we are the server side. */
134static int server_side = 0;
135
136/* Set to true if we are authenticated. */
137static int after_authentication = 0;
138
Damien Miller58226f62008-03-07 18:33:30 +1100139int keep_alive_timeouts = 0;
140
Darren Tucker3fc464e2008-06-13 06:42:45 +1000141/* Set to the maximum time that we will wait to send or receive a packet */
142static int packet_timeout_ms = -1;
143
Damien Miller33b13562000-04-04 14:38:59 +1000144/* Session key information for Encryption and MAC */
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000145Newkeys *newkeys[MODE_MAX];
Damien Millera5539d22003-04-09 20:50:06 +1000146static struct packet_state {
147 u_int32_t seqnr;
148 u_int32_t packets;
149 u_int64_t blocks;
150} p_read, p_send;
151
152static u_int64_t max_blocks_in, max_blocks_out;
153static u_int32_t rekey_limit;
Damien Miller33b13562000-04-04 14:38:59 +1000154
Ben Lindstrom402c6cc2002-06-21 00:43:42 +0000155/* Session key for protocol v1 */
156static u_char ssh1_key[SSH_SESSION_KEY_LENGTH];
157static u_int ssh1_keylen;
158
Damien Miller9f643902001-11-12 11:02:52 +1100159/* roundup current message to extra_pad bytes */
160static u_char extra_pad = 0;
161
Damien Millera5539d22003-04-09 20:50:06 +1000162struct packet {
163 TAILQ_ENTRY(packet) next;
164 u_char type;
165 Buffer payload;
166};
167TAILQ_HEAD(, packet) outgoing;
168
Damien Miller5428f641999-11-25 11:54:57 +1100169/*
170 * Sets the descriptors used for communication. Disables encryption until
171 * packet_set_encryption_key is called.
172 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000173void
174packet_set_connection(int fd_in, int fd_out)
175{
Damien Miller874d77b2000-10-14 16:23:11 +1100176 Cipher *none = cipher_by_name("none");
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000177
Damien Miller874d77b2000-10-14 16:23:11 +1100178 if (none == NULL)
179 fatal("packet_set_connection: cannot load cipher 'none'");
Damien Miller95def091999-11-25 00:26:21 +1100180 connection_in = fd_in;
181 connection_out = fd_out;
Darren Tucker1f8311c2004-05-13 16:39:33 +1000182 cipher_init(&send_context, none, (const u_char *)"",
183 0, NULL, 0, CIPHER_ENCRYPT);
184 cipher_init(&receive_context, none, (const u_char *)"",
185 0, NULL, 0, CIPHER_DECRYPT);
Ben Lindstrom80c6d772001-06-05 21:09:18 +0000186 newkeys[MODE_IN] = newkeys[MODE_OUT] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100187 if (!initialized) {
188 initialized = 1;
189 buffer_init(&input);
190 buffer_init(&output);
191 buffer_init(&outgoing_packet);
192 buffer_init(&incoming_packet);
Damien Millera5539d22003-04-09 20:50:06 +1000193 TAILQ_INIT(&outgoing);
Damien Miller95def091999-11-25 00:26:21 +1100194 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000195}
196
Darren Tucker3fc464e2008-06-13 06:42:45 +1000197void
198packet_set_timeout(int timeout, int count)
199{
200 if (timeout == 0 || count == 0) {
201 packet_timeout_ms = -1;
202 return;
203 }
204 if ((INT_MAX / 1000) / count < timeout)
205 packet_timeout_ms = INT_MAX;
206 else
207 packet_timeout_ms = timeout * count * 1000;
208}
209
Damien Miller34132e52000-01-14 15:45:46 +1100210/* Returns 1 if remote host is connected via socket, 0 if not. */
211
212int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000213packet_connection_is_on_socket(void)
Damien Miller34132e52000-01-14 15:45:46 +1100214{
215 struct sockaddr_storage from, to;
216 socklen_t fromlen, tolen;
217
218 /* filedescriptors in and out are the same, so it's a socket */
219 if (connection_in == connection_out)
220 return 1;
221 fromlen = sizeof(from);
222 memset(&from, 0, sizeof(from));
Damien Millerf052aaf2000-01-22 19:47:21 +1100223 if (getpeername(connection_in, (struct sockaddr *)&from, &fromlen) < 0)
Damien Miller34132e52000-01-14 15:45:46 +1100224 return 0;
225 tolen = sizeof(to);
226 memset(&to, 0, sizeof(to));
Damien Millerf052aaf2000-01-22 19:47:21 +1100227 if (getpeername(connection_out, (struct sockaddr *)&to, &tolen) < 0)
Damien Miller34132e52000-01-14 15:45:46 +1100228 return 0;
229 if (fromlen != tolen || memcmp(&from, &to, fromlen) != 0)
230 return 0;
231 if (from.ss_family != AF_INET && from.ss_family != AF_INET6)
232 return 0;
233 return 1;
234}
235
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000236/*
Ben Lindstromf6027d32002-03-22 01:42:04 +0000237 * Exports an IV from the CipherContext required to export the key
238 * state back from the unprivileged child to the privileged parent
239 * process.
240 */
241
242void
243packet_get_keyiv(int mode, u_char *iv, u_int len)
244{
245 CipherContext *cc;
246
247 if (mode == MODE_OUT)
248 cc = &send_context;
249 else
250 cc = &receive_context;
251
252 cipher_get_keyiv(cc, iv, len);
253}
254
255int
256packet_get_keycontext(int mode, u_char *dat)
257{
258 CipherContext *cc;
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000259
Ben Lindstromf6027d32002-03-22 01:42:04 +0000260 if (mode == MODE_OUT)
261 cc = &send_context;
262 else
263 cc = &receive_context;
264
265 return (cipher_get_keycontext(cc, dat));
266}
267
268void
269packet_set_keycontext(int mode, u_char *dat)
270{
271 CipherContext *cc;
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000272
Ben Lindstromf6027d32002-03-22 01:42:04 +0000273 if (mode == MODE_OUT)
274 cc = &send_context;
275 else
276 cc = &receive_context;
277
278 cipher_set_keycontext(cc, dat);
279}
280
281int
282packet_get_keyiv_len(int mode)
283{
284 CipherContext *cc;
285
286 if (mode == MODE_OUT)
287 cc = &send_context;
288 else
289 cc = &receive_context;
290
291 return (cipher_get_keyiv_len(cc));
292}
Damien Miller4f7becb2006-03-26 14:10:14 +1100293
Ben Lindstromf6027d32002-03-22 01:42:04 +0000294void
295packet_set_iv(int mode, u_char *dat)
296{
297 CipherContext *cc;
298
299 if (mode == MODE_OUT)
300 cc = &send_context;
301 else
302 cc = &receive_context;
303
304 cipher_set_keyiv(cc, dat);
305}
Damien Miller4f7becb2006-03-26 14:10:14 +1100306
Ben Lindstromf6027d32002-03-22 01:42:04 +0000307int
Damien Miller2b92d322003-06-11 22:05:06 +1000308packet_get_ssh1_cipher(void)
Ben Lindstromf6027d32002-03-22 01:42:04 +0000309{
310 return (cipher_get_number(receive_context.cipher));
311}
312
Damien Millera5539d22003-04-09 20:50:06 +1000313void
314packet_get_state(int mode, u_int32_t *seqnr, u_int64_t *blocks, u_int32_t *packets)
Ben Lindstromf6027d32002-03-22 01:42:04 +0000315{
Damien Millera5539d22003-04-09 20:50:06 +1000316 struct packet_state *state;
317
318 state = (mode == MODE_IN) ? &p_read : &p_send;
319 *seqnr = state->seqnr;
320 *blocks = state->blocks;
321 *packets = state->packets;
Ben Lindstromf6027d32002-03-22 01:42:04 +0000322}
323
324void
Damien Millera5539d22003-04-09 20:50:06 +1000325packet_set_state(int mode, u_int32_t seqnr, u_int64_t blocks, u_int32_t packets)
Ben Lindstromf6027d32002-03-22 01:42:04 +0000326{
Damien Millera5539d22003-04-09 20:50:06 +1000327 struct packet_state *state;
328
329 state = (mode == MODE_IN) ? &p_read : &p_send;
330 state->seqnr = seqnr;
331 state->blocks = blocks;
332 state->packets = packets;
Ben Lindstromf6027d32002-03-22 01:42:04 +0000333}
334
Damien Miller34132e52000-01-14 15:45:46 +1100335/* returns 1 if connection is via ipv4 */
336
337int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000338packet_connection_is_ipv4(void)
Damien Miller34132e52000-01-14 15:45:46 +1100339{
340 struct sockaddr_storage to;
Damien Miller6fe375d2000-01-23 09:38:00 +1100341 socklen_t tolen = sizeof(to);
Damien Miller34132e52000-01-14 15:45:46 +1100342
343 memset(&to, 0, sizeof(to));
344 if (getsockname(connection_out, (struct sockaddr *)&to, &tolen) < 0)
345 return 0;
Damien Milleraa100c52002-04-26 16:54:34 +1000346 if (to.ss_family == AF_INET)
347 return 1;
348#ifdef IPV4_IN_IPV6
Damien Millera8e06ce2003-11-21 23:48:55 +1100349 if (to.ss_family == AF_INET6 &&
Damien Milleraa100c52002-04-26 16:54:34 +1000350 IN6_IS_ADDR_V4MAPPED(&((struct sockaddr_in6 *)&to)->sin6_addr))
351 return 1;
352#endif
353 return 0;
Damien Miller34132e52000-01-14 15:45:46 +1100354}
355
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000356/* Sets the connection into non-blocking mode. */
357
358void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000359packet_set_nonblocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000360{
Damien Miller95def091999-11-25 00:26:21 +1100361 /* Set the socket into non-blocking mode. */
Damien Miller232711f2004-06-15 10:35:30 +1000362 set_nonblock(connection_in);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000363
Damien Miller232711f2004-06-15 10:35:30 +1000364 if (connection_out != connection_in)
365 set_nonblock(connection_out);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000366}
367
368/* Returns the socket used for reading. */
369
370int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000371packet_get_connection_in(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000372{
Damien Miller95def091999-11-25 00:26:21 +1100373 return connection_in;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000374}
375
376/* Returns the descriptor used for writing. */
377
378int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000379packet_get_connection_out(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000380{
Damien Miller95def091999-11-25 00:26:21 +1100381 return connection_out;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000382}
383
384/* Closes the connection and clears and frees internal data structures. */
385
386void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000387packet_close(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000388{
Damien Miller95def091999-11-25 00:26:21 +1100389 if (!initialized)
390 return;
391 initialized = 0;
392 if (connection_in == connection_out) {
393 shutdown(connection_out, SHUT_RDWR);
394 close(connection_out);
395 } else {
396 close(connection_in);
397 close(connection_out);
398 }
399 buffer_free(&input);
400 buffer_free(&output);
401 buffer_free(&outgoing_packet);
402 buffer_free(&incoming_packet);
Ben Lindstromfb50cdf2001-04-05 23:20:46 +0000403 if (compression_buffer_ready) {
Damien Miller95def091999-11-25 00:26:21 +1100404 buffer_free(&compression_buffer);
405 buffer_compress_uninit();
406 }
Damien Miller963f6b22002-02-19 15:21:23 +1100407 cipher_cleanup(&send_context);
408 cipher_cleanup(&receive_context);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000409}
410
411/* Sets remote side protocol flags. */
412
413void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000414packet_set_protocol_flags(u_int protocol_flags)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000415{
Damien Miller95def091999-11-25 00:26:21 +1100416 remote_protocol_flags = protocol_flags;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000417}
418
419/* Returns the remote protocol flags set earlier by the above function. */
420
Ben Lindstrom46c16222000-12-22 01:43:59 +0000421u_int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000422packet_get_protocol_flags(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000423{
Damien Miller95def091999-11-25 00:26:21 +1100424 return remote_protocol_flags;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000425}
426
Damien Miller5428f641999-11-25 11:54:57 +1100427/*
428 * Starts packet compression from the next packet on in both directions.
429 * Level is compression level 1 (fastest) - 9 (slow, best) as in gzip.
430 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000431
Ben Lindstrombba81212001-06-25 05:01:22 +0000432static void
433packet_init_compression(void)
Ben Lindstromfb50cdf2001-04-05 23:20:46 +0000434{
435 if (compression_buffer_ready == 1)
436 return;
437 compression_buffer_ready = 1;
438 buffer_init(&compression_buffer);
439}
440
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000441void
442packet_start_compression(int level)
443{
Ben Lindstrom80c6d772001-06-05 21:09:18 +0000444 if (packet_compression && !compat20)
Damien Miller95def091999-11-25 00:26:21 +1100445 fatal("Compression already enabled.");
446 packet_compression = 1;
Ben Lindstromfb50cdf2001-04-05 23:20:46 +0000447 packet_init_compression();
448 buffer_compress_init_send(level);
449 buffer_compress_init_recv();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000450}
451
Damien Miller5428f641999-11-25 11:54:57 +1100452/*
Damien Miller5428f641999-11-25 11:54:57 +1100453 * Causes any further packets to be encrypted using the given key. The same
454 * key is used for both sending and reception. However, both directions are
455 * encrypted independently of each other.
456 */
Ben Lindstrom402c6cc2002-06-21 00:43:42 +0000457
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000458void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000459packet_set_encryption_key(const u_char *key, u_int keylen,
Damien Miller874d77b2000-10-14 16:23:11 +1100460 int number)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000461{
Damien Miller874d77b2000-10-14 16:23:11 +1100462 Cipher *cipher = cipher_by_number(number);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000463
Damien Miller874d77b2000-10-14 16:23:11 +1100464 if (cipher == NULL)
465 fatal("packet_set_encryption_key: unknown cipher number %d", number);
Damien Miller33b13562000-04-04 14:38:59 +1000466 if (keylen < 20)
Damien Miller874d77b2000-10-14 16:23:11 +1100467 fatal("packet_set_encryption_key: keylen too small: %d", keylen);
Ben Lindstrom402c6cc2002-06-21 00:43:42 +0000468 if (keylen > SSH_SESSION_KEY_LENGTH)
469 fatal("packet_set_encryption_key: keylen too big: %d", keylen);
470 memcpy(ssh1_key, key, keylen);
471 ssh1_keylen = keylen;
Damien Miller963f6b22002-02-19 15:21:23 +1100472 cipher_init(&send_context, cipher, key, keylen, NULL, 0, CIPHER_ENCRYPT);
473 cipher_init(&receive_context, cipher, key, keylen, NULL, 0, CIPHER_DECRYPT);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000474}
475
Ben Lindstrom402c6cc2002-06-21 00:43:42 +0000476u_int
477packet_get_encryption_key(u_char *key)
478{
479 if (key == NULL)
480 return (ssh1_keylen);
481 memcpy(key, ssh1_key, ssh1_keylen);
482 return (ssh1_keylen);
483}
484
Ben Lindstrom80c6d772001-06-05 21:09:18 +0000485/* Start constructing a packet to send. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000486void
Ben Lindstrom80c6d772001-06-05 21:09:18 +0000487packet_start(u_char type)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000488{
Ben Lindstrom80c6d772001-06-05 21:09:18 +0000489 u_char buf[9];
490 int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000491
Ben Lindstrom204e4882001-03-05 06:47:00 +0000492 DBG(debug("packet_start[%d]", type));
Ben Lindstrom80c6d772001-06-05 21:09:18 +0000493 len = compat20 ? 6 : 9;
494 memset(buf, 0, len - 1);
495 buf[len - 1] = type;
496 buffer_clear(&outgoing_packet);
497 buffer_append(&outgoing_packet, buf, len);
Damien Miller33b13562000-04-04 14:38:59 +1000498}
499
Ben Lindstrom80c6d772001-06-05 21:09:18 +0000500/* Append payload. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000501void
502packet_put_char(int value)
503{
Damien Miller95def091999-11-25 00:26:21 +1100504 char ch = value;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000505
Damien Miller95def091999-11-25 00:26:21 +1100506 buffer_append(&outgoing_packet, &ch, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000507}
Damien Miller4f7becb2006-03-26 14:10:14 +1100508
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000509void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000510packet_put_int(u_int value)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000511{
Damien Miller95def091999-11-25 00:26:21 +1100512 buffer_put_int(&outgoing_packet, value);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000513}
Damien Miller4f7becb2006-03-26 14:10:14 +1100514
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000515void
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100516packet_put_string(const void *buf, u_int len)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000517{
Damien Miller95def091999-11-25 00:26:21 +1100518 buffer_put_string(&outgoing_packet, buf, len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000519}
Damien Miller4f7becb2006-03-26 14:10:14 +1100520
Damien Miller33b13562000-04-04 14:38:59 +1000521void
522packet_put_cstring(const char *str)
523{
Ben Lindstrom664408d2001-06-09 01:42:01 +0000524 buffer_put_cstring(&outgoing_packet, str);
Damien Miller33b13562000-04-04 14:38:59 +1000525}
Damien Miller4f7becb2006-03-26 14:10:14 +1100526
Damien Miller33b13562000-04-04 14:38:59 +1000527void
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100528packet_put_raw(const void *buf, u_int len)
Damien Miller33b13562000-04-04 14:38:59 +1000529{
530 buffer_append(&outgoing_packet, buf, len);
531}
Damien Miller4f7becb2006-03-26 14:10:14 +1100532
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000533void
Damien Miller95def091999-11-25 00:26:21 +1100534packet_put_bignum(BIGNUM * value)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000535{
Damien Miller95def091999-11-25 00:26:21 +1100536 buffer_put_bignum(&outgoing_packet, value);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000537}
Damien Miller4f7becb2006-03-26 14:10:14 +1100538
Damien Miller33b13562000-04-04 14:38:59 +1000539void
540packet_put_bignum2(BIGNUM * value)
541{
542 buffer_put_bignum2(&outgoing_packet, value);
543}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000544
Damien Miller5428f641999-11-25 11:54:57 +1100545/*
546 * Finalizes and sends the packet. If the encryption key has been set,
547 * encrypts the packet before sending.
548 */
Damien Miller95def091999-11-25 00:26:21 +1100549
Ben Lindstrombba81212001-06-25 05:01:22 +0000550static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000551packet_send1(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000552{
Ben Lindstrom4a7714a2002-02-26 18:04:38 +0000553 u_char buf[8], *cp;
Damien Miller95def091999-11-25 00:26:21 +1100554 int i, padding, len;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000555 u_int checksum;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000556 u_int32_t rnd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000557
Damien Miller5428f641999-11-25 11:54:57 +1100558 /*
559 * If using packet compression, compress the payload of the outgoing
560 * packet.
561 */
Damien Miller95def091999-11-25 00:26:21 +1100562 if (packet_compression) {
563 buffer_clear(&compression_buffer);
564 /* Skip padding. */
565 buffer_consume(&outgoing_packet, 8);
566 /* padding */
567 buffer_append(&compression_buffer, "\0\0\0\0\0\0\0\0", 8);
568 buffer_compress(&outgoing_packet, &compression_buffer);
569 buffer_clear(&outgoing_packet);
570 buffer_append(&outgoing_packet, buffer_ptr(&compression_buffer),
Damien Miller9f0f5c62001-12-21 14:45:46 +1100571 buffer_len(&compression_buffer));
Damien Miller95def091999-11-25 00:26:21 +1100572 }
573 /* Compute packet length without padding (add checksum, remove padding). */
574 len = buffer_len(&outgoing_packet) + 4 - 8;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000575
Damien Millere247cc42000-05-07 12:03:14 +1000576 /* Insert padding. Initialized to zero in packet_start1() */
Damien Miller95def091999-11-25 00:26:21 +1100577 padding = 8 - len % 8;
Damien Miller963f6b22002-02-19 15:21:23 +1100578 if (!send_context.plaintext) {
Damien Miller95def091999-11-25 00:26:21 +1100579 cp = buffer_ptr(&outgoing_packet);
580 for (i = 0; i < padding; i++) {
581 if (i % 4 == 0)
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000582 rnd = arc4random();
583 cp[7 - i] = rnd & 0xff;
584 rnd >>= 8;
Damien Miller95def091999-11-25 00:26:21 +1100585 }
586 }
587 buffer_consume(&outgoing_packet, 8 - padding);
588
589 /* Add check bytes. */
Damien Miller708d21c2002-01-22 23:18:15 +1100590 checksum = ssh_crc32(buffer_ptr(&outgoing_packet),
Damien Millerad833b32000-08-23 10:46:23 +1000591 buffer_len(&outgoing_packet));
Damien Miller3f941882006-03-31 23:13:02 +1100592 put_u32(buf, checksum);
Damien Miller95def091999-11-25 00:26:21 +1100593 buffer_append(&outgoing_packet, buf, 4);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000594
595#ifdef PACKET_DEBUG
Damien Miller95def091999-11-25 00:26:21 +1100596 fprintf(stderr, "packet_send plain: ");
597 buffer_dump(&outgoing_packet);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000598#endif
599
Damien Miller95def091999-11-25 00:26:21 +1100600 /* Append to output. */
Damien Miller3f941882006-03-31 23:13:02 +1100601 put_u32(buf, len);
Damien Miller95def091999-11-25 00:26:21 +1100602 buffer_append(&output, buf, 4);
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100603 cp = buffer_append_space(&output, buffer_len(&outgoing_packet));
Damien Miller963f6b22002-02-19 15:21:23 +1100604 cipher_crypt(&send_context, cp, buffer_ptr(&outgoing_packet),
Damien Miller9f0f5c62001-12-21 14:45:46 +1100605 buffer_len(&outgoing_packet));
Damien Miller95def091999-11-25 00:26:21 +1100606
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000607#ifdef PACKET_DEBUG
Damien Miller95def091999-11-25 00:26:21 +1100608 fprintf(stderr, "encrypted: ");
609 buffer_dump(&output);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000610#endif
611
Damien Miller95def091999-11-25 00:26:21 +1100612 buffer_clear(&outgoing_packet);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000613
Damien Miller5428f641999-11-25 11:54:57 +1100614 /*
Damien Miller788f2122005-11-05 15:14:59 +1100615 * Note that the packet is now only buffered in output. It won't be
Damien Miller5428f641999-11-25 11:54:57 +1100616 * actually sent until packet_write_wait or packet_write_poll is
617 * called.
618 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000619}
620
Ben Lindstromf6027d32002-03-22 01:42:04 +0000621void
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000622set_newkeys(int mode)
623{
624 Enc *enc;
625 Mac *mac;
626 Comp *comp;
627 CipherContext *cc;
Damien Millera5539d22003-04-09 20:50:06 +1000628 u_int64_t *max_blocks;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000629 int crypt_type;
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000630
Ben Lindstrom064496f2002-12-23 02:04:22 +0000631 debug2("set_newkeys: mode %d", mode);
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000632
Damien Miller963f6b22002-02-19 15:21:23 +1100633 if (mode == MODE_OUT) {
634 cc = &send_context;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000635 crypt_type = CIPHER_ENCRYPT;
Damien Millera5539d22003-04-09 20:50:06 +1000636 p_send.packets = p_send.blocks = 0;
637 max_blocks = &max_blocks_out;
Damien Miller963f6b22002-02-19 15:21:23 +1100638 } else {
639 cc = &receive_context;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000640 crypt_type = CIPHER_DECRYPT;
Damien Millera5539d22003-04-09 20:50:06 +1000641 p_read.packets = p_read.blocks = 0;
642 max_blocks = &max_blocks_in;
Damien Miller963f6b22002-02-19 15:21:23 +1100643 }
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000644 if (newkeys[mode] != NULL) {
Ben Lindstrom064496f2002-12-23 02:04:22 +0000645 debug("set_newkeys: rekeying");
Damien Miller963f6b22002-02-19 15:21:23 +1100646 cipher_cleanup(cc);
Ben Lindstrom5ba23b32001-04-05 02:05:21 +0000647 enc = &newkeys[mode]->enc;
648 mac = &newkeys[mode]->mac;
649 comp = &newkeys[mode]->comp;
Damien Millere45796f2007-06-11 14:01:42 +1000650 mac_clear(mac);
Ben Lindstrom5ba23b32001-04-05 02:05:21 +0000651 xfree(enc->name);
652 xfree(enc->iv);
653 xfree(enc->key);
654 xfree(mac->name);
655 xfree(mac->key);
656 xfree(comp->name);
Ben Lindstrom238abf62001-04-04 17:52:53 +0000657 xfree(newkeys[mode]);
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000658 }
659 newkeys[mode] = kex_get_newkeys(mode);
660 if (newkeys[mode] == NULL)
661 fatal("newkeys: no keys for mode %d", mode);
662 enc = &newkeys[mode]->enc;
663 mac = &newkeys[mode]->mac;
664 comp = &newkeys[mode]->comp;
Damien Millere45796f2007-06-11 14:01:42 +1000665 if (mac_init(mac) == 0)
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000666 mac->enabled = 1;
667 DBG(debug("cipher_init_context: %d", mode));
Damien Miller963f6b22002-02-19 15:21:23 +1100668 cipher_init(cc, enc->cipher, enc->key, enc->key_len,
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000669 enc->iv, enc->block_size, crypt_type);
Ben Lindstromf6027d32002-03-22 01:42:04 +0000670 /* Deleting the keys does not gain extra security */
671 /* memset(enc->iv, 0, enc->block_size);
Darren Tucker5f3d5be2007-06-05 18:30:18 +1000672 memset(enc->key, 0, enc->key_len);
673 memset(mac->key, 0, mac->key_len); */
Damien Miller9786e6e2005-07-26 21:54:56 +1000674 if ((comp->type == COMP_ZLIB ||
675 (comp->type == COMP_DELAYED && after_authentication)) &&
676 comp->enabled == 0) {
Ben Lindstromfb50cdf2001-04-05 23:20:46 +0000677 packet_init_compression();
678 if (mode == MODE_OUT)
679 buffer_compress_init_send(6);
680 else
681 buffer_compress_init_recv();
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000682 comp->enabled = 1;
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000683 }
Darren Tucker81a0b372003-07-14 17:31:06 +1000684 /*
685 * The 2^(blocksize*2) limit is too expensive for 3DES,
686 * blowfish, etc, so enforce a 1GB limit for small blocksizes.
687 */
688 if (enc->block_size >= 16)
689 *max_blocks = (u_int64_t)1 << (enc->block_size*2);
690 else
691 *max_blocks = ((u_int64_t)1 << 30) / enc->block_size;
Damien Millera5539d22003-04-09 20:50:06 +1000692 if (rekey_limit)
693 *max_blocks = MIN(*max_blocks, rekey_limit / enc->block_size);
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000694}
695
Damien Miller5428f641999-11-25 11:54:57 +1100696/*
Damien Miller9786e6e2005-07-26 21:54:56 +1000697 * Delayed compression for SSH2 is enabled after authentication:
Darren Tuckerf676c572006-08-05 18:51:08 +1000698 * This happens on the server side after a SSH2_MSG_USERAUTH_SUCCESS is sent,
Damien Miller9786e6e2005-07-26 21:54:56 +1000699 * and on the client side after a SSH2_MSG_USERAUTH_SUCCESS is received.
700 */
701static void
702packet_enable_delayed_compress(void)
703{
704 Comp *comp = NULL;
705 int mode;
706
707 /*
708 * Remember that we are past the authentication step, so rekeying
709 * with COMP_DELAYED will turn on compression immediately.
710 */
711 after_authentication = 1;
712 for (mode = 0; mode < MODE_MAX; mode++) {
Darren Tucker4aa665b2006-09-21 13:00:25 +1000713 /* protocol error: USERAUTH_SUCCESS received before NEWKEYS */
714 if (newkeys[mode] == NULL)
715 continue;
Damien Miller9786e6e2005-07-26 21:54:56 +1000716 comp = &newkeys[mode]->comp;
717 if (comp && !comp->enabled && comp->type == COMP_DELAYED) {
Damien Millerb5c01252005-08-12 22:10:28 +1000718 packet_init_compression();
Damien Miller9786e6e2005-07-26 21:54:56 +1000719 if (mode == MODE_OUT)
720 buffer_compress_init_send(6);
721 else
722 buffer_compress_init_recv();
723 comp->enabled = 1;
724 }
725 }
726}
727
728/*
Damien Miller33b13562000-04-04 14:38:59 +1000729 * Finalize packet in SSH2 format (compress, mac, encrypt, enqueue)
730 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000731static void
Damien Millera5539d22003-04-09 20:50:06 +1000732packet_send2_wrapped(void)
Damien Miller33b13562000-04-04 14:38:59 +1000733{
Ben Lindstrom4a7714a2002-02-26 18:04:38 +0000734 u_char type, *cp, *macbuf = NULL;
Damien Miller9f643902001-11-12 11:02:52 +1100735 u_char padlen, pad;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000736 u_int packet_length = 0;
Damien Miller9f643902001-11-12 11:02:52 +1100737 u_int i, len;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000738 u_int32_t rnd = 0;
Damien Miller33b13562000-04-04 14:38:59 +1000739 Enc *enc = NULL;
740 Mac *mac = NULL;
741 Comp *comp = NULL;
742 int block_size;
743
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000744 if (newkeys[MODE_OUT] != NULL) {
745 enc = &newkeys[MODE_OUT]->enc;
746 mac = &newkeys[MODE_OUT]->mac;
747 comp = &newkeys[MODE_OUT]->comp;
Damien Miller33b13562000-04-04 14:38:59 +1000748 }
Damien Miller963f6b22002-02-19 15:21:23 +1100749 block_size = enc ? enc->block_size : 8;
Damien Miller33b13562000-04-04 14:38:59 +1000750
Ben Lindstrom4a7714a2002-02-26 18:04:38 +0000751 cp = buffer_ptr(&outgoing_packet);
752 type = cp[5];
Damien Miller33b13562000-04-04 14:38:59 +1000753
754#ifdef PACKET_DEBUG
755 fprintf(stderr, "plain: ");
756 buffer_dump(&outgoing_packet);
757#endif
758
759 if (comp && comp->enabled) {
760 len = buffer_len(&outgoing_packet);
761 /* skip header, compress only payload */
762 buffer_consume(&outgoing_packet, 5);
763 buffer_clear(&compression_buffer);
764 buffer_compress(&outgoing_packet, &compression_buffer);
765 buffer_clear(&outgoing_packet);
766 buffer_append(&outgoing_packet, "\0\0\0\0\0", 5);
767 buffer_append(&outgoing_packet, buffer_ptr(&compression_buffer),
768 buffer_len(&compression_buffer));
769 DBG(debug("compression: raw %d compressed %d", len,
770 buffer_len(&outgoing_packet)));
771 }
772
773 /* sizeof (packet_len + pad_len + payload) */
774 len = buffer_len(&outgoing_packet);
775
776 /*
777 * calc size of padding, alloc space, get random data,
778 * minimum padding is 4 bytes
779 */
780 padlen = block_size - (len % block_size);
781 if (padlen < 4)
782 padlen += block_size;
Damien Miller9f643902001-11-12 11:02:52 +1100783 if (extra_pad) {
784 /* will wrap if extra_pad+padlen > 255 */
785 extra_pad = roundup(extra_pad, block_size);
786 pad = extra_pad - ((len + padlen) % extra_pad);
Ben Lindstrom8b08d812002-03-26 02:09:41 +0000787 debug3("packet_send2: adding %d (len %d padlen %d extra_pad %d)",
Damien Miller9f643902001-11-12 11:02:52 +1100788 pad, len, padlen, extra_pad);
789 padlen += pad;
790 extra_pad = 0;
791 }
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100792 cp = buffer_append_space(&outgoing_packet, padlen);
Damien Miller963f6b22002-02-19 15:21:23 +1100793 if (enc && !send_context.plaintext) {
Damien Millere247cc42000-05-07 12:03:14 +1000794 /* random padding */
Damien Miller33b13562000-04-04 14:38:59 +1000795 for (i = 0; i < padlen; i++) {
796 if (i % 4 == 0)
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000797 rnd = arc4random();
798 cp[i] = rnd & 0xff;
799 rnd >>= 8;
Damien Miller33b13562000-04-04 14:38:59 +1000800 }
Damien Millere247cc42000-05-07 12:03:14 +1000801 } else {
802 /* clear padding */
803 memset(cp, 0, padlen);
Damien Miller33b13562000-04-04 14:38:59 +1000804 }
805 /* packet_length includes payload, padding and padding length field */
806 packet_length = buffer_len(&outgoing_packet) - 4;
Ben Lindstrom4a7714a2002-02-26 18:04:38 +0000807 cp = buffer_ptr(&outgoing_packet);
Damien Miller3f941882006-03-31 23:13:02 +1100808 put_u32(cp, packet_length);
Ben Lindstrom4a7714a2002-02-26 18:04:38 +0000809 cp[4] = padlen;
Damien Miller33b13562000-04-04 14:38:59 +1000810 DBG(debug("send: len %d (includes padlen %d)", packet_length+4, padlen));
811
812 /* compute MAC over seqnr and packet(length fields, payload, padding) */
813 if (mac && mac->enabled) {
Damien Millera5539d22003-04-09 20:50:06 +1000814 macbuf = mac_compute(mac, p_send.seqnr,
Damien Miller708d21c2002-01-22 23:18:15 +1100815 buffer_ptr(&outgoing_packet),
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000816 buffer_len(&outgoing_packet));
Damien Millera5539d22003-04-09 20:50:06 +1000817 DBG(debug("done calc MAC out #%d", p_send.seqnr));
Damien Miller33b13562000-04-04 14:38:59 +1000818 }
819 /* encrypt packet and append to output buffer. */
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100820 cp = buffer_append_space(&output, buffer_len(&outgoing_packet));
Damien Miller963f6b22002-02-19 15:21:23 +1100821 cipher_crypt(&send_context, cp, buffer_ptr(&outgoing_packet),
Damien Miller33b13562000-04-04 14:38:59 +1000822 buffer_len(&outgoing_packet));
823 /* append unencrypted MAC */
824 if (mac && mac->enabled)
Damien Millera0fdce92006-03-26 14:28:50 +1100825 buffer_append(&output, macbuf, mac->mac_len);
Damien Miller33b13562000-04-04 14:38:59 +1000826#ifdef PACKET_DEBUG
827 fprintf(stderr, "encrypted: ");
828 buffer_dump(&output);
829#endif
Damien Miller4af51302000-04-16 11:18:38 +1000830 /* increment sequence number for outgoing packets */
Damien Millera5539d22003-04-09 20:50:06 +1000831 if (++p_send.seqnr == 0)
Damien Miller996acd22003-04-09 20:59:48 +1000832 logit("outgoing seqnr wraps around");
Damien Millera5539d22003-04-09 20:50:06 +1000833 if (++p_send.packets == 0)
834 if (!(datafellows & SSH_BUG_NOREKEY))
835 fatal("XXX too many packets with same key");
836 p_send.blocks += (packet_length + 4) / block_size;
Damien Miller33b13562000-04-04 14:38:59 +1000837 buffer_clear(&outgoing_packet);
838
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000839 if (type == SSH2_MSG_NEWKEYS)
840 set_newkeys(MODE_OUT);
Damien Miller9786e6e2005-07-26 21:54:56 +1000841 else if (type == SSH2_MSG_USERAUTH_SUCCESS && server_side)
842 packet_enable_delayed_compress();
Damien Miller33b13562000-04-04 14:38:59 +1000843}
844
Damien Millera5539d22003-04-09 20:50:06 +1000845static void
846packet_send2(void)
847{
848 static int rekeying = 0;
849 struct packet *p;
850 u_char type, *cp;
851
852 cp = buffer_ptr(&outgoing_packet);
853 type = cp[5];
854
855 /* during rekeying we can only send key exchange messages */
856 if (rekeying) {
857 if (!((type >= SSH2_MSG_TRANSPORT_MIN) &&
858 (type <= SSH2_MSG_TRANSPORT_MAX))) {
859 debug("enqueue packet: %u", type);
860 p = xmalloc(sizeof(*p));
861 p->type = type;
862 memcpy(&p->payload, &outgoing_packet, sizeof(Buffer));
863 buffer_init(&outgoing_packet);
864 TAILQ_INSERT_TAIL(&outgoing, p, next);
865 return;
866 }
867 }
868
869 /* rekeying starts with sending KEXINIT */
870 if (type == SSH2_MSG_KEXINIT)
871 rekeying = 1;
872
873 packet_send2_wrapped();
874
875 /* after a NEWKEYS message we can send the complete queue */
876 if (type == SSH2_MSG_NEWKEYS) {
877 rekeying = 0;
878 while ((p = TAILQ_FIRST(&outgoing))) {
879 type = p->type;
880 debug("dequeue packet: %u", type);
881 buffer_free(&outgoing_packet);
882 memcpy(&outgoing_packet, &p->payload,
883 sizeof(Buffer));
884 TAILQ_REMOVE(&outgoing, p, next);
885 xfree(p);
886 packet_send2_wrapped();
887 }
888 }
889}
890
Damien Miller33b13562000-04-04 14:38:59 +1000891void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000892packet_send(void)
Damien Miller33b13562000-04-04 14:38:59 +1000893{
Ben Lindstrom80c6d772001-06-05 21:09:18 +0000894 if (compat20)
Damien Miller33b13562000-04-04 14:38:59 +1000895 packet_send2();
896 else
897 packet_send1();
898 DBG(debug("packet_send done"));
899}
900
Damien Miller33b13562000-04-04 14:38:59 +1000901/*
Damien Miller5428f641999-11-25 11:54:57 +1100902 * Waits until a packet has been received, and returns its type. Note that
903 * no other data is processed until this returns, so this function should not
904 * be used during the interactive session.
905 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000906
907int
Damien Millerdff50992002-01-22 23:16:32 +1100908packet_read_seqnr(u_int32_t *seqnr_p)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000909{
Darren Tucker3fc464e2008-06-13 06:42:45 +1000910 int type, len, ret, ms_remain;
Ben Lindstromcb978aa2001-03-05 07:07:49 +0000911 fd_set *setp;
Damien Miller95def091999-11-25 00:26:21 +1100912 char buf[8192];
Darren Tucker3fc464e2008-06-13 06:42:45 +1000913 struct timeval timeout, start, *timeoutp = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000914
Darren Tucker99bb7612008-06-13 22:02:50 +1000915 DBG(debug("packet_read()"));
916
Damien Miller07d86be2006-03-26 14:19:21 +1100917 setp = (fd_set *)xcalloc(howmany(connection_in+1, NFDBITS),
Ben Lindstromcb978aa2001-03-05 07:07:49 +0000918 sizeof(fd_mask));
919
Damien Miller95def091999-11-25 00:26:21 +1100920 /* Since we are blocking, ensure that all written packets have been sent. */
921 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000922
Damien Miller95def091999-11-25 00:26:21 +1100923 /* Stay in the loop until we have received a complete packet. */
924 for (;;) {
925 /* Try to read a packet from the buffer. */
Damien Millerdff50992002-01-22 23:16:32 +1100926 type = packet_read_poll_seqnr(seqnr_p);
Ben Lindstrom80c6d772001-06-05 21:09:18 +0000927 if (!compat20 && (
Damien Millere247cc42000-05-07 12:03:14 +1000928 type == SSH_SMSG_SUCCESS
Damien Miller95def091999-11-25 00:26:21 +1100929 || type == SSH_SMSG_FAILURE
930 || type == SSH_CMSG_EOF
Damien Millere247cc42000-05-07 12:03:14 +1000931 || type == SSH_CMSG_EXIT_CONFIRMATION))
Damien Miller48b03fc2002-01-22 23:11:40 +1100932 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +1100933 /* If we got a packet, return it. */
Ben Lindstromcb978aa2001-03-05 07:07:49 +0000934 if (type != SSH_MSG_NONE) {
935 xfree(setp);
Damien Miller95def091999-11-25 00:26:21 +1100936 return type;
Ben Lindstromcb978aa2001-03-05 07:07:49 +0000937 }
Damien Miller5428f641999-11-25 11:54:57 +1100938 /*
939 * Otherwise, wait for some data to arrive, add it to the
940 * buffer, and try again.
941 */
Ben Lindstromcb978aa2001-03-05 07:07:49 +0000942 memset(setp, 0, howmany(connection_in + 1, NFDBITS) *
943 sizeof(fd_mask));
944 FD_SET(connection_in, setp);
Damien Miller5428f641999-11-25 11:54:57 +1100945
Darren Tucker3fc464e2008-06-13 06:42:45 +1000946 if (packet_timeout_ms > 0) {
947 ms_remain = packet_timeout_ms;
948 timeoutp = &timeout;
949 }
Damien Miller95def091999-11-25 00:26:21 +1100950 /* Wait for some data to arrive. */
Darren Tucker3fc464e2008-06-13 06:42:45 +1000951 for (;;) {
952 if (packet_timeout_ms != -1) {
953 ms_to_timeval(&timeout, ms_remain);
954 gettimeofday(&start, NULL);
955 }
956 if ((ret = select(connection_in + 1, setp, NULL,
957 NULL, timeoutp)) >= 0)
958 break;
Damien Millerd8968ad2008-07-04 23:10:49 +1000959 if (errno != EAGAIN && errno != EINTR &&
960 errno != EWOULDBLOCK)
Darren Tucker3fc464e2008-06-13 06:42:45 +1000961 break;
962 if (packet_timeout_ms == -1)
963 continue;
964 ms_subtract_diff(&start, &ms_remain);
965 if (ms_remain <= 0) {
966 ret = 0;
967 break;
968 }
969 }
970 if (ret == 0) {
971 logit("Connection to %.200s timed out while "
972 "waiting to read", get_remote_ipaddr());
973 cleanup_exit(255);
974 }
Damien Miller95def091999-11-25 00:26:21 +1100975 /* Read data from the socket. */
976 len = read(connection_in, buf, sizeof(buf));
Damien Miller5e7c10e1999-12-16 13:18:04 +1100977 if (len == 0) {
Damien Miller996acd22003-04-09 20:59:48 +1000978 logit("Connection closed by %.200s", get_remote_ipaddr());
Darren Tucker3e33cec2003-10-02 16:12:36 +1000979 cleanup_exit(255);
Damien Miller5e7c10e1999-12-16 13:18:04 +1100980 }
Damien Miller95def091999-11-25 00:26:21 +1100981 if (len < 0)
982 fatal("Read from socket failed: %.100s", strerror(errno));
983 /* Append it to the buffer. */
984 packet_process_incoming(buf, len);
985 }
986 /* NOTREACHED */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000987}
988
Damien Miller278f9072001-12-21 15:00:19 +1100989int
Damien Millerdff50992002-01-22 23:16:32 +1100990packet_read(void)
Damien Miller278f9072001-12-21 15:00:19 +1100991{
Damien Millerdff50992002-01-22 23:16:32 +1100992 return packet_read_seqnr(NULL);
Damien Miller278f9072001-12-21 15:00:19 +1100993}
994
Damien Miller5428f641999-11-25 11:54:57 +1100995/*
996 * Waits until a packet has been received, verifies that its type matches
997 * that given, and gives a fatal error and exits if there is a mismatch.
998 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000999
1000void
Damien Millerdff50992002-01-22 23:16:32 +11001001packet_read_expect(int expected_type)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001002{
Damien Miller95def091999-11-25 00:26:21 +11001003 int type;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001004
Damien Millerdff50992002-01-22 23:16:32 +11001005 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001006 if (type != expected_type)
1007 packet_disconnect("Protocol error: expected packet type %d, got %d",
Damien Miller33b13562000-04-04 14:38:59 +10001008 expected_type, type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001009}
1010
1011/* Checks if a full packet is available in the data received so far via
Damien Miller95def091999-11-25 00:26:21 +11001012 * packet_process_incoming. If so, reads the packet; otherwise returns
1013 * SSH_MSG_NONE. This does not wait for data from the connection.
1014 *
Damien Miller5ed3d572008-02-10 22:27:47 +11001015 * SSH_MSG_DISCONNECT is handled specially here. Also,
1016 * SSH_MSG_IGNORE messages are skipped by this function and are never returned
1017 * to higher levels.
Damien Miller95def091999-11-25 00:26:21 +11001018 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001019
Ben Lindstrombba81212001-06-25 05:01:22 +00001020static int
Damien Millerdff50992002-01-22 23:16:32 +11001021packet_read_poll1(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001022{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001023 u_int len, padded_len;
Ben Lindstrom4a7714a2002-02-26 18:04:38 +00001024 u_char *cp, type;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001025 u_int checksum, stored_checksum;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001026
Damien Miller95def091999-11-25 00:26:21 +11001027 /* Check if input size is less than minimum packet size. */
1028 if (buffer_len(&input) < 4 + 8)
1029 return SSH_MSG_NONE;
1030 /* Get length of incoming packet. */
Ben Lindstrom4a7714a2002-02-26 18:04:38 +00001031 cp = buffer_ptr(&input);
Damien Miller3f941882006-03-31 23:13:02 +11001032 len = get_u32(cp);
Damien Miller95def091999-11-25 00:26:21 +11001033 if (len < 1 + 2 + 2 || len > 256 * 1024)
Ben Lindstrom0cc2a472002-11-09 15:41:39 +00001034 packet_disconnect("Bad packet length %u.", len);
Damien Miller95def091999-11-25 00:26:21 +11001035 padded_len = (len + 8) & ~7;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001036
Damien Miller95def091999-11-25 00:26:21 +11001037 /* Check if the packet has been entirely received. */
1038 if (buffer_len(&input) < 4 + padded_len)
1039 return SSH_MSG_NONE;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001040
Damien Miller95def091999-11-25 00:26:21 +11001041 /* The entire packet is in buffer. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001042
Damien Miller95def091999-11-25 00:26:21 +11001043 /* Consume packet length. */
1044 buffer_consume(&input, 4);
1045
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001046 /*
1047 * Cryptographic attack detector for ssh
1048 * (C)1998 CORE-SDI, Buenos Aires Argentina
1049 * Ariel Futoransky(futo@core-sdi.com)
1050 */
Damien Miller3c9c1fb2006-09-17 06:08:53 +10001051 if (!receive_context.plaintext) {
1052 switch (detect_attack(buffer_ptr(&input), padded_len)) {
1053 case DEATTACK_DETECTED:
1054 packet_disconnect("crc32 compensation attack: "
1055 "network attack detected");
1056 case DEATTACK_DOS_DETECTED:
1057 packet_disconnect("deattack denial of "
1058 "service detected");
1059 }
1060 }
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001061
1062 /* Decrypt data to incoming_packet. */
Damien Miller95def091999-11-25 00:26:21 +11001063 buffer_clear(&incoming_packet);
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001064 cp = buffer_append_space(&incoming_packet, padded_len);
Damien Miller963f6b22002-02-19 15:21:23 +11001065 cipher_crypt(&receive_context, cp, buffer_ptr(&input), padded_len);
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001066
Damien Miller95def091999-11-25 00:26:21 +11001067 buffer_consume(&input, padded_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001068
1069#ifdef PACKET_DEBUG
Damien Miller95def091999-11-25 00:26:21 +11001070 fprintf(stderr, "read_poll plain: ");
1071 buffer_dump(&incoming_packet);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001072#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001073
Damien Miller95def091999-11-25 00:26:21 +11001074 /* Compute packet checksum. */
Damien Miller708d21c2002-01-22 23:18:15 +11001075 checksum = ssh_crc32(buffer_ptr(&incoming_packet),
Damien Miller33b13562000-04-04 14:38:59 +10001076 buffer_len(&incoming_packet) - 4);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001077
Damien Miller95def091999-11-25 00:26:21 +11001078 /* Skip padding. */
1079 buffer_consume(&incoming_packet, 8 - len % 8);
Damien Millerfd7c9111999-11-08 16:15:55 +11001080
Damien Miller95def091999-11-25 00:26:21 +11001081 /* Test check bytes. */
Damien Miller95def091999-11-25 00:26:21 +11001082 if (len != buffer_len(&incoming_packet))
Damien Miller278f9072001-12-21 15:00:19 +11001083 packet_disconnect("packet_read_poll1: len %d != buffer_len %d.",
Damien Miller33b13562000-04-04 14:38:59 +10001084 len, buffer_len(&incoming_packet));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001085
Ben Lindstrom4a7714a2002-02-26 18:04:38 +00001086 cp = (u_char *)buffer_ptr(&incoming_packet) + len - 4;
Damien Miller3f941882006-03-31 23:13:02 +11001087 stored_checksum = get_u32(cp);
Damien Miller95def091999-11-25 00:26:21 +11001088 if (checksum != stored_checksum)
1089 packet_disconnect("Corrupted check bytes on input.");
1090 buffer_consume_end(&incoming_packet, 4);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001091
Damien Miller95def091999-11-25 00:26:21 +11001092 if (packet_compression) {
1093 buffer_clear(&compression_buffer);
1094 buffer_uncompress(&incoming_packet, &compression_buffer);
1095 buffer_clear(&incoming_packet);
1096 buffer_append(&incoming_packet, buffer_ptr(&compression_buffer),
Damien Miller33b13562000-04-04 14:38:59 +10001097 buffer_len(&compression_buffer));
Damien Miller95def091999-11-25 00:26:21 +11001098 }
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001099 type = buffer_get_char(&incoming_packet);
Darren Tuckerb2694f02004-11-05 20:27:54 +11001100 if (type < SSH_MSG_MIN || type > SSH_MSG_MAX)
1101 packet_disconnect("Invalid ssh1 packet type: %d", type);
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001102 return type;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001103}
Damien Miller95def091999-11-25 00:26:21 +11001104
Ben Lindstrombba81212001-06-25 05:01:22 +00001105static int
Damien Millerdff50992002-01-22 23:16:32 +11001106packet_read_poll2(u_int32_t *seqnr_p)
Damien Miller33b13562000-04-04 14:38:59 +10001107{
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001108 static u_int packet_length = 0;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001109 u_int padlen, need;
Ben Lindstrom4a7714a2002-02-26 18:04:38 +00001110 u_char *macbuf, *cp, type;
Damien Millereccb9de2005-06-17 12:59:34 +10001111 u_int maclen, block_size;
Damien Miller33b13562000-04-04 14:38:59 +10001112 Enc *enc = NULL;
1113 Mac *mac = NULL;
1114 Comp *comp = NULL;
1115
Ben Lindstrom2d90e002001-04-04 02:00:54 +00001116 if (newkeys[MODE_IN] != NULL) {
1117 enc = &newkeys[MODE_IN]->enc;
1118 mac = &newkeys[MODE_IN]->mac;
1119 comp = &newkeys[MODE_IN]->comp;
Damien Miller33b13562000-04-04 14:38:59 +10001120 }
1121 maclen = mac && mac->enabled ? mac->mac_len : 0;
Damien Miller963f6b22002-02-19 15:21:23 +11001122 block_size = enc ? enc->block_size : 8;
Damien Miller33b13562000-04-04 14:38:59 +10001123
1124 if (packet_length == 0) {
1125 /*
1126 * check if input size is less than the cipher block size,
1127 * decrypt first block and extract length of incoming packet
1128 */
1129 if (buffer_len(&input) < block_size)
1130 return SSH_MSG_NONE;
1131 buffer_clear(&incoming_packet);
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001132 cp = buffer_append_space(&incoming_packet, block_size);
Damien Miller963f6b22002-02-19 15:21:23 +11001133 cipher_crypt(&receive_context, cp, buffer_ptr(&input),
Damien Miller33b13562000-04-04 14:38:59 +10001134 block_size);
Ben Lindstrom4a7714a2002-02-26 18:04:38 +00001135 cp = buffer_ptr(&incoming_packet);
Damien Miller3f941882006-03-31 23:13:02 +11001136 packet_length = get_u32(cp);
Damien Miller33b13562000-04-04 14:38:59 +10001137 if (packet_length < 1 + 4 || packet_length > 256 * 1024) {
Darren Tuckera8151da2003-09-22 21:06:46 +10001138#ifdef PACKET_DEBUG
Damien Miller33b13562000-04-04 14:38:59 +10001139 buffer_dump(&incoming_packet);
Darren Tuckera8151da2003-09-22 21:06:46 +10001140#endif
Ben Lindstrom0cc2a472002-11-09 15:41:39 +00001141 packet_disconnect("Bad packet length %u.", packet_length);
Damien Miller33b13562000-04-04 14:38:59 +10001142 }
Ben Lindstrom0cc2a472002-11-09 15:41:39 +00001143 DBG(debug("input: packet len %u", packet_length+4));
Damien Miller33b13562000-04-04 14:38:59 +10001144 buffer_consume(&input, block_size);
1145 }
1146 /* we have a partial packet of block_size bytes */
1147 need = 4 + packet_length - block_size;
1148 DBG(debug("partial packet %d, need %d, maclen %d", block_size,
1149 need, maclen));
1150 if (need % block_size != 0)
1151 fatal("padding error: need %d block %d mod %d",
1152 need, block_size, need % block_size);
1153 /*
1154 * check if the entire packet has been received and
1155 * decrypt into incoming_packet
1156 */
1157 if (buffer_len(&input) < need + maclen)
1158 return SSH_MSG_NONE;
1159#ifdef PACKET_DEBUG
1160 fprintf(stderr, "read_poll enc/full: ");
1161 buffer_dump(&input);
1162#endif
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001163 cp = buffer_append_space(&incoming_packet, need);
Damien Miller963f6b22002-02-19 15:21:23 +11001164 cipher_crypt(&receive_context, cp, buffer_ptr(&input), need);
Damien Miller33b13562000-04-04 14:38:59 +10001165 buffer_consume(&input, need);
1166 /*
1167 * compute MAC over seqnr and packet,
1168 * increment sequence number for incoming packet
1169 */
Damien Miller4af51302000-04-16 11:18:38 +10001170 if (mac && mac->enabled) {
Damien Millera5539d22003-04-09 20:50:06 +10001171 macbuf = mac_compute(mac, p_read.seqnr,
Damien Miller708d21c2002-01-22 23:18:15 +11001172 buffer_ptr(&incoming_packet),
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001173 buffer_len(&incoming_packet));
Damien Miller33b13562000-04-04 14:38:59 +10001174 if (memcmp(macbuf, buffer_ptr(&input), mac->mac_len) != 0)
Damien Miller874d77b2000-10-14 16:23:11 +11001175 packet_disconnect("Corrupted MAC on input.");
Damien Millera5539d22003-04-09 20:50:06 +10001176 DBG(debug("MAC #%d ok", p_read.seqnr));
Damien Miller33b13562000-04-04 14:38:59 +10001177 buffer_consume(&input, mac->mac_len);
1178 }
Damien Miller278f9072001-12-21 15:00:19 +11001179 if (seqnr_p != NULL)
Damien Millera5539d22003-04-09 20:50:06 +10001180 *seqnr_p = p_read.seqnr;
1181 if (++p_read.seqnr == 0)
Damien Miller996acd22003-04-09 20:59:48 +10001182 logit("incoming seqnr wraps around");
Damien Millera5539d22003-04-09 20:50:06 +10001183 if (++p_read.packets == 0)
1184 if (!(datafellows & SSH_BUG_NOREKEY))
1185 fatal("XXX too many packets with same key");
1186 p_read.blocks += (packet_length + 4) / block_size;
Damien Miller33b13562000-04-04 14:38:59 +10001187
1188 /* get padlen */
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001189 cp = buffer_ptr(&incoming_packet);
Ben Lindstrom4a7714a2002-02-26 18:04:38 +00001190 padlen = cp[4];
Damien Miller33b13562000-04-04 14:38:59 +10001191 DBG(debug("input: padlen %d", padlen));
1192 if (padlen < 4)
1193 packet_disconnect("Corrupted padlen %d on input.", padlen);
1194
1195 /* skip packet size + padlen, discard padding */
1196 buffer_consume(&incoming_packet, 4 + 1);
1197 buffer_consume_end(&incoming_packet, padlen);
1198
1199 DBG(debug("input: len before de-compress %d", buffer_len(&incoming_packet)));
1200 if (comp && comp->enabled) {
1201 buffer_clear(&compression_buffer);
1202 buffer_uncompress(&incoming_packet, &compression_buffer);
1203 buffer_clear(&incoming_packet);
1204 buffer_append(&incoming_packet, buffer_ptr(&compression_buffer),
1205 buffer_len(&compression_buffer));
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001206 DBG(debug("input: len after de-compress %d",
1207 buffer_len(&incoming_packet)));
Damien Miller33b13562000-04-04 14:38:59 +10001208 }
1209 /*
1210 * get packet type, implies consume.
1211 * return length of payload (without type field)
1212 */
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001213 type = buffer_get_char(&incoming_packet);
Darren Tuckerb2694f02004-11-05 20:27:54 +11001214 if (type < SSH2_MSG_MIN || type >= SSH2_MSG_LOCAL_MIN)
1215 packet_disconnect("Invalid ssh2 packet type: %d", type);
Ben Lindstrom2d90e002001-04-04 02:00:54 +00001216 if (type == SSH2_MSG_NEWKEYS)
1217 set_newkeys(MODE_IN);
Damien Miller9786e6e2005-07-26 21:54:56 +10001218 else if (type == SSH2_MSG_USERAUTH_SUCCESS && !server_side)
1219 packet_enable_delayed_compress();
Damien Miller33b13562000-04-04 14:38:59 +10001220#ifdef PACKET_DEBUG
Ben Lindstrom204e4882001-03-05 06:47:00 +00001221 fprintf(stderr, "read/plain[%d]:\r\n", type);
Damien Miller33b13562000-04-04 14:38:59 +10001222 buffer_dump(&incoming_packet);
1223#endif
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001224 /* reset for next packet */
1225 packet_length = 0;
1226 return type;
Damien Miller33b13562000-04-04 14:38:59 +10001227}
1228
1229int
Damien Millerdff50992002-01-22 23:16:32 +11001230packet_read_poll_seqnr(u_int32_t *seqnr_p)
Damien Miller33b13562000-04-04 14:38:59 +10001231{
Ben Lindstrom3f584742002-06-23 21:49:25 +00001232 u_int reason, seqnr;
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001233 u_char type;
Damien Miller33b13562000-04-04 14:38:59 +10001234 char *msg;
Damien Miller33b13562000-04-04 14:38:59 +10001235
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001236 for (;;) {
1237 if (compat20) {
Damien Millerdff50992002-01-22 23:16:32 +11001238 type = packet_read_poll2(seqnr_p);
Darren Tucker136e56f2008-06-08 12:49:30 +10001239 if (type) {
1240 keep_alive_timeouts = 0;
Damien Miller33b13562000-04-04 14:38:59 +10001241 DBG(debug("received packet type %d", type));
Darren Tucker136e56f2008-06-08 12:49:30 +10001242 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001243 switch (type) {
Damien Miller5ed3d572008-02-10 22:27:47 +11001244 case SSH2_MSG_IGNORE:
Damien Miller58226f62008-03-07 18:33:30 +11001245 debug3("Received SSH2_MSG_IGNORE");
Damien Miller5ed3d572008-02-10 22:27:47 +11001246 break;
Damien Miller33b13562000-04-04 14:38:59 +10001247 case SSH2_MSG_DEBUG:
1248 packet_get_char();
1249 msg = packet_get_string(NULL);
1250 debug("Remote: %.900s", msg);
1251 xfree(msg);
1252 msg = packet_get_string(NULL);
1253 xfree(msg);
1254 break;
1255 case SSH2_MSG_DISCONNECT:
1256 reason = packet_get_int();
1257 msg = packet_get_string(NULL);
Damien Miller996acd22003-04-09 20:59:48 +10001258 logit("Received disconnect from %s: %u: %.400s",
Ben Lindstrom3f584742002-06-23 21:49:25 +00001259 get_remote_ipaddr(), reason, msg);
Damien Miller33b13562000-04-04 14:38:59 +10001260 xfree(msg);
Darren Tucker3e33cec2003-10-02 16:12:36 +10001261 cleanup_exit(255);
Damien Miller33b13562000-04-04 14:38:59 +10001262 break;
Damien Miller659811f2002-01-22 23:23:11 +11001263 case SSH2_MSG_UNIMPLEMENTED:
1264 seqnr = packet_get_int();
Ben Lindstrom3f584742002-06-23 21:49:25 +00001265 debug("Received SSH2_MSG_UNIMPLEMENTED for %u",
1266 seqnr);
Damien Miller5ed3d572008-02-10 22:27:47 +11001267 break;
Damien Miller33b13562000-04-04 14:38:59 +10001268 default:
1269 return type;
Kevin Stevesef4eea92001-02-05 12:42:17 +00001270 }
Damien Miller33b13562000-04-04 14:38:59 +10001271 } else {
Damien Millerdff50992002-01-22 23:16:32 +11001272 type = packet_read_poll1();
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001273 switch (type) {
Damien Miller33b13562000-04-04 14:38:59 +10001274 case SSH_MSG_IGNORE:
1275 break;
1276 case SSH_MSG_DEBUG:
1277 msg = packet_get_string(NULL);
1278 debug("Remote: %.900s", msg);
1279 xfree(msg);
1280 break;
1281 case SSH_MSG_DISCONNECT:
1282 msg = packet_get_string(NULL);
Damien Miller996acd22003-04-09 20:59:48 +10001283 logit("Received disconnect from %s: %.400s",
Ben Lindstrom3f584742002-06-23 21:49:25 +00001284 get_remote_ipaddr(), msg);
Darren Tucker3e33cec2003-10-02 16:12:36 +10001285 cleanup_exit(255);
Damien Miller33b13562000-04-04 14:38:59 +10001286 break;
1287 default:
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001288 if (type)
Damien Miller33b13562000-04-04 14:38:59 +10001289 DBG(debug("received packet type %d", type));
1290 return type;
Kevin Stevesef4eea92001-02-05 12:42:17 +00001291 }
Damien Miller33b13562000-04-04 14:38:59 +10001292 }
1293 }
1294}
1295
Damien Miller278f9072001-12-21 15:00:19 +11001296int
Damien Millerdff50992002-01-22 23:16:32 +11001297packet_read_poll(void)
Damien Miller278f9072001-12-21 15:00:19 +11001298{
Damien Millerdff50992002-01-22 23:16:32 +11001299 return packet_read_poll_seqnr(NULL);
Damien Miller278f9072001-12-21 15:00:19 +11001300}
1301
Damien Miller5428f641999-11-25 11:54:57 +11001302/*
1303 * Buffers the given amount of input characters. This is intended to be used
1304 * together with packet_read_poll.
1305 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001306
1307void
Ben Lindstrom46c16222000-12-22 01:43:59 +00001308packet_process_incoming(const char *buf, u_int len)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001309{
Damien Miller95def091999-11-25 00:26:21 +11001310 buffer_append(&input, buf, len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001311}
1312
1313/* Returns a character from the packet. */
1314
Ben Lindstrom46c16222000-12-22 01:43:59 +00001315u_int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001316packet_get_char(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001317{
Damien Miller95def091999-11-25 00:26:21 +11001318 char ch;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001319
Damien Miller95def091999-11-25 00:26:21 +11001320 buffer_get(&incoming_packet, &ch, 1);
Ben Lindstrom46c16222000-12-22 01:43:59 +00001321 return (u_char) ch;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001322}
1323
1324/* Returns an integer from the packet data. */
1325
Ben Lindstrom46c16222000-12-22 01:43:59 +00001326u_int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001327packet_get_int(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001328{
Damien Miller95def091999-11-25 00:26:21 +11001329 return buffer_get_int(&incoming_packet);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001330}
1331
Damien Miller5428f641999-11-25 11:54:57 +11001332/*
1333 * Returns an arbitrary precision integer from the packet data. The integer
1334 * must have been initialized before this call.
1335 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001336
1337void
Damien Millerd432ccf2002-01-22 23:14:44 +11001338packet_get_bignum(BIGNUM * value)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001339{
Damien Miller76e1e362002-01-22 23:15:57 +11001340 buffer_get_bignum(&incoming_packet, value);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001341}
1342
Damien Miller33b13562000-04-04 14:38:59 +10001343void
Damien Millerd432ccf2002-01-22 23:14:44 +11001344packet_get_bignum2(BIGNUM * value)
Damien Miller33b13562000-04-04 14:38:59 +10001345{
Damien Miller76e1e362002-01-22 23:15:57 +11001346 buffer_get_bignum2(&incoming_packet, value);
Damien Miller33b13562000-04-04 14:38:59 +10001347}
1348
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001349void *
Damien Millereccb9de2005-06-17 12:59:34 +10001350packet_get_raw(u_int *length_ptr)
Damien Miller33b13562000-04-04 14:38:59 +10001351{
Damien Millereccb9de2005-06-17 12:59:34 +10001352 u_int bytes = buffer_len(&incoming_packet);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001353
Damien Miller33b13562000-04-04 14:38:59 +10001354 if (length_ptr != NULL)
1355 *length_ptr = bytes;
1356 return buffer_ptr(&incoming_packet);
1357}
1358
Damien Miller4af51302000-04-16 11:18:38 +10001359int
1360packet_remaining(void)
1361{
1362 return buffer_len(&incoming_packet);
1363}
1364
Damien Miller5428f641999-11-25 11:54:57 +11001365/*
1366 * Returns a string from the packet data. The string is allocated using
1367 * xmalloc; it is the responsibility of the calling program to free it when
1368 * no longer needed. The length_ptr argument may be NULL, or point to an
1369 * integer into which the length of the string is stored.
1370 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001371
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001372void *
Ben Lindstrom46c16222000-12-22 01:43:59 +00001373packet_get_string(u_int *length_ptr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001374{
Damien Miller95def091999-11-25 00:26:21 +11001375 return buffer_get_string(&incoming_packet, length_ptr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001376}
1377
Damien Millerdb255ca2008-05-19 14:59:37 +10001378void *
1379packet_get_string_ptr(u_int *length_ptr)
1380{
1381 return buffer_get_string_ptr(&incoming_packet, length_ptr);
1382}
1383
Damien Miller5428f641999-11-25 11:54:57 +11001384/*
1385 * Sends a diagnostic message from the server to the client. This message
1386 * can be sent at any time (but not while constructing another message). The
1387 * message is printed immediately, but only if the client is being executed
1388 * in verbose mode. These messages are primarily intended to ease debugging
1389 * authentication problems. The length of the formatted message must not
1390 * exceed 1024 bytes. This will automatically call packet_write_wait.
1391 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001392
1393void
Damien Miller95def091999-11-25 00:26:21 +11001394packet_send_debug(const char *fmt,...)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001395{
Damien Miller95def091999-11-25 00:26:21 +11001396 char buf[1024];
1397 va_list args;
1398
Ben Lindstroma14ee472000-12-07 01:24:58 +00001399 if (compat20 && (datafellows & SSH_BUG_DEBUG))
1400 return;
1401
Damien Miller95def091999-11-25 00:26:21 +11001402 va_start(args, fmt);
1403 vsnprintf(buf, sizeof(buf), fmt, args);
1404 va_end(args);
1405
Damien Miller7c8af4f2000-05-01 08:24:07 +10001406 if (compat20) {
1407 packet_start(SSH2_MSG_DEBUG);
1408 packet_put_char(0); /* bool: always display */
1409 packet_put_cstring(buf);
1410 packet_put_cstring("");
1411 } else {
1412 packet_start(SSH_MSG_DEBUG);
1413 packet_put_cstring(buf);
1414 }
Damien Miller95def091999-11-25 00:26:21 +11001415 packet_send();
1416 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001417}
1418
Damien Miller5428f641999-11-25 11:54:57 +11001419/*
1420 * Logs the error plus constructs and sends a disconnect packet, closes the
1421 * connection, and exits. This function never returns. The error message
1422 * should not contain a newline. The length of the formatted message must
1423 * not exceed 1024 bytes.
1424 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001425
1426void
Damien Miller95def091999-11-25 00:26:21 +11001427packet_disconnect(const char *fmt,...)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001428{
Damien Miller95def091999-11-25 00:26:21 +11001429 char buf[1024];
1430 va_list args;
1431 static int disconnecting = 0;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001432
Damien Miller95def091999-11-25 00:26:21 +11001433 if (disconnecting) /* Guard against recursive invocations. */
1434 fatal("packet_disconnect called recursively.");
1435 disconnecting = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001436
Damien Miller5428f641999-11-25 11:54:57 +11001437 /*
1438 * Format the message. Note that the caller must make sure the
1439 * message is of limited size.
1440 */
Damien Miller95def091999-11-25 00:26:21 +11001441 va_start(args, fmt);
1442 vsnprintf(buf, sizeof(buf), fmt, args);
1443 va_end(args);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001444
Ben Lindstrom9bda7ae2002-11-09 15:46:24 +00001445 /* Display the error locally */
Damien Miller996acd22003-04-09 20:59:48 +10001446 logit("Disconnecting: %.100s", buf);
Ben Lindstrom9bda7ae2002-11-09 15:46:24 +00001447
Damien Miller95def091999-11-25 00:26:21 +11001448 /* Send the disconnect message to the other side, and wait for it to get sent. */
Damien Miller33b13562000-04-04 14:38:59 +10001449 if (compat20) {
1450 packet_start(SSH2_MSG_DISCONNECT);
1451 packet_put_int(SSH2_DISCONNECT_PROTOCOL_ERROR);
1452 packet_put_cstring(buf);
1453 packet_put_cstring("");
1454 } else {
1455 packet_start(SSH_MSG_DISCONNECT);
Ben Lindstrom664408d2001-06-09 01:42:01 +00001456 packet_put_cstring(buf);
Damien Miller33b13562000-04-04 14:38:59 +10001457 }
Damien Miller95def091999-11-25 00:26:21 +11001458 packet_send();
1459 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001460
Damien Miller95def091999-11-25 00:26:21 +11001461 /* Stop listening for connections. */
Ben Lindstrom601e4362001-06-21 03:19:23 +00001462 channel_close_all();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001463
Damien Miller95def091999-11-25 00:26:21 +11001464 /* Close the connection. */
1465 packet_close();
Darren Tucker3e33cec2003-10-02 16:12:36 +10001466 cleanup_exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001467}
1468
Damien Miller5428f641999-11-25 11:54:57 +11001469/* Checks if there is any buffered output, and tries to write some of the output. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001470
1471void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001472packet_write_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001473{
Damien Miller95def091999-11-25 00:26:21 +11001474 int len = buffer_len(&output);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001475
Damien Miller95def091999-11-25 00:26:21 +11001476 if (len > 0) {
1477 len = write(connection_out, buffer_ptr(&output), len);
Damien Millerd874fa52008-07-05 09:40:56 +10001478 if (len == -1) {
1479 if (errno == EINTR || errno == EAGAIN ||
1480 errno == EWOULDBLOCK)
Damien Miller95def091999-11-25 00:26:21 +11001481 return;
Damien Millerd874fa52008-07-05 09:40:56 +10001482 fatal("Write failed: %.100s", strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +11001483 }
Damien Millerd874fa52008-07-05 09:40:56 +10001484 if (len == 0)
1485 fatal("Write connection closed");
Damien Miller95def091999-11-25 00:26:21 +11001486 buffer_consume(&output, len);
1487 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001488}
1489
Damien Millerd874fa52008-07-05 09:40:56 +10001490
Damien Miller5428f641999-11-25 11:54:57 +11001491/*
1492 * Calls packet_write_poll repeatedly until all pending output data has been
1493 * written.
1494 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001495
1496void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001497packet_write_wait(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001498{
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001499 fd_set *setp;
Darren Tucker3fc464e2008-06-13 06:42:45 +10001500 int ret, ms_remain;
1501 struct timeval start, timeout, *timeoutp = NULL;
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001502
Damien Miller07d86be2006-03-26 14:19:21 +11001503 setp = (fd_set *)xcalloc(howmany(connection_out + 1, NFDBITS),
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001504 sizeof(fd_mask));
Damien Miller95def091999-11-25 00:26:21 +11001505 packet_write_poll();
1506 while (packet_have_data_to_write()) {
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001507 memset(setp, 0, howmany(connection_out + 1, NFDBITS) *
1508 sizeof(fd_mask));
1509 FD_SET(connection_out, setp);
Darren Tucker3fc464e2008-06-13 06:42:45 +10001510
1511 if (packet_timeout_ms > 0) {
1512 ms_remain = packet_timeout_ms;
1513 timeoutp = &timeout;
1514 }
1515 for (;;) {
1516 if (packet_timeout_ms != -1) {
1517 ms_to_timeval(&timeout, ms_remain);
1518 gettimeofday(&start, NULL);
1519 }
1520 if ((ret = select(connection_out + 1, NULL, setp,
1521 NULL, timeoutp)) >= 0)
1522 break;
Damien Millerd8968ad2008-07-04 23:10:49 +10001523 if (errno != EAGAIN && errno != EINTR &&
1524 errno != EWOULDBLOCK)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001525 break;
1526 if (packet_timeout_ms == -1)
1527 continue;
1528 ms_subtract_diff(&start, &ms_remain);
1529 if (ms_remain <= 0) {
1530 ret = 0;
1531 break;
1532 }
1533 }
1534 if (ret == 0) {
1535 logit("Connection to %.200s timed out while "
1536 "waiting to write", get_remote_ipaddr());
1537 cleanup_exit(255);
1538 }
Damien Miller95def091999-11-25 00:26:21 +11001539 packet_write_poll();
1540 }
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001541 xfree(setp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001542}
1543
1544/* Returns true if there is buffered data to write to the connection. */
1545
1546int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001547packet_have_data_to_write(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001548{
Damien Miller95def091999-11-25 00:26:21 +11001549 return buffer_len(&output) != 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001550}
1551
1552/* Returns true if there is not too much data to write to the connection. */
1553
1554int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001555packet_not_very_much_data_to_write(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001556{
Damien Miller95def091999-11-25 00:26:21 +11001557 if (interactive_mode)
1558 return buffer_len(&output) < 16384;
1559 else
1560 return buffer_len(&output) < 128 * 1024;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001561}
1562
Ben Lindstromc8a49d72003-04-02 15:18:22 +00001563
Ben Lindstromfaa1ea82002-12-23 02:42:52 +00001564static void
Ben Lindstroma7433982002-12-23 02:41:41 +00001565packet_set_tos(int interactive)
1566{
Damien Miller5924ceb2003-11-22 15:02:42 +11001567#if defined(IP_TOS) && !defined(IP_TOS_IS_BROKEN)
Ben Lindstroma7433982002-12-23 02:41:41 +00001568 int tos = interactive ? IPTOS_LOWDELAY : IPTOS_THROUGHPUT;
1569
1570 if (!packet_connection_is_on_socket() ||
1571 !packet_connection_is_ipv4())
1572 return;
1573 if (setsockopt(connection_in, IPPROTO_IP, IP_TOS, &tos,
1574 sizeof(tos)) < 0)
1575 error("setsockopt IP_TOS %d: %.100s:",
1576 tos, strerror(errno));
Ben Lindstromc8a49d72003-04-02 15:18:22 +00001577#endif
Damien Miller5924ceb2003-11-22 15:02:42 +11001578}
Ben Lindstroma7433982002-12-23 02:41:41 +00001579
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001580/* Informs that the current session is interactive. Sets IP flags for that. */
1581
1582void
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001583packet_set_interactive(int interactive)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001584{
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001585 static int called = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001586
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001587 if (called)
1588 return;
1589 called = 1;
1590
Damien Miller95def091999-11-25 00:26:21 +11001591 /* Record that we are in interactive mode. */
1592 interactive_mode = interactive;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001593
Damien Miller34132e52000-01-14 15:45:46 +11001594 /* Only set socket options if using a socket. */
1595 if (!packet_connection_is_on_socket())
Ben Lindstrom93b6b772003-04-27 17:55:33 +00001596 return;
Damien Miller314dd4b2006-03-15 12:05:22 +11001597 set_nodelay(connection_in);
Ben Lindstroma7433982002-12-23 02:41:41 +00001598 packet_set_tos(interactive);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001599}
1600
1601/* Returns true if the current connection is interactive. */
1602
1603int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001604packet_is_interactive(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001605{
Damien Miller95def091999-11-25 00:26:21 +11001606 return interactive_mode;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001607}
Damien Miller6162d121999-11-21 13:23:52 +11001608
Darren Tucker1f8311c2004-05-13 16:39:33 +10001609int
Darren Tucker502d3842003-06-28 12:38:01 +10001610packet_set_maxsize(u_int s)
Damien Miller6162d121999-11-21 13:23:52 +11001611{
Damien Miller95def091999-11-25 00:26:21 +11001612 static int called = 0;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001613
Damien Miller95def091999-11-25 00:26:21 +11001614 if (called) {
Damien Miller996acd22003-04-09 20:59:48 +10001615 logit("packet_set_maxsize: called twice: old %d new %d",
Damien Miller33b13562000-04-04 14:38:59 +10001616 max_packet_size, s);
Damien Miller95def091999-11-25 00:26:21 +11001617 return -1;
1618 }
1619 if (s < 4 * 1024 || s > 1024 * 1024) {
Damien Miller996acd22003-04-09 20:59:48 +10001620 logit("packet_set_maxsize: bad size %d", s);
Damien Miller95def091999-11-25 00:26:21 +11001621 return -1;
1622 }
Ben Lindstromae3de4b2001-10-03 17:10:17 +00001623 called = 1;
Ben Lindstrom16d45b32001-06-13 04:39:18 +00001624 debug("packet_set_maxsize: setting to %d", s);
Damien Miller95def091999-11-25 00:26:21 +11001625 max_packet_size = s;
1626 return s;
Damien Miller6162d121999-11-21 13:23:52 +11001627}
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001628
Damien Miller9f643902001-11-12 11:02:52 +11001629/* roundup current message to pad bytes */
1630void
1631packet_add_padding(u_char pad)
1632{
1633 extra_pad = pad;
1634}
1635
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001636/*
1637 * 9.2. Ignored Data Message
Ben Lindstroma3700052001-04-05 23:26:32 +00001638 *
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001639 * byte SSH_MSG_IGNORE
1640 * string data
Ben Lindstroma3700052001-04-05 23:26:32 +00001641 *
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001642 * All implementations MUST understand (and ignore) this message at any
1643 * time (after receiving the protocol version). No implementation is
1644 * required to send them. This message can be used as an additional
1645 * protection measure against advanced traffic analysis techniques.
1646 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001647void
1648packet_send_ignore(int nbytes)
1649{
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001650 u_int32_t rnd = 0;
Ben Lindstrome229b252001-03-05 06:28:06 +00001651 int i;
1652
1653 packet_start(compat20 ? SSH2_MSG_IGNORE : SSH_MSG_IGNORE);
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001654 packet_put_int(nbytes);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001655 for (i = 0; i < nbytes; i++) {
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001656 if (i % 4 == 0)
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001657 rnd = arc4random();
Damien Miller8ba29fe2006-03-26 14:25:19 +11001658 packet_put_char((u_char)rnd & 0xff);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001659 rnd >>= 8;
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001660 }
1661}
Damien Millera5539d22003-04-09 20:50:06 +10001662
Darren Tucker1f8311c2004-05-13 16:39:33 +10001663#define MAX_PACKETS (1U<<31)
Damien Millera5539d22003-04-09 20:50:06 +10001664int
1665packet_need_rekeying(void)
1666{
1667 if (datafellows & SSH_BUG_NOREKEY)
1668 return 0;
1669 return
1670 (p_send.packets > MAX_PACKETS) ||
1671 (p_read.packets > MAX_PACKETS) ||
1672 (max_blocks_out && (p_send.blocks > max_blocks_out)) ||
1673 (max_blocks_in && (p_read.blocks > max_blocks_in));
1674}
1675
1676void
1677packet_set_rekey_limit(u_int32_t bytes)
1678{
1679 rekey_limit = bytes;
1680}
Damien Miller9786e6e2005-07-26 21:54:56 +10001681
1682void
1683packet_set_server(void)
1684{
1685 server_side = 1;
1686}
1687
1688void
1689packet_set_authenticated(void)
1690{
1691 after_authentication = 1;
1692}