blob: 8250b3bc8f7baf0e5e1f2e75ce9d10ff704bea5b [file] [log] [blame]
Damien Millere3476ed2006-07-24 14:13:33 +10001/* $OpenBSD: packet.c,v 1.137 2006/07/22 20:48:23 stevesk 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 Miller8ec8c3e2006-07-10 20:35:38 +100044#include <sys/socket.h>
45
46#include <netinet/in_systm.h>
47#include <netinet/in.h>
Damien Miller68f8e992006-03-15 11:24:12 +110048#include <netinet/ip.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100049
Darren Tucker39972492006-07-12 22:22:46 +100050#include <errno.h>
Darren Tucker5d196262006-07-12 22:15:16 +100051#include <stdarg.h>
Damien Millere3476ed2006-07-24 14:13:33 +100052#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100053#include <unistd.h>
Darren Tucker5d196262006-07-12 22:15:16 +100054
Damien Millerd4a8b7e1999-10-27 13:42:43 +100055#include "xmalloc.h"
56#include "buffer.h"
57#include "packet.h"
58#include "bufaux.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100059#include "crc32.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100060
61#include "compress.h"
62#include "deattack.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000063#include "channels.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100064
Damien Miller33b13562000-04-04 14:38:59 +100065#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000066#include "ssh1.h"
Damien Miller33b13562000-04-04 14:38:59 +100067#include "ssh2.h"
68
Damien Miller874d77b2000-10-14 16:23:11 +110069#include "cipher.h"
Damien Miller33b13562000-04-04 14:38:59 +100070#include "kex.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000071#include "mac.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000072#include "log.h"
73#include "canohost.h"
Damien Miller4d007762002-02-05 11:52:54 +110074#include "misc.h"
Ben Lindstrom402c6cc2002-06-21 00:43:42 +000075#include "ssh.h"
Damien Miller33b13562000-04-04 14:38:59 +100076
77#ifdef PACKET_DEBUG
78#define DBG(x) x
79#else
80#define DBG(x)
81#endif
82
Damien Miller5428f641999-11-25 11:54:57 +110083/*
84 * This variable contains the file descriptors used for communicating with
85 * the other side. connection_in is used for reading; connection_out for
86 * writing. These can be the same descriptor, in which case it is assumed to
87 * be a socket.
88 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100089static int connection_in = -1;
90static int connection_out = -1;
91
Damien Millerd4a8b7e1999-10-27 13:42:43 +100092/* Protocol flags for the remote side. */
Ben Lindstrom46c16222000-12-22 01:43:59 +000093static u_int remote_protocol_flags = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100094
95/* Encryption context for receiving data. This is only used for decryption. */
96static CipherContext receive_context;
Damien Miller95def091999-11-25 00:26:21 +110097
98/* Encryption context for sending data. This is only used for encryption. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100099static CipherContext send_context;
100
101/* Buffer for raw input data from the socket. */
Ben Lindstromf6027d32002-03-22 01:42:04 +0000102Buffer input;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000103
104/* Buffer for raw output data going to the socket. */
Ben Lindstromf6027d32002-03-22 01:42:04 +0000105Buffer output;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000106
107/* Buffer for the partial outgoing packet being constructed. */
108static Buffer outgoing_packet;
109
110/* Buffer for the incoming packet currently being processed. */
111static Buffer incoming_packet;
112
113/* Scratch buffer for packet compression/decompression. */
114static Buffer compression_buffer;
Ben Lindstromfb50cdf2001-04-05 23:20:46 +0000115static int compression_buffer_ready = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000116
117/* Flag indicating whether packet compression/decompression is enabled. */
118static int packet_compression = 0;
119
Damien Miller6162d121999-11-21 13:23:52 +1100120/* default maximum packet size */
Darren Tucker502d3842003-06-28 12:38:01 +1000121u_int max_packet_size = 32768;
Damien Miller6162d121999-11-21 13:23:52 +1100122
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000123/* Flag indicating whether this module has been initialized. */
124static int initialized = 0;
125
126/* Set to true if the connection is interactive. */
127static int interactive_mode = 0;
128
Damien Miller9786e6e2005-07-26 21:54:56 +1000129/* Set to true if we are the server side. */
130static int server_side = 0;
131
132/* Set to true if we are authenticated. */
133static int after_authentication = 0;
134
Damien Miller33b13562000-04-04 14:38:59 +1000135/* Session key information for Encryption and MAC */
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000136Newkeys *newkeys[MODE_MAX];
Damien Millera5539d22003-04-09 20:50:06 +1000137static struct packet_state {
138 u_int32_t seqnr;
139 u_int32_t packets;
140 u_int64_t blocks;
141} p_read, p_send;
142
143static u_int64_t max_blocks_in, max_blocks_out;
144static u_int32_t rekey_limit;
Damien Miller33b13562000-04-04 14:38:59 +1000145
Ben Lindstrom402c6cc2002-06-21 00:43:42 +0000146/* Session key for protocol v1 */
147static u_char ssh1_key[SSH_SESSION_KEY_LENGTH];
148static u_int ssh1_keylen;
149
Damien Miller9f643902001-11-12 11:02:52 +1100150/* roundup current message to extra_pad bytes */
151static u_char extra_pad = 0;
152
Damien Millera5539d22003-04-09 20:50:06 +1000153struct packet {
154 TAILQ_ENTRY(packet) next;
155 u_char type;
156 Buffer payload;
157};
158TAILQ_HEAD(, packet) outgoing;
159
Damien Miller5428f641999-11-25 11:54:57 +1100160/*
161 * Sets the descriptors used for communication. Disables encryption until
162 * packet_set_encryption_key is called.
163 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000164void
165packet_set_connection(int fd_in, int fd_out)
166{
Damien Miller874d77b2000-10-14 16:23:11 +1100167 Cipher *none = cipher_by_name("none");
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000168
Damien Miller874d77b2000-10-14 16:23:11 +1100169 if (none == NULL)
170 fatal("packet_set_connection: cannot load cipher 'none'");
Damien Miller95def091999-11-25 00:26:21 +1100171 connection_in = fd_in;
172 connection_out = fd_out;
Darren Tucker1f8311c2004-05-13 16:39:33 +1000173 cipher_init(&send_context, none, (const u_char *)"",
174 0, NULL, 0, CIPHER_ENCRYPT);
175 cipher_init(&receive_context, none, (const u_char *)"",
176 0, NULL, 0, CIPHER_DECRYPT);
Ben Lindstrom80c6d772001-06-05 21:09:18 +0000177 newkeys[MODE_IN] = newkeys[MODE_OUT] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100178 if (!initialized) {
179 initialized = 1;
180 buffer_init(&input);
181 buffer_init(&output);
182 buffer_init(&outgoing_packet);
183 buffer_init(&incoming_packet);
Damien Millera5539d22003-04-09 20:50:06 +1000184 TAILQ_INIT(&outgoing);
Damien Miller95def091999-11-25 00:26:21 +1100185 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000186}
187
Damien Miller34132e52000-01-14 15:45:46 +1100188/* Returns 1 if remote host is connected via socket, 0 if not. */
189
190int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000191packet_connection_is_on_socket(void)
Damien Miller34132e52000-01-14 15:45:46 +1100192{
193 struct sockaddr_storage from, to;
194 socklen_t fromlen, tolen;
195
196 /* filedescriptors in and out are the same, so it's a socket */
197 if (connection_in == connection_out)
198 return 1;
199 fromlen = sizeof(from);
200 memset(&from, 0, sizeof(from));
Damien Millerf052aaf2000-01-22 19:47:21 +1100201 if (getpeername(connection_in, (struct sockaddr *)&from, &fromlen) < 0)
Damien Miller34132e52000-01-14 15:45:46 +1100202 return 0;
203 tolen = sizeof(to);
204 memset(&to, 0, sizeof(to));
Damien Millerf052aaf2000-01-22 19:47:21 +1100205 if (getpeername(connection_out, (struct sockaddr *)&to, &tolen) < 0)
Damien Miller34132e52000-01-14 15:45:46 +1100206 return 0;
207 if (fromlen != tolen || memcmp(&from, &to, fromlen) != 0)
208 return 0;
209 if (from.ss_family != AF_INET && from.ss_family != AF_INET6)
210 return 0;
211 return 1;
212}
213
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000214/*
Ben Lindstromf6027d32002-03-22 01:42:04 +0000215 * Exports an IV from the CipherContext required to export the key
216 * state back from the unprivileged child to the privileged parent
217 * process.
218 */
219
220void
221packet_get_keyiv(int mode, u_char *iv, u_int len)
222{
223 CipherContext *cc;
224
225 if (mode == MODE_OUT)
226 cc = &send_context;
227 else
228 cc = &receive_context;
229
230 cipher_get_keyiv(cc, iv, len);
231}
232
233int
234packet_get_keycontext(int mode, u_char *dat)
235{
236 CipherContext *cc;
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000237
Ben Lindstromf6027d32002-03-22 01:42:04 +0000238 if (mode == MODE_OUT)
239 cc = &send_context;
240 else
241 cc = &receive_context;
242
243 return (cipher_get_keycontext(cc, dat));
244}
245
246void
247packet_set_keycontext(int mode, u_char *dat)
248{
249 CipherContext *cc;
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000250
Ben Lindstromf6027d32002-03-22 01:42:04 +0000251 if (mode == MODE_OUT)
252 cc = &send_context;
253 else
254 cc = &receive_context;
255
256 cipher_set_keycontext(cc, dat);
257}
258
259int
260packet_get_keyiv_len(int mode)
261{
262 CipherContext *cc;
263
264 if (mode == MODE_OUT)
265 cc = &send_context;
266 else
267 cc = &receive_context;
268
269 return (cipher_get_keyiv_len(cc));
270}
Damien Miller4f7becb2006-03-26 14:10:14 +1100271
Ben Lindstromf6027d32002-03-22 01:42:04 +0000272void
273packet_set_iv(int mode, u_char *dat)
274{
275 CipherContext *cc;
276
277 if (mode == MODE_OUT)
278 cc = &send_context;
279 else
280 cc = &receive_context;
281
282 cipher_set_keyiv(cc, dat);
283}
Damien Miller4f7becb2006-03-26 14:10:14 +1100284
Ben Lindstromf6027d32002-03-22 01:42:04 +0000285int
Damien Miller2b92d322003-06-11 22:05:06 +1000286packet_get_ssh1_cipher(void)
Ben Lindstromf6027d32002-03-22 01:42:04 +0000287{
288 return (cipher_get_number(receive_context.cipher));
289}
290
Damien Millera5539d22003-04-09 20:50:06 +1000291void
292packet_get_state(int mode, u_int32_t *seqnr, u_int64_t *blocks, u_int32_t *packets)
Ben Lindstromf6027d32002-03-22 01:42:04 +0000293{
Damien Millera5539d22003-04-09 20:50:06 +1000294 struct packet_state *state;
295
296 state = (mode == MODE_IN) ? &p_read : &p_send;
297 *seqnr = state->seqnr;
298 *blocks = state->blocks;
299 *packets = state->packets;
Ben Lindstromf6027d32002-03-22 01:42:04 +0000300}
301
302void
Damien Millera5539d22003-04-09 20:50:06 +1000303packet_set_state(int mode, u_int32_t seqnr, u_int64_t blocks, u_int32_t packets)
Ben Lindstromf6027d32002-03-22 01:42:04 +0000304{
Damien Millera5539d22003-04-09 20:50:06 +1000305 struct packet_state *state;
306
307 state = (mode == MODE_IN) ? &p_read : &p_send;
308 state->seqnr = seqnr;
309 state->blocks = blocks;
310 state->packets = packets;
Ben Lindstromf6027d32002-03-22 01:42:04 +0000311}
312
Damien Miller34132e52000-01-14 15:45:46 +1100313/* returns 1 if connection is via ipv4 */
314
315int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000316packet_connection_is_ipv4(void)
Damien Miller34132e52000-01-14 15:45:46 +1100317{
318 struct sockaddr_storage to;
Damien Miller6fe375d2000-01-23 09:38:00 +1100319 socklen_t tolen = sizeof(to);
Damien Miller34132e52000-01-14 15:45:46 +1100320
321 memset(&to, 0, sizeof(to));
322 if (getsockname(connection_out, (struct sockaddr *)&to, &tolen) < 0)
323 return 0;
Damien Milleraa100c52002-04-26 16:54:34 +1000324 if (to.ss_family == AF_INET)
325 return 1;
326#ifdef IPV4_IN_IPV6
Damien Millera8e06ce2003-11-21 23:48:55 +1100327 if (to.ss_family == AF_INET6 &&
Damien Milleraa100c52002-04-26 16:54:34 +1000328 IN6_IS_ADDR_V4MAPPED(&((struct sockaddr_in6 *)&to)->sin6_addr))
329 return 1;
330#endif
331 return 0;
Damien Miller34132e52000-01-14 15:45:46 +1100332}
333
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000334/* Sets the connection into non-blocking mode. */
335
336void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000337packet_set_nonblocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000338{
Damien Miller95def091999-11-25 00:26:21 +1100339 /* Set the socket into non-blocking mode. */
Damien Miller232711f2004-06-15 10:35:30 +1000340 set_nonblock(connection_in);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000341
Damien Miller232711f2004-06-15 10:35:30 +1000342 if (connection_out != connection_in)
343 set_nonblock(connection_out);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000344}
345
346/* Returns the socket used for reading. */
347
348int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000349packet_get_connection_in(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000350{
Damien Miller95def091999-11-25 00:26:21 +1100351 return connection_in;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000352}
353
354/* Returns the descriptor used for writing. */
355
356int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000357packet_get_connection_out(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000358{
Damien Miller95def091999-11-25 00:26:21 +1100359 return connection_out;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000360}
361
362/* Closes the connection and clears and frees internal data structures. */
363
364void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000365packet_close(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000366{
Damien Miller95def091999-11-25 00:26:21 +1100367 if (!initialized)
368 return;
369 initialized = 0;
370 if (connection_in == connection_out) {
371 shutdown(connection_out, SHUT_RDWR);
372 close(connection_out);
373 } else {
374 close(connection_in);
375 close(connection_out);
376 }
377 buffer_free(&input);
378 buffer_free(&output);
379 buffer_free(&outgoing_packet);
380 buffer_free(&incoming_packet);
Ben Lindstromfb50cdf2001-04-05 23:20:46 +0000381 if (compression_buffer_ready) {
Damien Miller95def091999-11-25 00:26:21 +1100382 buffer_free(&compression_buffer);
383 buffer_compress_uninit();
384 }
Damien Miller963f6b22002-02-19 15:21:23 +1100385 cipher_cleanup(&send_context);
386 cipher_cleanup(&receive_context);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000387}
388
389/* Sets remote side protocol flags. */
390
391void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000392packet_set_protocol_flags(u_int protocol_flags)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000393{
Damien Miller95def091999-11-25 00:26:21 +1100394 remote_protocol_flags = protocol_flags;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000395}
396
397/* Returns the remote protocol flags set earlier by the above function. */
398
Ben Lindstrom46c16222000-12-22 01:43:59 +0000399u_int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000400packet_get_protocol_flags(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000401{
Damien Miller95def091999-11-25 00:26:21 +1100402 return remote_protocol_flags;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000403}
404
Damien Miller5428f641999-11-25 11:54:57 +1100405/*
406 * Starts packet compression from the next packet on in both directions.
407 * Level is compression level 1 (fastest) - 9 (slow, best) as in gzip.
408 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000409
Ben Lindstrombba81212001-06-25 05:01:22 +0000410static void
411packet_init_compression(void)
Ben Lindstromfb50cdf2001-04-05 23:20:46 +0000412{
413 if (compression_buffer_ready == 1)
414 return;
415 compression_buffer_ready = 1;
416 buffer_init(&compression_buffer);
417}
418
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000419void
420packet_start_compression(int level)
421{
Ben Lindstrom80c6d772001-06-05 21:09:18 +0000422 if (packet_compression && !compat20)
Damien Miller95def091999-11-25 00:26:21 +1100423 fatal("Compression already enabled.");
424 packet_compression = 1;
Ben Lindstromfb50cdf2001-04-05 23:20:46 +0000425 packet_init_compression();
426 buffer_compress_init_send(level);
427 buffer_compress_init_recv();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000428}
429
Damien Miller5428f641999-11-25 11:54:57 +1100430/*
Damien Miller5428f641999-11-25 11:54:57 +1100431 * Causes any further packets to be encrypted using the given key. The same
432 * key is used for both sending and reception. However, both directions are
433 * encrypted independently of each other.
434 */
Ben Lindstrom402c6cc2002-06-21 00:43:42 +0000435
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000436void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000437packet_set_encryption_key(const u_char *key, u_int keylen,
Damien Miller874d77b2000-10-14 16:23:11 +1100438 int number)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000439{
Damien Miller874d77b2000-10-14 16:23:11 +1100440 Cipher *cipher = cipher_by_number(number);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000441
Damien Miller874d77b2000-10-14 16:23:11 +1100442 if (cipher == NULL)
443 fatal("packet_set_encryption_key: unknown cipher number %d", number);
Damien Miller33b13562000-04-04 14:38:59 +1000444 if (keylen < 20)
Damien Miller874d77b2000-10-14 16:23:11 +1100445 fatal("packet_set_encryption_key: keylen too small: %d", keylen);
Ben Lindstrom402c6cc2002-06-21 00:43:42 +0000446 if (keylen > SSH_SESSION_KEY_LENGTH)
447 fatal("packet_set_encryption_key: keylen too big: %d", keylen);
448 memcpy(ssh1_key, key, keylen);
449 ssh1_keylen = keylen;
Damien Miller963f6b22002-02-19 15:21:23 +1100450 cipher_init(&send_context, cipher, key, keylen, NULL, 0, CIPHER_ENCRYPT);
451 cipher_init(&receive_context, cipher, key, keylen, NULL, 0, CIPHER_DECRYPT);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000452}
453
Ben Lindstrom402c6cc2002-06-21 00:43:42 +0000454u_int
455packet_get_encryption_key(u_char *key)
456{
457 if (key == NULL)
458 return (ssh1_keylen);
459 memcpy(key, ssh1_key, ssh1_keylen);
460 return (ssh1_keylen);
461}
462
Ben Lindstrom80c6d772001-06-05 21:09:18 +0000463/* Start constructing a packet to send. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000464void
Ben Lindstrom80c6d772001-06-05 21:09:18 +0000465packet_start(u_char type)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000466{
Ben Lindstrom80c6d772001-06-05 21:09:18 +0000467 u_char buf[9];
468 int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000469
Ben Lindstrom204e4882001-03-05 06:47:00 +0000470 DBG(debug("packet_start[%d]", type));
Ben Lindstrom80c6d772001-06-05 21:09:18 +0000471 len = compat20 ? 6 : 9;
472 memset(buf, 0, len - 1);
473 buf[len - 1] = type;
474 buffer_clear(&outgoing_packet);
475 buffer_append(&outgoing_packet, buf, len);
Damien Miller33b13562000-04-04 14:38:59 +1000476}
477
Ben Lindstrom80c6d772001-06-05 21:09:18 +0000478/* Append payload. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000479void
480packet_put_char(int value)
481{
Damien Miller95def091999-11-25 00:26:21 +1100482 char ch = value;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000483
Damien Miller95def091999-11-25 00:26:21 +1100484 buffer_append(&outgoing_packet, &ch, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000485}
Damien Miller4f7becb2006-03-26 14:10:14 +1100486
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000487void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000488packet_put_int(u_int value)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000489{
Damien Miller95def091999-11-25 00:26:21 +1100490 buffer_put_int(&outgoing_packet, value);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000491}
Damien Miller4f7becb2006-03-26 14:10:14 +1100492
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000493void
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100494packet_put_string(const void *buf, u_int len)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000495{
Damien Miller95def091999-11-25 00:26:21 +1100496 buffer_put_string(&outgoing_packet, buf, len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000497}
Damien Miller4f7becb2006-03-26 14:10:14 +1100498
Damien Miller33b13562000-04-04 14:38:59 +1000499void
500packet_put_cstring(const char *str)
501{
Ben Lindstrom664408d2001-06-09 01:42:01 +0000502 buffer_put_cstring(&outgoing_packet, str);
Damien Miller33b13562000-04-04 14:38:59 +1000503}
Damien Miller4f7becb2006-03-26 14:10:14 +1100504
Damien Miller33b13562000-04-04 14:38:59 +1000505void
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100506packet_put_raw(const void *buf, u_int len)
Damien Miller33b13562000-04-04 14:38:59 +1000507{
508 buffer_append(&outgoing_packet, buf, len);
509}
Damien Miller4f7becb2006-03-26 14:10:14 +1100510
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000511void
Damien Miller95def091999-11-25 00:26:21 +1100512packet_put_bignum(BIGNUM * value)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000513{
Damien Miller95def091999-11-25 00:26:21 +1100514 buffer_put_bignum(&outgoing_packet, value);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000515}
Damien Miller4f7becb2006-03-26 14:10:14 +1100516
Damien Miller33b13562000-04-04 14:38:59 +1000517void
518packet_put_bignum2(BIGNUM * value)
519{
520 buffer_put_bignum2(&outgoing_packet, value);
521}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000522
Damien Miller5428f641999-11-25 11:54:57 +1100523/*
524 * Finalizes and sends the packet. If the encryption key has been set,
525 * encrypts the packet before sending.
526 */
Damien Miller95def091999-11-25 00:26:21 +1100527
Ben Lindstrombba81212001-06-25 05:01:22 +0000528static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000529packet_send1(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000530{
Ben Lindstrom4a7714a2002-02-26 18:04:38 +0000531 u_char buf[8], *cp;
Damien Miller95def091999-11-25 00:26:21 +1100532 int i, padding, len;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000533 u_int checksum;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000534 u_int32_t rnd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000535
Damien Miller5428f641999-11-25 11:54:57 +1100536 /*
537 * If using packet compression, compress the payload of the outgoing
538 * packet.
539 */
Damien Miller95def091999-11-25 00:26:21 +1100540 if (packet_compression) {
541 buffer_clear(&compression_buffer);
542 /* Skip padding. */
543 buffer_consume(&outgoing_packet, 8);
544 /* padding */
545 buffer_append(&compression_buffer, "\0\0\0\0\0\0\0\0", 8);
546 buffer_compress(&outgoing_packet, &compression_buffer);
547 buffer_clear(&outgoing_packet);
548 buffer_append(&outgoing_packet, buffer_ptr(&compression_buffer),
Damien Miller9f0f5c62001-12-21 14:45:46 +1100549 buffer_len(&compression_buffer));
Damien Miller95def091999-11-25 00:26:21 +1100550 }
551 /* Compute packet length without padding (add checksum, remove padding). */
552 len = buffer_len(&outgoing_packet) + 4 - 8;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000553
Damien Millere247cc42000-05-07 12:03:14 +1000554 /* Insert padding. Initialized to zero in packet_start1() */
Damien Miller95def091999-11-25 00:26:21 +1100555 padding = 8 - len % 8;
Damien Miller963f6b22002-02-19 15:21:23 +1100556 if (!send_context.plaintext) {
Damien Miller95def091999-11-25 00:26:21 +1100557 cp = buffer_ptr(&outgoing_packet);
558 for (i = 0; i < padding; i++) {
559 if (i % 4 == 0)
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000560 rnd = arc4random();
561 cp[7 - i] = rnd & 0xff;
562 rnd >>= 8;
Damien Miller95def091999-11-25 00:26:21 +1100563 }
564 }
565 buffer_consume(&outgoing_packet, 8 - padding);
566
567 /* Add check bytes. */
Damien Miller708d21c2002-01-22 23:18:15 +1100568 checksum = ssh_crc32(buffer_ptr(&outgoing_packet),
Damien Millerad833b32000-08-23 10:46:23 +1000569 buffer_len(&outgoing_packet));
Damien Miller3f941882006-03-31 23:13:02 +1100570 put_u32(buf, checksum);
Damien Miller95def091999-11-25 00:26:21 +1100571 buffer_append(&outgoing_packet, buf, 4);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000572
573#ifdef PACKET_DEBUG
Damien Miller95def091999-11-25 00:26:21 +1100574 fprintf(stderr, "packet_send plain: ");
575 buffer_dump(&outgoing_packet);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000576#endif
577
Damien Miller95def091999-11-25 00:26:21 +1100578 /* Append to output. */
Damien Miller3f941882006-03-31 23:13:02 +1100579 put_u32(buf, len);
Damien Miller95def091999-11-25 00:26:21 +1100580 buffer_append(&output, buf, 4);
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100581 cp = buffer_append_space(&output, buffer_len(&outgoing_packet));
Damien Miller963f6b22002-02-19 15:21:23 +1100582 cipher_crypt(&send_context, cp, buffer_ptr(&outgoing_packet),
Damien Miller9f0f5c62001-12-21 14:45:46 +1100583 buffer_len(&outgoing_packet));
Damien Miller95def091999-11-25 00:26:21 +1100584
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000585#ifdef PACKET_DEBUG
Damien Miller95def091999-11-25 00:26:21 +1100586 fprintf(stderr, "encrypted: ");
587 buffer_dump(&output);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000588#endif
589
Damien Miller95def091999-11-25 00:26:21 +1100590 buffer_clear(&outgoing_packet);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000591
Damien Miller5428f641999-11-25 11:54:57 +1100592 /*
Damien Miller788f2122005-11-05 15:14:59 +1100593 * Note that the packet is now only buffered in output. It won't be
Damien Miller5428f641999-11-25 11:54:57 +1100594 * actually sent until packet_write_wait or packet_write_poll is
595 * called.
596 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000597}
598
Ben Lindstromf6027d32002-03-22 01:42:04 +0000599void
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000600set_newkeys(int mode)
601{
602 Enc *enc;
603 Mac *mac;
604 Comp *comp;
605 CipherContext *cc;
Damien Millera5539d22003-04-09 20:50:06 +1000606 u_int64_t *max_blocks;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000607 int crypt_type;
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000608
Ben Lindstrom064496f2002-12-23 02:04:22 +0000609 debug2("set_newkeys: mode %d", mode);
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000610
Damien Miller963f6b22002-02-19 15:21:23 +1100611 if (mode == MODE_OUT) {
612 cc = &send_context;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000613 crypt_type = CIPHER_ENCRYPT;
Damien Millera5539d22003-04-09 20:50:06 +1000614 p_send.packets = p_send.blocks = 0;
615 max_blocks = &max_blocks_out;
Damien Miller963f6b22002-02-19 15:21:23 +1100616 } else {
617 cc = &receive_context;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000618 crypt_type = CIPHER_DECRYPT;
Damien Millera5539d22003-04-09 20:50:06 +1000619 p_read.packets = p_read.blocks = 0;
620 max_blocks = &max_blocks_in;
Damien Miller963f6b22002-02-19 15:21:23 +1100621 }
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000622 if (newkeys[mode] != NULL) {
Ben Lindstrom064496f2002-12-23 02:04:22 +0000623 debug("set_newkeys: rekeying");
Damien Miller963f6b22002-02-19 15:21:23 +1100624 cipher_cleanup(cc);
Ben Lindstrom5ba23b32001-04-05 02:05:21 +0000625 enc = &newkeys[mode]->enc;
626 mac = &newkeys[mode]->mac;
627 comp = &newkeys[mode]->comp;
Ben Lindstroma3700052001-04-05 23:26:32 +0000628 memset(mac->key, 0, mac->key_len);
Ben Lindstrom5ba23b32001-04-05 02:05:21 +0000629 xfree(enc->name);
630 xfree(enc->iv);
631 xfree(enc->key);
632 xfree(mac->name);
633 xfree(mac->key);
634 xfree(comp->name);
Ben Lindstrom238abf62001-04-04 17:52:53 +0000635 xfree(newkeys[mode]);
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000636 }
637 newkeys[mode] = kex_get_newkeys(mode);
638 if (newkeys[mode] == NULL)
639 fatal("newkeys: no keys for mode %d", mode);
640 enc = &newkeys[mode]->enc;
641 mac = &newkeys[mode]->mac;
642 comp = &newkeys[mode]->comp;
643 if (mac->md != NULL)
644 mac->enabled = 1;
645 DBG(debug("cipher_init_context: %d", mode));
Damien Miller963f6b22002-02-19 15:21:23 +1100646 cipher_init(cc, enc->cipher, enc->key, enc->key_len,
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000647 enc->iv, enc->block_size, crypt_type);
Ben Lindstromf6027d32002-03-22 01:42:04 +0000648 /* Deleting the keys does not gain extra security */
649 /* memset(enc->iv, 0, enc->block_size);
650 memset(enc->key, 0, enc->key_len); */
Damien Miller9786e6e2005-07-26 21:54:56 +1000651 if ((comp->type == COMP_ZLIB ||
652 (comp->type == COMP_DELAYED && after_authentication)) &&
653 comp->enabled == 0) {
Ben Lindstromfb50cdf2001-04-05 23:20:46 +0000654 packet_init_compression();
655 if (mode == MODE_OUT)
656 buffer_compress_init_send(6);
657 else
658 buffer_compress_init_recv();
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000659 comp->enabled = 1;
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000660 }
Darren Tucker81a0b372003-07-14 17:31:06 +1000661 /*
662 * The 2^(blocksize*2) limit is too expensive for 3DES,
663 * blowfish, etc, so enforce a 1GB limit for small blocksizes.
664 */
665 if (enc->block_size >= 16)
666 *max_blocks = (u_int64_t)1 << (enc->block_size*2);
667 else
668 *max_blocks = ((u_int64_t)1 << 30) / enc->block_size;
Damien Millera5539d22003-04-09 20:50:06 +1000669 if (rekey_limit)
670 *max_blocks = MIN(*max_blocks, rekey_limit / enc->block_size);
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000671}
672
Damien Miller5428f641999-11-25 11:54:57 +1100673/*
Damien Miller9786e6e2005-07-26 21:54:56 +1000674 * Delayed compression for SSH2 is enabled after authentication:
675 * This happans on the server side after a SSH2_MSG_USERAUTH_SUCCESS is sent,
676 * and on the client side after a SSH2_MSG_USERAUTH_SUCCESS is received.
677 */
678static void
679packet_enable_delayed_compress(void)
680{
681 Comp *comp = NULL;
682 int mode;
683
684 /*
685 * Remember that we are past the authentication step, so rekeying
686 * with COMP_DELAYED will turn on compression immediately.
687 */
688 after_authentication = 1;
689 for (mode = 0; mode < MODE_MAX; mode++) {
690 comp = &newkeys[mode]->comp;
691 if (comp && !comp->enabled && comp->type == COMP_DELAYED) {
Damien Millerb5c01252005-08-12 22:10:28 +1000692 packet_init_compression();
Damien Miller9786e6e2005-07-26 21:54:56 +1000693 if (mode == MODE_OUT)
694 buffer_compress_init_send(6);
695 else
696 buffer_compress_init_recv();
697 comp->enabled = 1;
698 }
699 }
700}
701
702/*
Damien Miller33b13562000-04-04 14:38:59 +1000703 * Finalize packet in SSH2 format (compress, mac, encrypt, enqueue)
704 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000705static void
Damien Millera5539d22003-04-09 20:50:06 +1000706packet_send2_wrapped(void)
Damien Miller33b13562000-04-04 14:38:59 +1000707{
Ben Lindstrom4a7714a2002-02-26 18:04:38 +0000708 u_char type, *cp, *macbuf = NULL;
Damien Miller9f643902001-11-12 11:02:52 +1100709 u_char padlen, pad;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000710 u_int packet_length = 0;
Damien Miller9f643902001-11-12 11:02:52 +1100711 u_int i, len;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000712 u_int32_t rnd = 0;
Damien Miller33b13562000-04-04 14:38:59 +1000713 Enc *enc = NULL;
714 Mac *mac = NULL;
715 Comp *comp = NULL;
716 int block_size;
717
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000718 if (newkeys[MODE_OUT] != NULL) {
719 enc = &newkeys[MODE_OUT]->enc;
720 mac = &newkeys[MODE_OUT]->mac;
721 comp = &newkeys[MODE_OUT]->comp;
Damien Miller33b13562000-04-04 14:38:59 +1000722 }
Damien Miller963f6b22002-02-19 15:21:23 +1100723 block_size = enc ? enc->block_size : 8;
Damien Miller33b13562000-04-04 14:38:59 +1000724
Ben Lindstrom4a7714a2002-02-26 18:04:38 +0000725 cp = buffer_ptr(&outgoing_packet);
726 type = cp[5];
Damien Miller33b13562000-04-04 14:38:59 +1000727
728#ifdef PACKET_DEBUG
729 fprintf(stderr, "plain: ");
730 buffer_dump(&outgoing_packet);
731#endif
732
733 if (comp && comp->enabled) {
734 len = buffer_len(&outgoing_packet);
735 /* skip header, compress only payload */
736 buffer_consume(&outgoing_packet, 5);
737 buffer_clear(&compression_buffer);
738 buffer_compress(&outgoing_packet, &compression_buffer);
739 buffer_clear(&outgoing_packet);
740 buffer_append(&outgoing_packet, "\0\0\0\0\0", 5);
741 buffer_append(&outgoing_packet, buffer_ptr(&compression_buffer),
742 buffer_len(&compression_buffer));
743 DBG(debug("compression: raw %d compressed %d", len,
744 buffer_len(&outgoing_packet)));
745 }
746
747 /* sizeof (packet_len + pad_len + payload) */
748 len = buffer_len(&outgoing_packet);
749
750 /*
751 * calc size of padding, alloc space, get random data,
752 * minimum padding is 4 bytes
753 */
754 padlen = block_size - (len % block_size);
755 if (padlen < 4)
756 padlen += block_size;
Damien Miller9f643902001-11-12 11:02:52 +1100757 if (extra_pad) {
758 /* will wrap if extra_pad+padlen > 255 */
759 extra_pad = roundup(extra_pad, block_size);
760 pad = extra_pad - ((len + padlen) % extra_pad);
Ben Lindstrom8b08d812002-03-26 02:09:41 +0000761 debug3("packet_send2: adding %d (len %d padlen %d extra_pad %d)",
Damien Miller9f643902001-11-12 11:02:52 +1100762 pad, len, padlen, extra_pad);
763 padlen += pad;
764 extra_pad = 0;
765 }
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100766 cp = buffer_append_space(&outgoing_packet, padlen);
Damien Miller963f6b22002-02-19 15:21:23 +1100767 if (enc && !send_context.plaintext) {
Damien Millere247cc42000-05-07 12:03:14 +1000768 /* random padding */
Damien Miller33b13562000-04-04 14:38:59 +1000769 for (i = 0; i < padlen; i++) {
770 if (i % 4 == 0)
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000771 rnd = arc4random();
772 cp[i] = rnd & 0xff;
773 rnd >>= 8;
Damien Miller33b13562000-04-04 14:38:59 +1000774 }
Damien Millere247cc42000-05-07 12:03:14 +1000775 } else {
776 /* clear padding */
777 memset(cp, 0, padlen);
Damien Miller33b13562000-04-04 14:38:59 +1000778 }
779 /* packet_length includes payload, padding and padding length field */
780 packet_length = buffer_len(&outgoing_packet) - 4;
Ben Lindstrom4a7714a2002-02-26 18:04:38 +0000781 cp = buffer_ptr(&outgoing_packet);
Damien Miller3f941882006-03-31 23:13:02 +1100782 put_u32(cp, packet_length);
Ben Lindstrom4a7714a2002-02-26 18:04:38 +0000783 cp[4] = padlen;
Damien Miller33b13562000-04-04 14:38:59 +1000784 DBG(debug("send: len %d (includes padlen %d)", packet_length+4, padlen));
785
786 /* compute MAC over seqnr and packet(length fields, payload, padding) */
787 if (mac && mac->enabled) {
Damien Millera5539d22003-04-09 20:50:06 +1000788 macbuf = mac_compute(mac, p_send.seqnr,
Damien Miller708d21c2002-01-22 23:18:15 +1100789 buffer_ptr(&outgoing_packet),
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000790 buffer_len(&outgoing_packet));
Damien Millera5539d22003-04-09 20:50:06 +1000791 DBG(debug("done calc MAC out #%d", p_send.seqnr));
Damien Miller33b13562000-04-04 14:38:59 +1000792 }
793 /* encrypt packet and append to output buffer. */
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100794 cp = buffer_append_space(&output, buffer_len(&outgoing_packet));
Damien Miller963f6b22002-02-19 15:21:23 +1100795 cipher_crypt(&send_context, cp, buffer_ptr(&outgoing_packet),
Damien Miller33b13562000-04-04 14:38:59 +1000796 buffer_len(&outgoing_packet));
797 /* append unencrypted MAC */
798 if (mac && mac->enabled)
Damien Millera0fdce92006-03-26 14:28:50 +1100799 buffer_append(&output, macbuf, mac->mac_len);
Damien Miller33b13562000-04-04 14:38:59 +1000800#ifdef PACKET_DEBUG
801 fprintf(stderr, "encrypted: ");
802 buffer_dump(&output);
803#endif
Damien Miller4af51302000-04-16 11:18:38 +1000804 /* increment sequence number for outgoing packets */
Damien Millera5539d22003-04-09 20:50:06 +1000805 if (++p_send.seqnr == 0)
Damien Miller996acd22003-04-09 20:59:48 +1000806 logit("outgoing seqnr wraps around");
Damien Millera5539d22003-04-09 20:50:06 +1000807 if (++p_send.packets == 0)
808 if (!(datafellows & SSH_BUG_NOREKEY))
809 fatal("XXX too many packets with same key");
810 p_send.blocks += (packet_length + 4) / block_size;
Damien Miller33b13562000-04-04 14:38:59 +1000811 buffer_clear(&outgoing_packet);
812
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000813 if (type == SSH2_MSG_NEWKEYS)
814 set_newkeys(MODE_OUT);
Damien Miller9786e6e2005-07-26 21:54:56 +1000815 else if (type == SSH2_MSG_USERAUTH_SUCCESS && server_side)
816 packet_enable_delayed_compress();
Damien Miller33b13562000-04-04 14:38:59 +1000817}
818
Damien Millera5539d22003-04-09 20:50:06 +1000819static void
820packet_send2(void)
821{
822 static int rekeying = 0;
823 struct packet *p;
824 u_char type, *cp;
825
826 cp = buffer_ptr(&outgoing_packet);
827 type = cp[5];
828
829 /* during rekeying we can only send key exchange messages */
830 if (rekeying) {
831 if (!((type >= SSH2_MSG_TRANSPORT_MIN) &&
832 (type <= SSH2_MSG_TRANSPORT_MAX))) {
833 debug("enqueue packet: %u", type);
834 p = xmalloc(sizeof(*p));
835 p->type = type;
836 memcpy(&p->payload, &outgoing_packet, sizeof(Buffer));
837 buffer_init(&outgoing_packet);
838 TAILQ_INSERT_TAIL(&outgoing, p, next);
839 return;
840 }
841 }
842
843 /* rekeying starts with sending KEXINIT */
844 if (type == SSH2_MSG_KEXINIT)
845 rekeying = 1;
846
847 packet_send2_wrapped();
848
849 /* after a NEWKEYS message we can send the complete queue */
850 if (type == SSH2_MSG_NEWKEYS) {
851 rekeying = 0;
852 while ((p = TAILQ_FIRST(&outgoing))) {
853 type = p->type;
854 debug("dequeue packet: %u", type);
855 buffer_free(&outgoing_packet);
856 memcpy(&outgoing_packet, &p->payload,
857 sizeof(Buffer));
858 TAILQ_REMOVE(&outgoing, p, next);
859 xfree(p);
860 packet_send2_wrapped();
861 }
862 }
863}
864
Damien Miller33b13562000-04-04 14:38:59 +1000865void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000866packet_send(void)
Damien Miller33b13562000-04-04 14:38:59 +1000867{
Ben Lindstrom80c6d772001-06-05 21:09:18 +0000868 if (compat20)
Damien Miller33b13562000-04-04 14:38:59 +1000869 packet_send2();
870 else
871 packet_send1();
872 DBG(debug("packet_send done"));
873}
874
Damien Miller33b13562000-04-04 14:38:59 +1000875/*
Damien Miller5428f641999-11-25 11:54:57 +1100876 * Waits until a packet has been received, and returns its type. Note that
877 * no other data is processed until this returns, so this function should not
878 * be used during the interactive session.
879 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000880
881int
Damien Millerdff50992002-01-22 23:16:32 +1100882packet_read_seqnr(u_int32_t *seqnr_p)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000883{
Damien Miller95def091999-11-25 00:26:21 +1100884 int type, len;
Ben Lindstromcb978aa2001-03-05 07:07:49 +0000885 fd_set *setp;
Damien Miller95def091999-11-25 00:26:21 +1100886 char buf[8192];
Damien Miller33b13562000-04-04 14:38:59 +1000887 DBG(debug("packet_read()"));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000888
Damien Miller07d86be2006-03-26 14:19:21 +1100889 setp = (fd_set *)xcalloc(howmany(connection_in+1, NFDBITS),
Ben Lindstromcb978aa2001-03-05 07:07:49 +0000890 sizeof(fd_mask));
891
Damien Miller95def091999-11-25 00:26:21 +1100892 /* Since we are blocking, ensure that all written packets have been sent. */
893 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000894
Damien Miller95def091999-11-25 00:26:21 +1100895 /* Stay in the loop until we have received a complete packet. */
896 for (;;) {
897 /* Try to read a packet from the buffer. */
Damien Millerdff50992002-01-22 23:16:32 +1100898 type = packet_read_poll_seqnr(seqnr_p);
Ben Lindstrom80c6d772001-06-05 21:09:18 +0000899 if (!compat20 && (
Damien Millere247cc42000-05-07 12:03:14 +1000900 type == SSH_SMSG_SUCCESS
Damien Miller95def091999-11-25 00:26:21 +1100901 || type == SSH_SMSG_FAILURE
902 || type == SSH_CMSG_EOF
Damien Millere247cc42000-05-07 12:03:14 +1000903 || type == SSH_CMSG_EXIT_CONFIRMATION))
Damien Miller48b03fc2002-01-22 23:11:40 +1100904 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +1100905 /* If we got a packet, return it. */
Ben Lindstromcb978aa2001-03-05 07:07:49 +0000906 if (type != SSH_MSG_NONE) {
907 xfree(setp);
Damien Miller95def091999-11-25 00:26:21 +1100908 return type;
Ben Lindstromcb978aa2001-03-05 07:07:49 +0000909 }
Damien Miller5428f641999-11-25 11:54:57 +1100910 /*
911 * Otherwise, wait for some data to arrive, add it to the
912 * buffer, and try again.
913 */
Ben Lindstromcb978aa2001-03-05 07:07:49 +0000914 memset(setp, 0, howmany(connection_in + 1, NFDBITS) *
915 sizeof(fd_mask));
916 FD_SET(connection_in, setp);
Damien Miller5428f641999-11-25 11:54:57 +1100917
Damien Miller95def091999-11-25 00:26:21 +1100918 /* Wait for some data to arrive. */
Ben Lindstromcb978aa2001-03-05 07:07:49 +0000919 while (select(connection_in + 1, setp, NULL, NULL, NULL) == -1 &&
Ben Lindstromf9452512001-02-15 03:12:08 +0000920 (errno == EAGAIN || errno == EINTR))
921 ;
Damien Miller5428f641999-11-25 11:54:57 +1100922
Damien Miller95def091999-11-25 00:26:21 +1100923 /* Read data from the socket. */
924 len = read(connection_in, buf, sizeof(buf));
Damien Miller5e7c10e1999-12-16 13:18:04 +1100925 if (len == 0) {
Damien Miller996acd22003-04-09 20:59:48 +1000926 logit("Connection closed by %.200s", get_remote_ipaddr());
Darren Tucker3e33cec2003-10-02 16:12:36 +1000927 cleanup_exit(255);
Damien Miller5e7c10e1999-12-16 13:18:04 +1100928 }
Damien Miller95def091999-11-25 00:26:21 +1100929 if (len < 0)
930 fatal("Read from socket failed: %.100s", strerror(errno));
931 /* Append it to the buffer. */
932 packet_process_incoming(buf, len);
933 }
934 /* NOTREACHED */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000935}
936
Damien Miller278f9072001-12-21 15:00:19 +1100937int
Damien Millerdff50992002-01-22 23:16:32 +1100938packet_read(void)
Damien Miller278f9072001-12-21 15:00:19 +1100939{
Damien Millerdff50992002-01-22 23:16:32 +1100940 return packet_read_seqnr(NULL);
Damien Miller278f9072001-12-21 15:00:19 +1100941}
942
Damien Miller5428f641999-11-25 11:54:57 +1100943/*
944 * Waits until a packet has been received, verifies that its type matches
945 * that given, and gives a fatal error and exits if there is a mismatch.
946 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000947
948void
Damien Millerdff50992002-01-22 23:16:32 +1100949packet_read_expect(int expected_type)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000950{
Damien Miller95def091999-11-25 00:26:21 +1100951 int type;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000952
Damien Millerdff50992002-01-22 23:16:32 +1100953 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100954 if (type != expected_type)
955 packet_disconnect("Protocol error: expected packet type %d, got %d",
Damien Miller33b13562000-04-04 14:38:59 +1000956 expected_type, type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000957}
958
959/* Checks if a full packet is available in the data received so far via
Damien Miller95def091999-11-25 00:26:21 +1100960 * packet_process_incoming. If so, reads the packet; otherwise returns
961 * SSH_MSG_NONE. This does not wait for data from the connection.
962 *
963 * SSH_MSG_DISCONNECT is handled specially here. Also,
964 * SSH_MSG_IGNORE messages are skipped by this function and are never returned
965 * to higher levels.
Damien Miller95def091999-11-25 00:26:21 +1100966 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000967
Ben Lindstrombba81212001-06-25 05:01:22 +0000968static int
Damien Millerdff50992002-01-22 23:16:32 +1100969packet_read_poll1(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000970{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000971 u_int len, padded_len;
Ben Lindstrom4a7714a2002-02-26 18:04:38 +0000972 u_char *cp, type;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000973 u_int checksum, stored_checksum;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000974
Damien Miller95def091999-11-25 00:26:21 +1100975 /* Check if input size is less than minimum packet size. */
976 if (buffer_len(&input) < 4 + 8)
977 return SSH_MSG_NONE;
978 /* Get length of incoming packet. */
Ben Lindstrom4a7714a2002-02-26 18:04:38 +0000979 cp = buffer_ptr(&input);
Damien Miller3f941882006-03-31 23:13:02 +1100980 len = get_u32(cp);
Damien Miller95def091999-11-25 00:26:21 +1100981 if (len < 1 + 2 + 2 || len > 256 * 1024)
Ben Lindstrom0cc2a472002-11-09 15:41:39 +0000982 packet_disconnect("Bad packet length %u.", len);
Damien Miller95def091999-11-25 00:26:21 +1100983 padded_len = (len + 8) & ~7;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000984
Damien Miller95def091999-11-25 00:26:21 +1100985 /* Check if the packet has been entirely received. */
986 if (buffer_len(&input) < 4 + padded_len)
987 return SSH_MSG_NONE;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000988
Damien Miller95def091999-11-25 00:26:21 +1100989 /* The entire packet is in buffer. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000990
Damien Miller95def091999-11-25 00:26:21 +1100991 /* Consume packet length. */
992 buffer_consume(&input, 4);
993
Ben Lindstrom80c6d772001-06-05 21:09:18 +0000994 /*
995 * Cryptographic attack detector for ssh
996 * (C)1998 CORE-SDI, Buenos Aires Argentina
997 * Ariel Futoransky(futo@core-sdi.com)
998 */
Damien Miller963f6b22002-02-19 15:21:23 +1100999 if (!receive_context.plaintext &&
Damien Miller7cd45792006-03-26 14:11:39 +11001000 detect_attack(buffer_ptr(&input), padded_len) == DEATTACK_DETECTED)
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001001 packet_disconnect("crc32 compensation attack: network attack detected");
1002
1003 /* Decrypt data to incoming_packet. */
Damien Miller95def091999-11-25 00:26:21 +11001004 buffer_clear(&incoming_packet);
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001005 cp = buffer_append_space(&incoming_packet, padded_len);
Damien Miller963f6b22002-02-19 15:21:23 +11001006 cipher_crypt(&receive_context, cp, buffer_ptr(&input), padded_len);
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001007
Damien Miller95def091999-11-25 00:26:21 +11001008 buffer_consume(&input, padded_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001009
1010#ifdef PACKET_DEBUG
Damien Miller95def091999-11-25 00:26:21 +11001011 fprintf(stderr, "read_poll plain: ");
1012 buffer_dump(&incoming_packet);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001013#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001014
Damien Miller95def091999-11-25 00:26:21 +11001015 /* Compute packet checksum. */
Damien Miller708d21c2002-01-22 23:18:15 +11001016 checksum = ssh_crc32(buffer_ptr(&incoming_packet),
Damien Miller33b13562000-04-04 14:38:59 +10001017 buffer_len(&incoming_packet) - 4);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001018
Damien Miller95def091999-11-25 00:26:21 +11001019 /* Skip padding. */
1020 buffer_consume(&incoming_packet, 8 - len % 8);
Damien Millerfd7c9111999-11-08 16:15:55 +11001021
Damien Miller95def091999-11-25 00:26:21 +11001022 /* Test check bytes. */
Damien Miller95def091999-11-25 00:26:21 +11001023 if (len != buffer_len(&incoming_packet))
Damien Miller278f9072001-12-21 15:00:19 +11001024 packet_disconnect("packet_read_poll1: len %d != buffer_len %d.",
Damien Miller33b13562000-04-04 14:38:59 +10001025 len, buffer_len(&incoming_packet));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001026
Ben Lindstrom4a7714a2002-02-26 18:04:38 +00001027 cp = (u_char *)buffer_ptr(&incoming_packet) + len - 4;
Damien Miller3f941882006-03-31 23:13:02 +11001028 stored_checksum = get_u32(cp);
Damien Miller95def091999-11-25 00:26:21 +11001029 if (checksum != stored_checksum)
1030 packet_disconnect("Corrupted check bytes on input.");
1031 buffer_consume_end(&incoming_packet, 4);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001032
Damien Miller95def091999-11-25 00:26:21 +11001033 if (packet_compression) {
1034 buffer_clear(&compression_buffer);
1035 buffer_uncompress(&incoming_packet, &compression_buffer);
1036 buffer_clear(&incoming_packet);
1037 buffer_append(&incoming_packet, buffer_ptr(&compression_buffer),
Damien Miller33b13562000-04-04 14:38:59 +10001038 buffer_len(&compression_buffer));
Damien Miller95def091999-11-25 00:26:21 +11001039 }
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001040 type = buffer_get_char(&incoming_packet);
Darren Tuckerb2694f02004-11-05 20:27:54 +11001041 if (type < SSH_MSG_MIN || type > SSH_MSG_MAX)
1042 packet_disconnect("Invalid ssh1 packet type: %d", type);
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001043 return type;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001044}
Damien Miller95def091999-11-25 00:26:21 +11001045
Ben Lindstrombba81212001-06-25 05:01:22 +00001046static int
Damien Millerdff50992002-01-22 23:16:32 +11001047packet_read_poll2(u_int32_t *seqnr_p)
Damien Miller33b13562000-04-04 14:38:59 +10001048{
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001049 static u_int packet_length = 0;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001050 u_int padlen, need;
Ben Lindstrom4a7714a2002-02-26 18:04:38 +00001051 u_char *macbuf, *cp, type;
Damien Millereccb9de2005-06-17 12:59:34 +10001052 u_int maclen, block_size;
Damien Miller33b13562000-04-04 14:38:59 +10001053 Enc *enc = NULL;
1054 Mac *mac = NULL;
1055 Comp *comp = NULL;
1056
Ben Lindstrom2d90e002001-04-04 02:00:54 +00001057 if (newkeys[MODE_IN] != NULL) {
1058 enc = &newkeys[MODE_IN]->enc;
1059 mac = &newkeys[MODE_IN]->mac;
1060 comp = &newkeys[MODE_IN]->comp;
Damien Miller33b13562000-04-04 14:38:59 +10001061 }
1062 maclen = mac && mac->enabled ? mac->mac_len : 0;
Damien Miller963f6b22002-02-19 15:21:23 +11001063 block_size = enc ? enc->block_size : 8;
Damien Miller33b13562000-04-04 14:38:59 +10001064
1065 if (packet_length == 0) {
1066 /*
1067 * check if input size is less than the cipher block size,
1068 * decrypt first block and extract length of incoming packet
1069 */
1070 if (buffer_len(&input) < block_size)
1071 return SSH_MSG_NONE;
1072 buffer_clear(&incoming_packet);
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001073 cp = buffer_append_space(&incoming_packet, block_size);
Damien Miller963f6b22002-02-19 15:21:23 +11001074 cipher_crypt(&receive_context, cp, buffer_ptr(&input),
Damien Miller33b13562000-04-04 14:38:59 +10001075 block_size);
Ben Lindstrom4a7714a2002-02-26 18:04:38 +00001076 cp = buffer_ptr(&incoming_packet);
Damien Miller3f941882006-03-31 23:13:02 +11001077 packet_length = get_u32(cp);
Damien Miller33b13562000-04-04 14:38:59 +10001078 if (packet_length < 1 + 4 || packet_length > 256 * 1024) {
Darren Tuckera8151da2003-09-22 21:06:46 +10001079#ifdef PACKET_DEBUG
Damien Miller33b13562000-04-04 14:38:59 +10001080 buffer_dump(&incoming_packet);
Darren Tuckera8151da2003-09-22 21:06:46 +10001081#endif
Ben Lindstrom0cc2a472002-11-09 15:41:39 +00001082 packet_disconnect("Bad packet length %u.", packet_length);
Damien Miller33b13562000-04-04 14:38:59 +10001083 }
Ben Lindstrom0cc2a472002-11-09 15:41:39 +00001084 DBG(debug("input: packet len %u", packet_length+4));
Damien Miller33b13562000-04-04 14:38:59 +10001085 buffer_consume(&input, block_size);
1086 }
1087 /* we have a partial packet of block_size bytes */
1088 need = 4 + packet_length - block_size;
1089 DBG(debug("partial packet %d, need %d, maclen %d", block_size,
1090 need, maclen));
1091 if (need % block_size != 0)
1092 fatal("padding error: need %d block %d mod %d",
1093 need, block_size, need % block_size);
1094 /*
1095 * check if the entire packet has been received and
1096 * decrypt into incoming_packet
1097 */
1098 if (buffer_len(&input) < need + maclen)
1099 return SSH_MSG_NONE;
1100#ifdef PACKET_DEBUG
1101 fprintf(stderr, "read_poll enc/full: ");
1102 buffer_dump(&input);
1103#endif
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001104 cp = buffer_append_space(&incoming_packet, need);
Damien Miller963f6b22002-02-19 15:21:23 +11001105 cipher_crypt(&receive_context, cp, buffer_ptr(&input), need);
Damien Miller33b13562000-04-04 14:38:59 +10001106 buffer_consume(&input, need);
1107 /*
1108 * compute MAC over seqnr and packet,
1109 * increment sequence number for incoming packet
1110 */
Damien Miller4af51302000-04-16 11:18:38 +10001111 if (mac && mac->enabled) {
Damien Millera5539d22003-04-09 20:50:06 +10001112 macbuf = mac_compute(mac, p_read.seqnr,
Damien Miller708d21c2002-01-22 23:18:15 +11001113 buffer_ptr(&incoming_packet),
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001114 buffer_len(&incoming_packet));
Damien Miller33b13562000-04-04 14:38:59 +10001115 if (memcmp(macbuf, buffer_ptr(&input), mac->mac_len) != 0)
Damien Miller874d77b2000-10-14 16:23:11 +11001116 packet_disconnect("Corrupted MAC on input.");
Damien Millera5539d22003-04-09 20:50:06 +10001117 DBG(debug("MAC #%d ok", p_read.seqnr));
Damien Miller33b13562000-04-04 14:38:59 +10001118 buffer_consume(&input, mac->mac_len);
1119 }
Damien Miller278f9072001-12-21 15:00:19 +11001120 if (seqnr_p != NULL)
Damien Millera5539d22003-04-09 20:50:06 +10001121 *seqnr_p = p_read.seqnr;
1122 if (++p_read.seqnr == 0)
Damien Miller996acd22003-04-09 20:59:48 +10001123 logit("incoming seqnr wraps around");
Damien Millera5539d22003-04-09 20:50:06 +10001124 if (++p_read.packets == 0)
1125 if (!(datafellows & SSH_BUG_NOREKEY))
1126 fatal("XXX too many packets with same key");
1127 p_read.blocks += (packet_length + 4) / block_size;
Damien Miller33b13562000-04-04 14:38:59 +10001128
1129 /* get padlen */
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001130 cp = buffer_ptr(&incoming_packet);
Ben Lindstrom4a7714a2002-02-26 18:04:38 +00001131 padlen = cp[4];
Damien Miller33b13562000-04-04 14:38:59 +10001132 DBG(debug("input: padlen %d", padlen));
1133 if (padlen < 4)
1134 packet_disconnect("Corrupted padlen %d on input.", padlen);
1135
1136 /* skip packet size + padlen, discard padding */
1137 buffer_consume(&incoming_packet, 4 + 1);
1138 buffer_consume_end(&incoming_packet, padlen);
1139
1140 DBG(debug("input: len before de-compress %d", buffer_len(&incoming_packet)));
1141 if (comp && comp->enabled) {
1142 buffer_clear(&compression_buffer);
1143 buffer_uncompress(&incoming_packet, &compression_buffer);
1144 buffer_clear(&incoming_packet);
1145 buffer_append(&incoming_packet, buffer_ptr(&compression_buffer),
1146 buffer_len(&compression_buffer));
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001147 DBG(debug("input: len after de-compress %d",
1148 buffer_len(&incoming_packet)));
Damien Miller33b13562000-04-04 14:38:59 +10001149 }
1150 /*
1151 * get packet type, implies consume.
1152 * return length of payload (without type field)
1153 */
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001154 type = buffer_get_char(&incoming_packet);
Darren Tuckerb2694f02004-11-05 20:27:54 +11001155 if (type < SSH2_MSG_MIN || type >= SSH2_MSG_LOCAL_MIN)
1156 packet_disconnect("Invalid ssh2 packet type: %d", type);
Ben Lindstrom2d90e002001-04-04 02:00:54 +00001157 if (type == SSH2_MSG_NEWKEYS)
1158 set_newkeys(MODE_IN);
Damien Miller9786e6e2005-07-26 21:54:56 +10001159 else if (type == SSH2_MSG_USERAUTH_SUCCESS && !server_side)
1160 packet_enable_delayed_compress();
Damien Miller33b13562000-04-04 14:38:59 +10001161#ifdef PACKET_DEBUG
Ben Lindstrom204e4882001-03-05 06:47:00 +00001162 fprintf(stderr, "read/plain[%d]:\r\n", type);
Damien Miller33b13562000-04-04 14:38:59 +10001163 buffer_dump(&incoming_packet);
1164#endif
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001165 /* reset for next packet */
1166 packet_length = 0;
1167 return type;
Damien Miller33b13562000-04-04 14:38:59 +10001168}
1169
1170int
Damien Millerdff50992002-01-22 23:16:32 +11001171packet_read_poll_seqnr(u_int32_t *seqnr_p)
Damien Miller33b13562000-04-04 14:38:59 +10001172{
Ben Lindstrom3f584742002-06-23 21:49:25 +00001173 u_int reason, seqnr;
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001174 u_char type;
Damien Miller33b13562000-04-04 14:38:59 +10001175 char *msg;
Damien Miller33b13562000-04-04 14:38:59 +10001176
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001177 for (;;) {
1178 if (compat20) {
Damien Millerdff50992002-01-22 23:16:32 +11001179 type = packet_read_poll2(seqnr_p);
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001180 if (type)
Damien Miller33b13562000-04-04 14:38:59 +10001181 DBG(debug("received packet type %d", type));
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001182 switch (type) {
Damien Miller33b13562000-04-04 14:38:59 +10001183 case SSH2_MSG_IGNORE:
1184 break;
1185 case SSH2_MSG_DEBUG:
1186 packet_get_char();
1187 msg = packet_get_string(NULL);
1188 debug("Remote: %.900s", msg);
1189 xfree(msg);
1190 msg = packet_get_string(NULL);
1191 xfree(msg);
1192 break;
1193 case SSH2_MSG_DISCONNECT:
1194 reason = packet_get_int();
1195 msg = packet_get_string(NULL);
Damien Miller996acd22003-04-09 20:59:48 +10001196 logit("Received disconnect from %s: %u: %.400s",
Ben Lindstrom3f584742002-06-23 21:49:25 +00001197 get_remote_ipaddr(), reason, msg);
Damien Miller33b13562000-04-04 14:38:59 +10001198 xfree(msg);
Darren Tucker3e33cec2003-10-02 16:12:36 +10001199 cleanup_exit(255);
Damien Miller33b13562000-04-04 14:38:59 +10001200 break;
Damien Miller659811f2002-01-22 23:23:11 +11001201 case SSH2_MSG_UNIMPLEMENTED:
1202 seqnr = packet_get_int();
Ben Lindstrom3f584742002-06-23 21:49:25 +00001203 debug("Received SSH2_MSG_UNIMPLEMENTED for %u",
1204 seqnr);
Damien Miller659811f2002-01-22 23:23:11 +11001205 break;
Damien Miller33b13562000-04-04 14:38:59 +10001206 default:
1207 return type;
Kevin Stevesef4eea92001-02-05 12:42:17 +00001208 }
Damien Miller33b13562000-04-04 14:38:59 +10001209 } else {
Damien Millerdff50992002-01-22 23:16:32 +11001210 type = packet_read_poll1();
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001211 switch (type) {
Damien Miller33b13562000-04-04 14:38:59 +10001212 case SSH_MSG_IGNORE:
1213 break;
1214 case SSH_MSG_DEBUG:
1215 msg = packet_get_string(NULL);
1216 debug("Remote: %.900s", msg);
1217 xfree(msg);
1218 break;
1219 case SSH_MSG_DISCONNECT:
1220 msg = packet_get_string(NULL);
Damien Miller996acd22003-04-09 20:59:48 +10001221 logit("Received disconnect from %s: %.400s",
Ben Lindstrom3f584742002-06-23 21:49:25 +00001222 get_remote_ipaddr(), msg);
Darren Tucker3e33cec2003-10-02 16:12:36 +10001223 cleanup_exit(255);
Damien Miller33b13562000-04-04 14:38:59 +10001224 xfree(msg);
1225 break;
1226 default:
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001227 if (type)
Damien Miller33b13562000-04-04 14:38:59 +10001228 DBG(debug("received packet type %d", type));
1229 return type;
Kevin Stevesef4eea92001-02-05 12:42:17 +00001230 }
Damien Miller33b13562000-04-04 14:38:59 +10001231 }
1232 }
1233}
1234
Damien Miller278f9072001-12-21 15:00:19 +11001235int
Damien Millerdff50992002-01-22 23:16:32 +11001236packet_read_poll(void)
Damien Miller278f9072001-12-21 15:00:19 +11001237{
Damien Millerdff50992002-01-22 23:16:32 +11001238 return packet_read_poll_seqnr(NULL);
Damien Miller278f9072001-12-21 15:00:19 +11001239}
1240
Damien Miller5428f641999-11-25 11:54:57 +11001241/*
1242 * Buffers the given amount of input characters. This is intended to be used
1243 * together with packet_read_poll.
1244 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001245
1246void
Ben Lindstrom46c16222000-12-22 01:43:59 +00001247packet_process_incoming(const char *buf, u_int len)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001248{
Damien Miller95def091999-11-25 00:26:21 +11001249 buffer_append(&input, buf, len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001250}
1251
1252/* Returns a character from the packet. */
1253
Ben Lindstrom46c16222000-12-22 01:43:59 +00001254u_int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001255packet_get_char(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001256{
Damien Miller95def091999-11-25 00:26:21 +11001257 char ch;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001258
Damien Miller95def091999-11-25 00:26:21 +11001259 buffer_get(&incoming_packet, &ch, 1);
Ben Lindstrom46c16222000-12-22 01:43:59 +00001260 return (u_char) ch;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001261}
1262
1263/* Returns an integer from the packet data. */
1264
Ben Lindstrom46c16222000-12-22 01:43:59 +00001265u_int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001266packet_get_int(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001267{
Damien Miller95def091999-11-25 00:26:21 +11001268 return buffer_get_int(&incoming_packet);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001269}
1270
Damien Miller5428f641999-11-25 11:54:57 +11001271/*
1272 * Returns an arbitrary precision integer from the packet data. The integer
1273 * must have been initialized before this call.
1274 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001275
1276void
Damien Millerd432ccf2002-01-22 23:14:44 +11001277packet_get_bignum(BIGNUM * value)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001278{
Damien Miller76e1e362002-01-22 23:15:57 +11001279 buffer_get_bignum(&incoming_packet, value);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001280}
1281
Damien Miller33b13562000-04-04 14:38:59 +10001282void
Damien Millerd432ccf2002-01-22 23:14:44 +11001283packet_get_bignum2(BIGNUM * value)
Damien Miller33b13562000-04-04 14:38:59 +10001284{
Damien Miller76e1e362002-01-22 23:15:57 +11001285 buffer_get_bignum2(&incoming_packet, value);
Damien Miller33b13562000-04-04 14:38:59 +10001286}
1287
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001288void *
Damien Millereccb9de2005-06-17 12:59:34 +10001289packet_get_raw(u_int *length_ptr)
Damien Miller33b13562000-04-04 14:38:59 +10001290{
Damien Millereccb9de2005-06-17 12:59:34 +10001291 u_int bytes = buffer_len(&incoming_packet);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001292
Damien Miller33b13562000-04-04 14:38:59 +10001293 if (length_ptr != NULL)
1294 *length_ptr = bytes;
1295 return buffer_ptr(&incoming_packet);
1296}
1297
Damien Miller4af51302000-04-16 11:18:38 +10001298int
1299packet_remaining(void)
1300{
1301 return buffer_len(&incoming_packet);
1302}
1303
Damien Miller5428f641999-11-25 11:54:57 +11001304/*
1305 * Returns a string from the packet data. The string is allocated using
1306 * xmalloc; it is the responsibility of the calling program to free it when
1307 * no longer needed. The length_ptr argument may be NULL, or point to an
1308 * integer into which the length of the string is stored.
1309 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001310
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001311void *
Ben Lindstrom46c16222000-12-22 01:43:59 +00001312packet_get_string(u_int *length_ptr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001313{
Damien Miller95def091999-11-25 00:26:21 +11001314 return buffer_get_string(&incoming_packet, length_ptr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001315}
1316
Damien Miller5428f641999-11-25 11:54:57 +11001317/*
1318 * Sends a diagnostic message from the server to the client. This message
1319 * can be sent at any time (but not while constructing another message). The
1320 * message is printed immediately, but only if the client is being executed
1321 * in verbose mode. These messages are primarily intended to ease debugging
1322 * authentication problems. The length of the formatted message must not
1323 * exceed 1024 bytes. This will automatically call packet_write_wait.
1324 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001325
1326void
Damien Miller95def091999-11-25 00:26:21 +11001327packet_send_debug(const char *fmt,...)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001328{
Damien Miller95def091999-11-25 00:26:21 +11001329 char buf[1024];
1330 va_list args;
1331
Ben Lindstroma14ee472000-12-07 01:24:58 +00001332 if (compat20 && (datafellows & SSH_BUG_DEBUG))
1333 return;
1334
Damien Miller95def091999-11-25 00:26:21 +11001335 va_start(args, fmt);
1336 vsnprintf(buf, sizeof(buf), fmt, args);
1337 va_end(args);
1338
Damien Miller7c8af4f2000-05-01 08:24:07 +10001339 if (compat20) {
1340 packet_start(SSH2_MSG_DEBUG);
1341 packet_put_char(0); /* bool: always display */
1342 packet_put_cstring(buf);
1343 packet_put_cstring("");
1344 } else {
1345 packet_start(SSH_MSG_DEBUG);
1346 packet_put_cstring(buf);
1347 }
Damien Miller95def091999-11-25 00:26:21 +11001348 packet_send();
1349 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001350}
1351
Damien Miller5428f641999-11-25 11:54:57 +11001352/*
1353 * Logs the error plus constructs and sends a disconnect packet, closes the
1354 * connection, and exits. This function never returns. The error message
1355 * should not contain a newline. The length of the formatted message must
1356 * not exceed 1024 bytes.
1357 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001358
1359void
Damien Miller95def091999-11-25 00:26:21 +11001360packet_disconnect(const char *fmt,...)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001361{
Damien Miller95def091999-11-25 00:26:21 +11001362 char buf[1024];
1363 va_list args;
1364 static int disconnecting = 0;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001365
Damien Miller95def091999-11-25 00:26:21 +11001366 if (disconnecting) /* Guard against recursive invocations. */
1367 fatal("packet_disconnect called recursively.");
1368 disconnecting = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001369
Damien Miller5428f641999-11-25 11:54:57 +11001370 /*
1371 * Format the message. Note that the caller must make sure the
1372 * message is of limited size.
1373 */
Damien Miller95def091999-11-25 00:26:21 +11001374 va_start(args, fmt);
1375 vsnprintf(buf, sizeof(buf), fmt, args);
1376 va_end(args);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001377
Ben Lindstrom9bda7ae2002-11-09 15:46:24 +00001378 /* Display the error locally */
Damien Miller996acd22003-04-09 20:59:48 +10001379 logit("Disconnecting: %.100s", buf);
Ben Lindstrom9bda7ae2002-11-09 15:46:24 +00001380
Damien Miller95def091999-11-25 00:26:21 +11001381 /* Send the disconnect message to the other side, and wait for it to get sent. */
Damien Miller33b13562000-04-04 14:38:59 +10001382 if (compat20) {
1383 packet_start(SSH2_MSG_DISCONNECT);
1384 packet_put_int(SSH2_DISCONNECT_PROTOCOL_ERROR);
1385 packet_put_cstring(buf);
1386 packet_put_cstring("");
1387 } else {
1388 packet_start(SSH_MSG_DISCONNECT);
Ben Lindstrom664408d2001-06-09 01:42:01 +00001389 packet_put_cstring(buf);
Damien Miller33b13562000-04-04 14:38:59 +10001390 }
Damien Miller95def091999-11-25 00:26:21 +11001391 packet_send();
1392 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001393
Damien Miller95def091999-11-25 00:26:21 +11001394 /* Stop listening for connections. */
Ben Lindstrom601e4362001-06-21 03:19:23 +00001395 channel_close_all();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001396
Damien Miller95def091999-11-25 00:26:21 +11001397 /* Close the connection. */
1398 packet_close();
Darren Tucker3e33cec2003-10-02 16:12:36 +10001399 cleanup_exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001400}
1401
Damien Miller5428f641999-11-25 11:54:57 +11001402/* Checks if there is any buffered output, and tries to write some of the output. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001403
1404void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001405packet_write_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001406{
Damien Miller95def091999-11-25 00:26:21 +11001407 int len = buffer_len(&output);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001408
Damien Miller95def091999-11-25 00:26:21 +11001409 if (len > 0) {
1410 len = write(connection_out, buffer_ptr(&output), len);
1411 if (len <= 0) {
1412 if (errno == EAGAIN)
1413 return;
1414 else
1415 fatal("Write failed: %.100s", strerror(errno));
1416 }
1417 buffer_consume(&output, len);
1418 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001419}
1420
Damien Miller5428f641999-11-25 11:54:57 +11001421/*
1422 * Calls packet_write_poll repeatedly until all pending output data has been
1423 * written.
1424 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001425
1426void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001427packet_write_wait(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001428{
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001429 fd_set *setp;
1430
Damien Miller07d86be2006-03-26 14:19:21 +11001431 setp = (fd_set *)xcalloc(howmany(connection_out + 1, NFDBITS),
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001432 sizeof(fd_mask));
Damien Miller95def091999-11-25 00:26:21 +11001433 packet_write_poll();
1434 while (packet_have_data_to_write()) {
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001435 memset(setp, 0, howmany(connection_out + 1, NFDBITS) *
1436 sizeof(fd_mask));
1437 FD_SET(connection_out, setp);
1438 while (select(connection_out + 1, NULL, setp, NULL, NULL) == -1 &&
Ben Lindstromf9452512001-02-15 03:12:08 +00001439 (errno == EAGAIN || errno == EINTR))
1440 ;
Damien Miller95def091999-11-25 00:26:21 +11001441 packet_write_poll();
1442 }
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001443 xfree(setp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001444}
1445
1446/* Returns true if there is buffered data to write to the connection. */
1447
1448int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001449packet_have_data_to_write(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001450{
Damien Miller95def091999-11-25 00:26:21 +11001451 return buffer_len(&output) != 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001452}
1453
1454/* Returns true if there is not too much data to write to the connection. */
1455
1456int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001457packet_not_very_much_data_to_write(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001458{
Damien Miller95def091999-11-25 00:26:21 +11001459 if (interactive_mode)
1460 return buffer_len(&output) < 16384;
1461 else
1462 return buffer_len(&output) < 128 * 1024;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001463}
1464
Ben Lindstromc8a49d72003-04-02 15:18:22 +00001465
Ben Lindstromfaa1ea82002-12-23 02:42:52 +00001466static void
Ben Lindstroma7433982002-12-23 02:41:41 +00001467packet_set_tos(int interactive)
1468{
Damien Miller5924ceb2003-11-22 15:02:42 +11001469#if defined(IP_TOS) && !defined(IP_TOS_IS_BROKEN)
Ben Lindstroma7433982002-12-23 02:41:41 +00001470 int tos = interactive ? IPTOS_LOWDELAY : IPTOS_THROUGHPUT;
1471
1472 if (!packet_connection_is_on_socket() ||
1473 !packet_connection_is_ipv4())
1474 return;
1475 if (setsockopt(connection_in, IPPROTO_IP, IP_TOS, &tos,
1476 sizeof(tos)) < 0)
1477 error("setsockopt IP_TOS %d: %.100s:",
1478 tos, strerror(errno));
Ben Lindstromc8a49d72003-04-02 15:18:22 +00001479#endif
Damien Miller5924ceb2003-11-22 15:02:42 +11001480}
Ben Lindstroma7433982002-12-23 02:41:41 +00001481
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001482/* Informs that the current session is interactive. Sets IP flags for that. */
1483
1484void
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001485packet_set_interactive(int interactive)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001486{
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001487 static int called = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001488
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001489 if (called)
1490 return;
1491 called = 1;
1492
Damien Miller95def091999-11-25 00:26:21 +11001493 /* Record that we are in interactive mode. */
1494 interactive_mode = interactive;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001495
Damien Miller34132e52000-01-14 15:45:46 +11001496 /* Only set socket options if using a socket. */
1497 if (!packet_connection_is_on_socket())
Ben Lindstrom93b6b772003-04-27 17:55:33 +00001498 return;
Damien Miller314dd4b2006-03-15 12:05:22 +11001499 set_nodelay(connection_in);
Ben Lindstroma7433982002-12-23 02:41:41 +00001500 packet_set_tos(interactive);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001501}
1502
1503/* Returns true if the current connection is interactive. */
1504
1505int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001506packet_is_interactive(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001507{
Damien Miller95def091999-11-25 00:26:21 +11001508 return interactive_mode;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001509}
Damien Miller6162d121999-11-21 13:23:52 +11001510
Darren Tucker1f8311c2004-05-13 16:39:33 +10001511int
Darren Tucker502d3842003-06-28 12:38:01 +10001512packet_set_maxsize(u_int s)
Damien Miller6162d121999-11-21 13:23:52 +11001513{
Damien Miller95def091999-11-25 00:26:21 +11001514 static int called = 0;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001515
Damien Miller95def091999-11-25 00:26:21 +11001516 if (called) {
Damien Miller996acd22003-04-09 20:59:48 +10001517 logit("packet_set_maxsize: called twice: old %d new %d",
Damien Miller33b13562000-04-04 14:38:59 +10001518 max_packet_size, s);
Damien Miller95def091999-11-25 00:26:21 +11001519 return -1;
1520 }
1521 if (s < 4 * 1024 || s > 1024 * 1024) {
Damien Miller996acd22003-04-09 20:59:48 +10001522 logit("packet_set_maxsize: bad size %d", s);
Damien Miller95def091999-11-25 00:26:21 +11001523 return -1;
1524 }
Ben Lindstromae3de4b2001-10-03 17:10:17 +00001525 called = 1;
Ben Lindstrom16d45b32001-06-13 04:39:18 +00001526 debug("packet_set_maxsize: setting to %d", s);
Damien Miller95def091999-11-25 00:26:21 +11001527 max_packet_size = s;
1528 return s;
Damien Miller6162d121999-11-21 13:23:52 +11001529}
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001530
Damien Miller9f643902001-11-12 11:02:52 +11001531/* roundup current message to pad bytes */
1532void
1533packet_add_padding(u_char pad)
1534{
1535 extra_pad = pad;
1536}
1537
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001538/*
1539 * 9.2. Ignored Data Message
Ben Lindstroma3700052001-04-05 23:26:32 +00001540 *
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001541 * byte SSH_MSG_IGNORE
1542 * string data
Ben Lindstroma3700052001-04-05 23:26:32 +00001543 *
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001544 * All implementations MUST understand (and ignore) this message at any
1545 * time (after receiving the protocol version). No implementation is
1546 * required to send them. This message can be used as an additional
1547 * protection measure against advanced traffic analysis techniques.
1548 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001549void
1550packet_send_ignore(int nbytes)
1551{
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001552 u_int32_t rnd = 0;
Ben Lindstrome229b252001-03-05 06:28:06 +00001553 int i;
1554
1555 packet_start(compat20 ? SSH2_MSG_IGNORE : SSH_MSG_IGNORE);
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001556 packet_put_int(nbytes);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001557 for (i = 0; i < nbytes; i++) {
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001558 if (i % 4 == 0)
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001559 rnd = arc4random();
Damien Miller8ba29fe2006-03-26 14:25:19 +11001560 packet_put_char((u_char)rnd & 0xff);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001561 rnd >>= 8;
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001562 }
1563}
Damien Millera5539d22003-04-09 20:50:06 +10001564
Darren Tucker1f8311c2004-05-13 16:39:33 +10001565#define MAX_PACKETS (1U<<31)
Damien Millera5539d22003-04-09 20:50:06 +10001566int
1567packet_need_rekeying(void)
1568{
1569 if (datafellows & SSH_BUG_NOREKEY)
1570 return 0;
1571 return
1572 (p_send.packets > MAX_PACKETS) ||
1573 (p_read.packets > MAX_PACKETS) ||
1574 (max_blocks_out && (p_send.blocks > max_blocks_out)) ||
1575 (max_blocks_in && (p_read.blocks > max_blocks_in));
1576}
1577
1578void
1579packet_set_rekey_limit(u_int32_t bytes)
1580{
1581 rekey_limit = bytes;
1582}
Damien Miller9786e6e2005-07-26 21:54:56 +10001583
1584void
1585packet_set_server(void)
1586{
1587 server_side = 1;
1588}
1589
1590void
1591packet_set_authenticated(void)
1592{
1593 after_authentication = 1;
1594}