blob: 5435b07172e5b6073a6b50fe7cb1a676efb93105 [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11003 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * This file contains code implementing the packet protocol and communication
6 * with the other side. This same code is used both on client and server side.
Damien Miller33b13562000-04-04 14:38:59 +10007 *
Damien Millere4340be2000-09-16 13:29:08 +11008 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
Damien Miller33b13562000-04-04 14:38:59 +100013 *
Damien Millere4340be2000-09-16 13:29:08 +110014 *
15 * SSH2 packet format added by Markus Friedl.
16 * Copyright (c) 2000 Markus Friedl. All rights reserved.
17 *
18 * Redistribution and use in source and binary forms, with or without
19 * modification, are permitted provided that the following conditions
20 * are met:
21 * 1. Redistributions of source code must retain the above copyright
22 * notice, this list of conditions and the following disclaimer.
23 * 2. Redistributions in binary form must reproduce the above copyright
24 * notice, this list of conditions and the following disclaimer in the
25 * documentation and/or other materials provided with the distribution.
26 *
27 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
28 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
29 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
30 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
31 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
32 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
33 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
34 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
35 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
36 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110037 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100038
39#include "includes.h"
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +000040RCSID("$OpenBSD: packet.c,v 1.41 2001/01/02 20:41:02 markus Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100041
42#include "xmalloc.h"
43#include "buffer.h"
44#include "packet.h"
45#include "bufaux.h"
46#include "ssh.h"
47#include "crc32.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100048#include "getput.h"
49
50#include "compress.h"
51#include "deattack.h"
Damien Millerb38eff82000-04-01 11:09:21 +100052#include "channels.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100053
Damien Miller33b13562000-04-04 14:38:59 +100054#include "compat.h"
55#include "ssh2.h"
56
Damien Miller5f056372000-04-16 12:31:48 +100057#include <openssl/bn.h>
58#include <openssl/dh.h>
59#include <openssl/hmac.h>
Damien Miller33b13562000-04-04 14:38:59 +100060#include "buffer.h"
Damien Miller874d77b2000-10-14 16:23:11 +110061#include "cipher.h"
Damien Miller33b13562000-04-04 14:38:59 +100062#include "kex.h"
63#include "hmac.h"
64
65#ifdef PACKET_DEBUG
66#define DBG(x) x
67#else
68#define DBG(x)
69#endif
70
Damien Miller5428f641999-11-25 11:54:57 +110071/*
72 * This variable contains the file descriptors used for communicating with
73 * the other side. connection_in is used for reading; connection_out for
74 * writing. These can be the same descriptor, in which case it is assumed to
75 * be a socket.
76 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100077static int connection_in = -1;
78static int connection_out = -1;
79
Damien Miller5428f641999-11-25 11:54:57 +110080/*
81 * Cipher type. This value is only used to determine whether to pad the
82 * packets with zeroes or random data.
83 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100084static int cipher_type = SSH_CIPHER_NONE;
85
86/* Protocol flags for the remote side. */
Ben Lindstrom46c16222000-12-22 01:43:59 +000087static u_int remote_protocol_flags = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100088
89/* Encryption context for receiving data. This is only used for decryption. */
90static CipherContext receive_context;
Damien Miller95def091999-11-25 00:26:21 +110091
92/* Encryption context for sending data. This is only used for encryption. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100093static CipherContext send_context;
94
95/* Buffer for raw input data from the socket. */
96static Buffer input;
97
98/* Buffer for raw output data going to the socket. */
99static Buffer output;
100
101/* Buffer for the partial outgoing packet being constructed. */
102static Buffer outgoing_packet;
103
104/* Buffer for the incoming packet currently being processed. */
105static Buffer incoming_packet;
106
107/* Scratch buffer for packet compression/decompression. */
108static Buffer compression_buffer;
109
110/* Flag indicating whether packet compression/decompression is enabled. */
111static int packet_compression = 0;
112
Damien Miller6162d121999-11-21 13:23:52 +1100113/* default maximum packet size */
114int max_packet_size = 32768;
115
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000116/* Flag indicating whether this module has been initialized. */
117static int initialized = 0;
118
119/* Set to true if the connection is interactive. */
120static int interactive_mode = 0;
121
Damien Miller33b13562000-04-04 14:38:59 +1000122/* True if SSH2 packet format is used */
123int use_ssh2_packet_format = 0;
124
125/* Session key information for Encryption and MAC */
126Kex *kex = NULL;
127
128void
129packet_set_kex(Kex *k)
130{
131 if( k->mac[MODE_IN ].key == NULL ||
132 k->enc[MODE_IN ].key == NULL ||
133 k->enc[MODE_IN ].iv == NULL ||
134 k->mac[MODE_OUT].key == NULL ||
135 k->enc[MODE_OUT].key == NULL ||
136 k->enc[MODE_OUT].iv == NULL)
137 fatal("bad KEX");
138 kex = k;
139}
140void
141clear_enc_keys(Enc *enc, int len)
142{
143 memset(enc->iv, 0, len);
144 memset(enc->key, 0, len);
145 xfree(enc->iv);
146 xfree(enc->key);
147 enc->iv = NULL;
148 enc->key = NULL;
149}
150void
151packet_set_ssh2_format(void)
152{
Damien Miller35dabd02000-05-01 21:10:33 +1000153 DBG(debug("use_ssh2_packet_format"));
Damien Miller33b13562000-04-04 14:38:59 +1000154 use_ssh2_packet_format = 1;
155}
156
Damien Miller5428f641999-11-25 11:54:57 +1100157/*
158 * Sets the descriptors used for communication. Disables encryption until
159 * packet_set_encryption_key is called.
160 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000161void
162packet_set_connection(int fd_in, int fd_out)
163{
Damien Miller874d77b2000-10-14 16:23:11 +1100164 Cipher *none = cipher_by_name("none");
165 if (none == NULL)
166 fatal("packet_set_connection: cannot load cipher 'none'");
Damien Miller95def091999-11-25 00:26:21 +1100167 connection_in = fd_in;
168 connection_out = fd_out;
169 cipher_type = SSH_CIPHER_NONE;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000170 cipher_init(&send_context, none, (u_char *) "", 0, NULL, 0);
171 cipher_init(&receive_context, none, (u_char *) "", 0, NULL, 0);
Damien Miller95def091999-11-25 00:26:21 +1100172 if (!initialized) {
173 initialized = 1;
174 buffer_init(&input);
175 buffer_init(&output);
176 buffer_init(&outgoing_packet);
177 buffer_init(&incoming_packet);
178 }
179 /* Kludge: arrange the close function to be called from fatal(). */
180 fatal_add_cleanup((void (*) (void *)) packet_close, NULL);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000181}
182
Damien Miller34132e52000-01-14 15:45:46 +1100183/* Returns 1 if remote host is connected via socket, 0 if not. */
184
185int
186packet_connection_is_on_socket()
187{
188 struct sockaddr_storage from, to;
189 socklen_t fromlen, tolen;
190
191 /* filedescriptors in and out are the same, so it's a socket */
192 if (connection_in == connection_out)
193 return 1;
194 fromlen = sizeof(from);
195 memset(&from, 0, sizeof(from));
Damien Millerf052aaf2000-01-22 19:47:21 +1100196 if (getpeername(connection_in, (struct sockaddr *)&from, &fromlen) < 0)
Damien Miller34132e52000-01-14 15:45:46 +1100197 return 0;
198 tolen = sizeof(to);
199 memset(&to, 0, sizeof(to));
Damien Millerf052aaf2000-01-22 19:47:21 +1100200 if (getpeername(connection_out, (struct sockaddr *)&to, &tolen) < 0)
Damien Miller34132e52000-01-14 15:45:46 +1100201 return 0;
202 if (fromlen != tolen || memcmp(&from, &to, fromlen) != 0)
203 return 0;
204 if (from.ss_family != AF_INET && from.ss_family != AF_INET6)
205 return 0;
206 return 1;
207}
208
209/* returns 1 if connection is via ipv4 */
210
211int
212packet_connection_is_ipv4()
213{
214 struct sockaddr_storage to;
Damien Miller6fe375d2000-01-23 09:38:00 +1100215 socklen_t tolen = sizeof(to);
Damien Miller34132e52000-01-14 15:45:46 +1100216
217 memset(&to, 0, sizeof(to));
218 if (getsockname(connection_out, (struct sockaddr *)&to, &tolen) < 0)
219 return 0;
220 if (to.ss_family != AF_INET)
221 return 0;
222 return 1;
223}
224
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000225/* Sets the connection into non-blocking mode. */
226
227void
228packet_set_nonblocking()
229{
Damien Miller95def091999-11-25 00:26:21 +1100230 /* Set the socket into non-blocking mode. */
231 if (fcntl(connection_in, F_SETFL, O_NONBLOCK) < 0)
232 error("fcntl O_NONBLOCK: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000233
Damien Miller95def091999-11-25 00:26:21 +1100234 if (connection_out != connection_in) {
235 if (fcntl(connection_out, F_SETFL, O_NONBLOCK) < 0)
236 error("fcntl O_NONBLOCK: %.100s", strerror(errno));
237 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000238}
239
240/* Returns the socket used for reading. */
241
242int
243packet_get_connection_in()
244{
Damien Miller95def091999-11-25 00:26:21 +1100245 return connection_in;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000246}
247
248/* Returns the descriptor used for writing. */
249
250int
251packet_get_connection_out()
252{
Damien Miller95def091999-11-25 00:26:21 +1100253 return connection_out;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000254}
255
256/* Closes the connection and clears and frees internal data structures. */
257
258void
259packet_close()
260{
Damien Miller95def091999-11-25 00:26:21 +1100261 if (!initialized)
262 return;
263 initialized = 0;
264 if (connection_in == connection_out) {
265 shutdown(connection_out, SHUT_RDWR);
266 close(connection_out);
267 } else {
268 close(connection_in);
269 close(connection_out);
270 }
271 buffer_free(&input);
272 buffer_free(&output);
273 buffer_free(&outgoing_packet);
274 buffer_free(&incoming_packet);
275 if (packet_compression) {
276 buffer_free(&compression_buffer);
277 buffer_compress_uninit();
278 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000279}
280
281/* Sets remote side protocol flags. */
282
283void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000284packet_set_protocol_flags(u_int protocol_flags)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000285{
Damien Miller95def091999-11-25 00:26:21 +1100286 remote_protocol_flags = protocol_flags;
287 channel_set_options((protocol_flags & SSH_PROTOFLAG_HOST_IN_FWD_OPEN) != 0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000288}
289
290/* Returns the remote protocol flags set earlier by the above function. */
291
Ben Lindstrom46c16222000-12-22 01:43:59 +0000292u_int
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000293packet_get_protocol_flags()
294{
Damien Miller95def091999-11-25 00:26:21 +1100295 return remote_protocol_flags;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000296}
297
Damien Miller5428f641999-11-25 11:54:57 +1100298/*
299 * Starts packet compression from the next packet on in both directions.
300 * Level is compression level 1 (fastest) - 9 (slow, best) as in gzip.
301 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000302
Damien Miller33b13562000-04-04 14:38:59 +1000303/*** XXXXX todo: kex means re-init */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000304void
305packet_start_compression(int level)
306{
Damien Miller95def091999-11-25 00:26:21 +1100307 if (packet_compression)
308 fatal("Compression already enabled.");
309 packet_compression = 1;
310 buffer_init(&compression_buffer);
311 buffer_compress_init(level);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000312}
313
Damien Miller5428f641999-11-25 11:54:57 +1100314/*
315 * Encrypts the given number of bytes, copying from src to dest. bytes is
316 * known to be a multiple of 8.
317 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000318
319void
Damien Miller95def091999-11-25 00:26:21 +1100320packet_encrypt(CipherContext * cc, void *dest, void *src,
Ben Lindstrom46c16222000-12-22 01:43:59 +0000321 u_int bytes)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000322{
Damien Miller95def091999-11-25 00:26:21 +1100323 cipher_encrypt(cc, dest, src, bytes);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000324}
325
Damien Miller5428f641999-11-25 11:54:57 +1100326/*
327 * Decrypts the given number of bytes, copying from src to dest. bytes is
328 * known to be a multiple of 8.
329 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000330
331void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000332packet_decrypt(CipherContext *context, void *dest, void *src, u_int bytes)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000333{
Damien Miller5428f641999-11-25 11:54:57 +1100334 /*
335 * Cryptographic attack detector for ssh - Modifications for packet.c
336 * (C)1998 CORE-SDI, Buenos Aires Argentina Ariel Futoransky(futo@core-sdi.com)
337 */
Damien Miller874d77b2000-10-14 16:23:11 +1100338 if (!compat20 &&
339 context->cipher->number != SSH_CIPHER_NONE &&
340 detect_attack(src, bytes, NULL) == DEATTACK_DETECTED)
Damien Miller95def091999-11-25 00:26:21 +1100341 packet_disconnect("crc32 compensation attack: network attack detected");
342
Damien Miller874d77b2000-10-14 16:23:11 +1100343 cipher_decrypt(context, dest, src, bytes);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000344}
345
Damien Miller5428f641999-11-25 11:54:57 +1100346/*
347 * Causes any further packets to be encrypted using the given key. The same
348 * key is used for both sending and reception. However, both directions are
349 * encrypted independently of each other.
350 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000351
352void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000353packet_set_encryption_key(const u_char *key, u_int keylen,
Damien Miller874d77b2000-10-14 16:23:11 +1100354 int number)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000355{
Damien Miller874d77b2000-10-14 16:23:11 +1100356 Cipher *cipher = cipher_by_number(number);
357 if (cipher == NULL)
358 fatal("packet_set_encryption_key: unknown cipher number %d", number);
Damien Miller33b13562000-04-04 14:38:59 +1000359 if (keylen < 20)
Damien Miller874d77b2000-10-14 16:23:11 +1100360 fatal("packet_set_encryption_key: keylen too small: %d", keylen);
361 cipher_init(&receive_context, cipher, key, keylen, NULL, 0);
362 cipher_init(&send_context, cipher, key, keylen, NULL, 0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000363}
364
365/* Starts constructing a packet to send. */
366
367void
Damien Miller33b13562000-04-04 14:38:59 +1000368packet_start1(int type)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000369{
Damien Miller95def091999-11-25 00:26:21 +1100370 char buf[9];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000371
Damien Miller95def091999-11-25 00:26:21 +1100372 buffer_clear(&outgoing_packet);
373 memset(buf, 0, 8);
374 buf[8] = type;
375 buffer_append(&outgoing_packet, buf, 9);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000376}
377
Damien Miller33b13562000-04-04 14:38:59 +1000378void
379packet_start2(int type)
380{
381 char buf[4+1+1];
382
383 buffer_clear(&outgoing_packet);
384 memset(buf, 0, sizeof buf);
385 /* buf[0..3] = payload_len; */
386 /* buf[4] = pad_len; */
387 buf[5] = type & 0xff;
388 buffer_append(&outgoing_packet, buf, sizeof buf);
389}
390
391void
392packet_start(int type)
393{
394 DBG(debug("packet_start[%d]",type));
395 if (use_ssh2_packet_format)
396 packet_start2(type);
397 else
398 packet_start1(type);
399}
400
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000401/* Appends a character to the packet data. */
402
403void
404packet_put_char(int value)
405{
Damien Miller95def091999-11-25 00:26:21 +1100406 char ch = value;
407 buffer_append(&outgoing_packet, &ch, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000408}
409
410/* Appends an integer to the packet data. */
411
412void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000413packet_put_int(u_int value)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000414{
Damien Miller95def091999-11-25 00:26:21 +1100415 buffer_put_int(&outgoing_packet, value);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000416}
417
418/* Appends a string to packet data. */
419
420void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000421packet_put_string(const char *buf, u_int len)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000422{
Damien Miller95def091999-11-25 00:26:21 +1100423 buffer_put_string(&outgoing_packet, buf, len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000424}
Damien Miller33b13562000-04-04 14:38:59 +1000425void
426packet_put_cstring(const char *str)
427{
428 buffer_put_string(&outgoing_packet, str, strlen(str));
429}
430
431void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000432packet_put_raw(const char *buf, u_int len)
Damien Miller33b13562000-04-04 14:38:59 +1000433{
434 buffer_append(&outgoing_packet, buf, len);
435}
436
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000437
438/* Appends an arbitrary precision integer to packet data. */
439
440void
Damien Miller95def091999-11-25 00:26:21 +1100441packet_put_bignum(BIGNUM * value)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000442{
Damien Miller95def091999-11-25 00:26:21 +1100443 buffer_put_bignum(&outgoing_packet, value);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000444}
Damien Miller33b13562000-04-04 14:38:59 +1000445void
446packet_put_bignum2(BIGNUM * value)
447{
448 buffer_put_bignum2(&outgoing_packet, value);
449}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000450
Damien Miller5428f641999-11-25 11:54:57 +1100451/*
452 * Finalizes and sends the packet. If the encryption key has been set,
453 * encrypts the packet before sending.
454 */
Damien Miller95def091999-11-25 00:26:21 +1100455
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000456void
Damien Miller33b13562000-04-04 14:38:59 +1000457packet_send1()
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000458{
Damien Miller95def091999-11-25 00:26:21 +1100459 char buf[8], *cp;
460 int i, padding, len;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000461 u_int checksum;
Damien Miller95def091999-11-25 00:26:21 +1100462 u_int32_t rand = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000463
Damien Miller5428f641999-11-25 11:54:57 +1100464 /*
465 * If using packet compression, compress the payload of the outgoing
466 * packet.
467 */
Damien Miller95def091999-11-25 00:26:21 +1100468 if (packet_compression) {
469 buffer_clear(&compression_buffer);
470 /* Skip padding. */
471 buffer_consume(&outgoing_packet, 8);
472 /* padding */
473 buffer_append(&compression_buffer, "\0\0\0\0\0\0\0\0", 8);
474 buffer_compress(&outgoing_packet, &compression_buffer);
475 buffer_clear(&outgoing_packet);
476 buffer_append(&outgoing_packet, buffer_ptr(&compression_buffer),
477 buffer_len(&compression_buffer));
478 }
479 /* Compute packet length without padding (add checksum, remove padding). */
480 len = buffer_len(&outgoing_packet) + 4 - 8;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000481
Damien Millere247cc42000-05-07 12:03:14 +1000482 /* Insert padding. Initialized to zero in packet_start1() */
Damien Miller95def091999-11-25 00:26:21 +1100483 padding = 8 - len % 8;
484 if (cipher_type != SSH_CIPHER_NONE) {
485 cp = buffer_ptr(&outgoing_packet);
486 for (i = 0; i < padding; i++) {
487 if (i % 4 == 0)
488 rand = arc4random();
489 cp[7 - i] = rand & 0xff;
490 rand >>= 8;
491 }
492 }
493 buffer_consume(&outgoing_packet, 8 - padding);
494
495 /* Add check bytes. */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000496 checksum = ssh_crc32((u_char *) buffer_ptr(&outgoing_packet),
Damien Millerad833b32000-08-23 10:46:23 +1000497 buffer_len(&outgoing_packet));
Damien Miller95def091999-11-25 00:26:21 +1100498 PUT_32BIT(buf, checksum);
499 buffer_append(&outgoing_packet, buf, 4);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000500
501#ifdef PACKET_DEBUG
Damien Miller95def091999-11-25 00:26:21 +1100502 fprintf(stderr, "packet_send plain: ");
503 buffer_dump(&outgoing_packet);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000504#endif
505
Damien Miller95def091999-11-25 00:26:21 +1100506 /* Append to output. */
507 PUT_32BIT(buf, len);
508 buffer_append(&output, buf, 4);
509 buffer_append_space(&output, &cp, buffer_len(&outgoing_packet));
510 packet_encrypt(&send_context, cp, buffer_ptr(&outgoing_packet),
511 buffer_len(&outgoing_packet));
512
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000513#ifdef PACKET_DEBUG
Damien Miller95def091999-11-25 00:26:21 +1100514 fprintf(stderr, "encrypted: ");
515 buffer_dump(&output);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000516#endif
517
Damien Miller95def091999-11-25 00:26:21 +1100518 buffer_clear(&outgoing_packet);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000519
Damien Miller5428f641999-11-25 11:54:57 +1100520 /*
521 * Note that the packet is now only buffered in output. It won\'t be
522 * actually sent until packet_write_wait or packet_write_poll is
523 * called.
524 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000525}
526
Damien Miller5428f641999-11-25 11:54:57 +1100527/*
Damien Miller33b13562000-04-04 14:38:59 +1000528 * Finalize packet in SSH2 format (compress, mac, encrypt, enqueue)
529 */
530void
531packet_send2()
532{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000533 u_char *macbuf = NULL;
Damien Miller33b13562000-04-04 14:38:59 +1000534 char *cp;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000535 u_int packet_length = 0;
536 u_int i, padlen, len;
Damien Miller33b13562000-04-04 14:38:59 +1000537 u_int32_t rand = 0;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000538 static u_int seqnr = 0;
Damien Miller33b13562000-04-04 14:38:59 +1000539 int type;
540 Enc *enc = NULL;
541 Mac *mac = NULL;
542 Comp *comp = NULL;
543 int block_size;
544
545 if (kex != NULL) {
546 enc = &kex->enc[MODE_OUT];
547 mac = &kex->mac[MODE_OUT];
548 comp = &kex->comp[MODE_OUT];
549 }
Damien Miller874d77b2000-10-14 16:23:11 +1100550 block_size = enc ? enc->cipher->block_size : 8;
Damien Miller33b13562000-04-04 14:38:59 +1000551
552 cp = buffer_ptr(&outgoing_packet);
553 type = cp[5] & 0xff;
554
555#ifdef PACKET_DEBUG
556 fprintf(stderr, "plain: ");
557 buffer_dump(&outgoing_packet);
558#endif
559
560 if (comp && comp->enabled) {
561 len = buffer_len(&outgoing_packet);
562 /* skip header, compress only payload */
563 buffer_consume(&outgoing_packet, 5);
564 buffer_clear(&compression_buffer);
565 buffer_compress(&outgoing_packet, &compression_buffer);
566 buffer_clear(&outgoing_packet);
567 buffer_append(&outgoing_packet, "\0\0\0\0\0", 5);
568 buffer_append(&outgoing_packet, buffer_ptr(&compression_buffer),
569 buffer_len(&compression_buffer));
570 DBG(debug("compression: raw %d compressed %d", len,
571 buffer_len(&outgoing_packet)));
572 }
573
574 /* sizeof (packet_len + pad_len + payload) */
575 len = buffer_len(&outgoing_packet);
576
577 /*
578 * calc size of padding, alloc space, get random data,
579 * minimum padding is 4 bytes
580 */
581 padlen = block_size - (len % block_size);
582 if (padlen < 4)
583 padlen += block_size;
584 buffer_append_space(&outgoing_packet, &cp, padlen);
Damien Miller874d77b2000-10-14 16:23:11 +1100585 if (enc && enc->cipher->number != SSH_CIPHER_NONE) {
Damien Millere247cc42000-05-07 12:03:14 +1000586 /* random padding */
Damien Miller33b13562000-04-04 14:38:59 +1000587 for (i = 0; i < padlen; i++) {
588 if (i % 4 == 0)
589 rand = arc4random();
590 cp[i] = rand & 0xff;
591 rand <<= 8;
592 }
Damien Millere247cc42000-05-07 12:03:14 +1000593 } else {
594 /* clear padding */
595 memset(cp, 0, padlen);
Damien Miller33b13562000-04-04 14:38:59 +1000596 }
597 /* packet_length includes payload, padding and padding length field */
598 packet_length = buffer_len(&outgoing_packet) - 4;
599 cp = buffer_ptr(&outgoing_packet);
600 PUT_32BIT(cp, packet_length);
601 cp[4] = padlen & 0xff;
602 DBG(debug("send: len %d (includes padlen %d)", packet_length+4, padlen));
603
604 /* compute MAC over seqnr and packet(length fields, payload, padding) */
605 if (mac && mac->enabled) {
606 macbuf = hmac( mac->md, seqnr,
Ben Lindstrom46c16222000-12-22 01:43:59 +0000607 (u_char *) buffer_ptr(&outgoing_packet),
Damien Miller33b13562000-04-04 14:38:59 +1000608 buffer_len(&outgoing_packet),
609 mac->key, mac->key_len
610 );
Damien Miller874d77b2000-10-14 16:23:11 +1100611 DBG(debug("done calc MAC out #%d", seqnr));
Damien Miller33b13562000-04-04 14:38:59 +1000612 }
613 /* encrypt packet and append to output buffer. */
614 buffer_append_space(&output, &cp, buffer_len(&outgoing_packet));
615 packet_encrypt(&send_context, cp, buffer_ptr(&outgoing_packet),
616 buffer_len(&outgoing_packet));
617 /* append unencrypted MAC */
618 if (mac && mac->enabled)
619 buffer_append(&output, (char *)macbuf, mac->mac_len);
620#ifdef PACKET_DEBUG
621 fprintf(stderr, "encrypted: ");
622 buffer_dump(&output);
623#endif
Damien Miller4af51302000-04-16 11:18:38 +1000624 /* increment sequence number for outgoing packets */
625 if (++seqnr == 0)
626 log("outgoing seqnr wraps around");
Damien Miller33b13562000-04-04 14:38:59 +1000627 buffer_clear(&outgoing_packet);
628
629 if (type == SSH2_MSG_NEWKEYS) {
630 if (kex==NULL || mac==NULL || enc==NULL || comp==NULL)
631 fatal("packet_send2: no KEX");
632 if (mac->md != NULL)
633 mac->enabled = 1;
Damien Miller874d77b2000-10-14 16:23:11 +1100634 DBG(debug("cipher_init send_context"));
635 cipher_init(&send_context, enc->cipher,
636 enc->key, enc->cipher->key_len,
637 enc->iv, enc->cipher->block_size);
Damien Miller33b13562000-04-04 14:38:59 +1000638 clear_enc_keys(enc, kex->we_need);
639 if (comp->type != 0 && comp->enabled == 0) {
640 comp->enabled = 1;
641 if (! packet_compression)
642 packet_start_compression(6);
643 }
644 }
645}
646
647void
648packet_send()
649{
650 if (use_ssh2_packet_format)
651 packet_send2();
652 else
653 packet_send1();
654 DBG(debug("packet_send done"));
655}
656
Damien Miller33b13562000-04-04 14:38:59 +1000657/*
Damien Miller5428f641999-11-25 11:54:57 +1100658 * Waits until a packet has been received, and returns its type. Note that
659 * no other data is processed until this returns, so this function should not
660 * be used during the interactive session.
661 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000662
663int
664packet_read(int *payload_len_ptr)
665{
Damien Miller95def091999-11-25 00:26:21 +1100666 int type, len;
667 fd_set set;
668 char buf[8192];
Damien Miller33b13562000-04-04 14:38:59 +1000669 DBG(debug("packet_read()"));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000670
Damien Miller95def091999-11-25 00:26:21 +1100671 /* Since we are blocking, ensure that all written packets have been sent. */
672 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000673
Damien Miller95def091999-11-25 00:26:21 +1100674 /* Stay in the loop until we have received a complete packet. */
675 for (;;) {
676 /* Try to read a packet from the buffer. */
677 type = packet_read_poll(payload_len_ptr);
Damien Millere247cc42000-05-07 12:03:14 +1000678 if (!use_ssh2_packet_format && (
679 type == SSH_SMSG_SUCCESS
Damien Miller95def091999-11-25 00:26:21 +1100680 || type == SSH_SMSG_FAILURE
681 || type == SSH_CMSG_EOF
Damien Millere247cc42000-05-07 12:03:14 +1000682 || type == SSH_CMSG_EXIT_CONFIRMATION))
Damien Miller95def091999-11-25 00:26:21 +1100683 packet_integrity_check(*payload_len_ptr, 0, type);
684 /* If we got a packet, return it. */
685 if (type != SSH_MSG_NONE)
686 return type;
Damien Miller5428f641999-11-25 11:54:57 +1100687 /*
688 * Otherwise, wait for some data to arrive, add it to the
689 * buffer, and try again.
690 */
Damien Miller95def091999-11-25 00:26:21 +1100691 FD_ZERO(&set);
692 FD_SET(connection_in, &set);
Damien Miller5428f641999-11-25 11:54:57 +1100693
Damien Miller95def091999-11-25 00:26:21 +1100694 /* Wait for some data to arrive. */
695 select(connection_in + 1, &set, NULL, NULL, NULL);
Damien Miller5428f641999-11-25 11:54:57 +1100696
Damien Miller95def091999-11-25 00:26:21 +1100697 /* Read data from the socket. */
698 len = read(connection_in, buf, sizeof(buf));
Damien Miller5e7c10e1999-12-16 13:18:04 +1100699 if (len == 0) {
700 log("Connection closed by %.200s", get_remote_ipaddr());
701 fatal_cleanup();
702 }
Damien Miller95def091999-11-25 00:26:21 +1100703 if (len < 0)
704 fatal("Read from socket failed: %.100s", strerror(errno));
705 /* Append it to the buffer. */
706 packet_process_incoming(buf, len);
707 }
708 /* NOTREACHED */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000709}
710
Damien Miller5428f641999-11-25 11:54:57 +1100711/*
712 * Waits until a packet has been received, verifies that its type matches
713 * that given, and gives a fatal error and exits if there is a mismatch.
714 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000715
716void
717packet_read_expect(int *payload_len_ptr, int expected_type)
718{
Damien Miller95def091999-11-25 00:26:21 +1100719 int type;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000720
Damien Miller95def091999-11-25 00:26:21 +1100721 type = packet_read(payload_len_ptr);
722 if (type != expected_type)
723 packet_disconnect("Protocol error: expected packet type %d, got %d",
Damien Miller33b13562000-04-04 14:38:59 +1000724 expected_type, type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000725}
726
727/* Checks if a full packet is available in the data received so far via
Damien Miller95def091999-11-25 00:26:21 +1100728 * packet_process_incoming. If so, reads the packet; otherwise returns
729 * SSH_MSG_NONE. This does not wait for data from the connection.
730 *
731 * SSH_MSG_DISCONNECT is handled specially here. Also,
732 * SSH_MSG_IGNORE messages are skipped by this function and are never returned
733 * to higher levels.
734 *
735 * The returned payload_len does include space consumed by:
736 * Packet length
737 * Padding
738 * Packet type
739 * Check bytes
740 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000741
742int
Damien Miller33b13562000-04-04 14:38:59 +1000743packet_read_poll1(int *payload_len_ptr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000744{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000745 u_int len, padded_len;
746 u_char *ucp;
Damien Miller33b13562000-04-04 14:38:59 +1000747 char buf[8], *cp;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000748 u_int checksum, stored_checksum;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000749
Damien Miller95def091999-11-25 00:26:21 +1100750 /* Check if input size is less than minimum packet size. */
751 if (buffer_len(&input) < 4 + 8)
752 return SSH_MSG_NONE;
753 /* Get length of incoming packet. */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000754 ucp = (u_char *) buffer_ptr(&input);
Damien Miller95def091999-11-25 00:26:21 +1100755 len = GET_32BIT(ucp);
756 if (len < 1 + 2 + 2 || len > 256 * 1024)
757 packet_disconnect("Bad packet length %d.", len);
758 padded_len = (len + 8) & ~7;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000759
Damien Miller95def091999-11-25 00:26:21 +1100760 /* Check if the packet has been entirely received. */
761 if (buffer_len(&input) < 4 + padded_len)
762 return SSH_MSG_NONE;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000763
Damien Miller95def091999-11-25 00:26:21 +1100764 /* The entire packet is in buffer. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000765
Damien Miller95def091999-11-25 00:26:21 +1100766 /* Consume packet length. */
767 buffer_consume(&input, 4);
768
769 /* Copy data to incoming_packet. */
770 buffer_clear(&incoming_packet);
771 buffer_append_space(&incoming_packet, &cp, padded_len);
772 packet_decrypt(&receive_context, cp, buffer_ptr(&input), padded_len);
773 buffer_consume(&input, padded_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000774
775#ifdef PACKET_DEBUG
Damien Miller95def091999-11-25 00:26:21 +1100776 fprintf(stderr, "read_poll plain: ");
777 buffer_dump(&incoming_packet);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000778#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000779
Damien Miller95def091999-11-25 00:26:21 +1100780 /* Compute packet checksum. */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000781 checksum = ssh_crc32((u_char *) buffer_ptr(&incoming_packet),
Damien Miller33b13562000-04-04 14:38:59 +1000782 buffer_len(&incoming_packet) - 4);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000783
Damien Miller95def091999-11-25 00:26:21 +1100784 /* Skip padding. */
785 buffer_consume(&incoming_packet, 8 - len % 8);
Damien Millerfd7c9111999-11-08 16:15:55 +1100786
Damien Miller95def091999-11-25 00:26:21 +1100787 /* Test check bytes. */
Damien Millerfd7c9111999-11-08 16:15:55 +1100788
Damien Miller95def091999-11-25 00:26:21 +1100789 if (len != buffer_len(&incoming_packet))
790 packet_disconnect("packet_read_poll: len %d != buffer_len %d.",
Damien Miller33b13562000-04-04 14:38:59 +1000791 len, buffer_len(&incoming_packet));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000792
Ben Lindstrom46c16222000-12-22 01:43:59 +0000793 ucp = (u_char *) buffer_ptr(&incoming_packet) + len - 4;
Damien Miller95def091999-11-25 00:26:21 +1100794 stored_checksum = GET_32BIT(ucp);
795 if (checksum != stored_checksum)
796 packet_disconnect("Corrupted check bytes on input.");
797 buffer_consume_end(&incoming_packet, 4);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000798
Damien Miller95def091999-11-25 00:26:21 +1100799 /* If using packet compression, decompress the packet. */
800 if (packet_compression) {
801 buffer_clear(&compression_buffer);
802 buffer_uncompress(&incoming_packet, &compression_buffer);
803 buffer_clear(&incoming_packet);
804 buffer_append(&incoming_packet, buffer_ptr(&compression_buffer),
Damien Miller33b13562000-04-04 14:38:59 +1000805 buffer_len(&compression_buffer));
Damien Miller95def091999-11-25 00:26:21 +1100806 }
807 /* Get packet type. */
808 buffer_get(&incoming_packet, &buf[0], 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000809
Damien Miller95def091999-11-25 00:26:21 +1100810 /* Return length of payload (without type field). */
811 *payload_len_ptr = buffer_len(&incoming_packet);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000812
Damien Miller95def091999-11-25 00:26:21 +1100813 /* Return type. */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000814 return (u_char) buf[0];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000815}
Damien Miller95def091999-11-25 00:26:21 +1100816
Damien Miller33b13562000-04-04 14:38:59 +1000817int
818packet_read_poll2(int *payload_len_ptr)
819{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000820 u_int padlen, need;
821 u_char buf[8], *macbuf;
822 u_char *ucp;
Damien Miller33b13562000-04-04 14:38:59 +1000823 char *cp;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000824 static u_int packet_length = 0;
825 static u_int seqnr = 0;
Damien Miller33b13562000-04-04 14:38:59 +1000826 int type;
827 int maclen, block_size;
828 Enc *enc = NULL;
829 Mac *mac = NULL;
830 Comp *comp = NULL;
831
832 if (kex != NULL) {
833 enc = &kex->enc[MODE_IN];
834 mac = &kex->mac[MODE_IN];
835 comp = &kex->comp[MODE_IN];
836 }
837 maclen = mac && mac->enabled ? mac->mac_len : 0;
Damien Miller874d77b2000-10-14 16:23:11 +1100838 block_size = enc ? enc->cipher->block_size : 8;
Damien Miller33b13562000-04-04 14:38:59 +1000839
840 if (packet_length == 0) {
841 /*
842 * check if input size is less than the cipher block size,
843 * decrypt first block and extract length of incoming packet
844 */
845 if (buffer_len(&input) < block_size)
846 return SSH_MSG_NONE;
847 buffer_clear(&incoming_packet);
848 buffer_append_space(&incoming_packet, &cp, block_size);
849 packet_decrypt(&receive_context, cp, buffer_ptr(&input),
850 block_size);
Ben Lindstrom46c16222000-12-22 01:43:59 +0000851 ucp = (u_char *) buffer_ptr(&incoming_packet);
Damien Miller33b13562000-04-04 14:38:59 +1000852 packet_length = GET_32BIT(ucp);
853 if (packet_length < 1 + 4 || packet_length > 256 * 1024) {
854 buffer_dump(&incoming_packet);
855 packet_disconnect("Bad packet length %d.", packet_length);
856 }
857 DBG(debug("input: packet len %d", packet_length+4));
858 buffer_consume(&input, block_size);
859 }
860 /* we have a partial packet of block_size bytes */
861 need = 4 + packet_length - block_size;
862 DBG(debug("partial packet %d, need %d, maclen %d", block_size,
863 need, maclen));
864 if (need % block_size != 0)
865 fatal("padding error: need %d block %d mod %d",
866 need, block_size, need % block_size);
867 /*
868 * check if the entire packet has been received and
869 * decrypt into incoming_packet
870 */
871 if (buffer_len(&input) < need + maclen)
872 return SSH_MSG_NONE;
873#ifdef PACKET_DEBUG
874 fprintf(stderr, "read_poll enc/full: ");
875 buffer_dump(&input);
876#endif
877 buffer_append_space(&incoming_packet, &cp, need);
878 packet_decrypt(&receive_context, cp, buffer_ptr(&input), need);
879 buffer_consume(&input, need);
880 /*
881 * compute MAC over seqnr and packet,
882 * increment sequence number for incoming packet
883 */
Damien Miller4af51302000-04-16 11:18:38 +1000884 if (mac && mac->enabled) {
Damien Miller33b13562000-04-04 14:38:59 +1000885 macbuf = hmac( mac->md, seqnr,
Ben Lindstrom46c16222000-12-22 01:43:59 +0000886 (u_char *) buffer_ptr(&incoming_packet),
Damien Miller33b13562000-04-04 14:38:59 +1000887 buffer_len(&incoming_packet),
888 mac->key, mac->key_len
889 );
890 if (memcmp(macbuf, buffer_ptr(&input), mac->mac_len) != 0)
Damien Miller874d77b2000-10-14 16:23:11 +1100891 packet_disconnect("Corrupted MAC on input.");
892 DBG(debug("MAC #%d ok", seqnr));
Damien Miller33b13562000-04-04 14:38:59 +1000893 buffer_consume(&input, mac->mac_len);
894 }
Damien Miller4af51302000-04-16 11:18:38 +1000895 if (++seqnr == 0)
896 log("incoming seqnr wraps around");
Damien Miller33b13562000-04-04 14:38:59 +1000897
898 /* get padlen */
899 cp = buffer_ptr(&incoming_packet) + 4;
900 padlen = *cp & 0xff;
901 DBG(debug("input: padlen %d", padlen));
902 if (padlen < 4)
903 packet_disconnect("Corrupted padlen %d on input.", padlen);
904
905 /* skip packet size + padlen, discard padding */
906 buffer_consume(&incoming_packet, 4 + 1);
907 buffer_consume_end(&incoming_packet, padlen);
908
909 DBG(debug("input: len before de-compress %d", buffer_len(&incoming_packet)));
910 if (comp && comp->enabled) {
911 buffer_clear(&compression_buffer);
912 buffer_uncompress(&incoming_packet, &compression_buffer);
913 buffer_clear(&incoming_packet);
914 buffer_append(&incoming_packet, buffer_ptr(&compression_buffer),
915 buffer_len(&compression_buffer));
916 DBG(debug("input: len after de-compress %d", buffer_len(&incoming_packet)));
917 }
918 /*
919 * get packet type, implies consume.
920 * return length of payload (without type field)
921 */
922 buffer_get(&incoming_packet, (char *)&buf[0], 1);
923 *payload_len_ptr = buffer_len(&incoming_packet);
924
925 /* reset for next packet */
926 packet_length = 0;
927
928 /* extract packet type */
Ben Lindstrom46c16222000-12-22 01:43:59 +0000929 type = (u_char)buf[0];
Damien Miller33b13562000-04-04 14:38:59 +1000930
931 if (type == SSH2_MSG_NEWKEYS) {
932 if (kex==NULL || mac==NULL || enc==NULL || comp==NULL)
933 fatal("packet_read_poll2: no KEX");
934 if (mac->md != NULL)
935 mac->enabled = 1;
Damien Miller874d77b2000-10-14 16:23:11 +1100936 DBG(debug("cipher_init receive_context"));
937 cipher_init(&receive_context, enc->cipher,
938 enc->key, enc->cipher->key_len,
939 enc->iv, enc->cipher->block_size);
Damien Miller33b13562000-04-04 14:38:59 +1000940 clear_enc_keys(enc, kex->we_need);
941 if (comp->type != 0 && comp->enabled == 0) {
942 comp->enabled = 1;
943 if (! packet_compression)
944 packet_start_compression(6);
945 }
946 }
947
948#ifdef PACKET_DEBUG
949 fprintf(stderr, "read/plain[%d]:\r\n",type);
950 buffer_dump(&incoming_packet);
951#endif
Ben Lindstrom46c16222000-12-22 01:43:59 +0000952 return (u_char)type;
Damien Miller33b13562000-04-04 14:38:59 +1000953}
954
955int
956packet_read_poll(int *payload_len_ptr)
957{
958 char *msg;
959 for (;;) {
960 int type = use_ssh2_packet_format ?
961 packet_read_poll2(payload_len_ptr):
962 packet_read_poll1(payload_len_ptr);
963
964 if(compat20) {
965 int reason;
966 if (type != 0)
967 DBG(debug("received packet type %d", type));
968 switch(type) {
969 case SSH2_MSG_IGNORE:
970 break;
971 case SSH2_MSG_DEBUG:
972 packet_get_char();
973 msg = packet_get_string(NULL);
974 debug("Remote: %.900s", msg);
975 xfree(msg);
976 msg = packet_get_string(NULL);
977 xfree(msg);
978 break;
979 case SSH2_MSG_DISCONNECT:
980 reason = packet_get_int();
981 msg = packet_get_string(NULL);
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +0000982 log("Received disconnect from %s: %d: %.400s", get_remote_ipaddr(),
983 reason, msg);
Damien Miller33b13562000-04-04 14:38:59 +1000984 xfree(msg);
985 fatal_cleanup();
986 break;
987 default:
988 return type;
989 break;
990 }
991 } else {
992 switch(type) {
993 case SSH_MSG_IGNORE:
994 break;
995 case SSH_MSG_DEBUG:
996 msg = packet_get_string(NULL);
997 debug("Remote: %.900s", msg);
998 xfree(msg);
999 break;
1000 case SSH_MSG_DISCONNECT:
1001 msg = packet_get_string(NULL);
Ben Lindstrom5c1fbab2001-01-03 03:51:15 +00001002 log("Received disconnect from %s: %.400s", get_remote_ipaddr(),
1003 msg);
Damien Miller33b13562000-04-04 14:38:59 +10001004 fatal_cleanup();
1005 xfree(msg);
1006 break;
1007 default:
1008 if (type != 0)
1009 DBG(debug("received packet type %d", type));
1010 return type;
1011 break;
1012 }
1013 }
1014 }
1015}
1016
Damien Miller5428f641999-11-25 11:54:57 +11001017/*
1018 * Buffers the given amount of input characters. This is intended to be used
1019 * together with packet_read_poll.
1020 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001021
1022void
Ben Lindstrom46c16222000-12-22 01:43:59 +00001023packet_process_incoming(const char *buf, u_int len)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001024{
Damien Miller95def091999-11-25 00:26:21 +11001025 buffer_append(&input, buf, len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001026}
1027
1028/* Returns a character from the packet. */
1029
Ben Lindstrom46c16222000-12-22 01:43:59 +00001030u_int
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001031packet_get_char()
1032{
Damien Miller95def091999-11-25 00:26:21 +11001033 char ch;
1034 buffer_get(&incoming_packet, &ch, 1);
Ben Lindstrom46c16222000-12-22 01:43:59 +00001035 return (u_char) ch;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001036}
1037
1038/* Returns an integer from the packet data. */
1039
Ben Lindstrom46c16222000-12-22 01:43:59 +00001040u_int
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001041packet_get_int()
1042{
Damien Miller95def091999-11-25 00:26:21 +11001043 return buffer_get_int(&incoming_packet);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001044}
1045
Damien Miller5428f641999-11-25 11:54:57 +11001046/*
1047 * Returns an arbitrary precision integer from the packet data. The integer
1048 * must have been initialized before this call.
1049 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001050
1051void
Damien Miller95def091999-11-25 00:26:21 +11001052packet_get_bignum(BIGNUM * value, int *length_ptr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001053{
Damien Miller95def091999-11-25 00:26:21 +11001054 *length_ptr = buffer_get_bignum(&incoming_packet, value);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001055}
1056
Damien Miller33b13562000-04-04 14:38:59 +10001057void
1058packet_get_bignum2(BIGNUM * value, int *length_ptr)
1059{
1060 *length_ptr = buffer_get_bignum2(&incoming_packet, value);
1061}
1062
1063char *
1064packet_get_raw(int *length_ptr)
1065{
1066 int bytes = buffer_len(&incoming_packet);
1067 if (length_ptr != NULL)
1068 *length_ptr = bytes;
1069 return buffer_ptr(&incoming_packet);
1070}
1071
Damien Miller4af51302000-04-16 11:18:38 +10001072int
1073packet_remaining(void)
1074{
1075 return buffer_len(&incoming_packet);
1076}
1077
Damien Miller5428f641999-11-25 11:54:57 +11001078/*
1079 * Returns a string from the packet data. The string is allocated using
1080 * xmalloc; it is the responsibility of the calling program to free it when
1081 * no longer needed. The length_ptr argument may be NULL, or point to an
1082 * integer into which the length of the string is stored.
1083 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001084
Damien Miller5428f641999-11-25 11:54:57 +11001085char *
Ben Lindstrom46c16222000-12-22 01:43:59 +00001086packet_get_string(u_int *length_ptr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001087{
Damien Miller95def091999-11-25 00:26:21 +11001088 return buffer_get_string(&incoming_packet, length_ptr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001089}
1090
Damien Miller5428f641999-11-25 11:54:57 +11001091/*
1092 * Sends a diagnostic message from the server to the client. This message
1093 * can be sent at any time (but not while constructing another message). The
1094 * message is printed immediately, but only if the client is being executed
1095 * in verbose mode. These messages are primarily intended to ease debugging
1096 * authentication problems. The length of the formatted message must not
1097 * exceed 1024 bytes. This will automatically call packet_write_wait.
1098 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001099
1100void
Damien Miller95def091999-11-25 00:26:21 +11001101packet_send_debug(const char *fmt,...)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001102{
Damien Miller95def091999-11-25 00:26:21 +11001103 char buf[1024];
1104 va_list args;
1105
Ben Lindstroma14ee472000-12-07 01:24:58 +00001106 if (compat20 && (datafellows & SSH_BUG_DEBUG))
1107 return;
1108
Damien Miller95def091999-11-25 00:26:21 +11001109 va_start(args, fmt);
1110 vsnprintf(buf, sizeof(buf), fmt, args);
1111 va_end(args);
1112
Damien Miller7c8af4f2000-05-01 08:24:07 +10001113 if (compat20) {
1114 packet_start(SSH2_MSG_DEBUG);
1115 packet_put_char(0); /* bool: always display */
1116 packet_put_cstring(buf);
1117 packet_put_cstring("");
1118 } else {
1119 packet_start(SSH_MSG_DEBUG);
1120 packet_put_cstring(buf);
1121 }
Damien Miller95def091999-11-25 00:26:21 +11001122 packet_send();
1123 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001124}
1125
Damien Miller5428f641999-11-25 11:54:57 +11001126/*
1127 * Logs the error plus constructs and sends a disconnect packet, closes the
1128 * connection, and exits. This function never returns. The error message
1129 * should not contain a newline. The length of the formatted message must
1130 * not exceed 1024 bytes.
1131 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001132
1133void
Damien Miller95def091999-11-25 00:26:21 +11001134packet_disconnect(const char *fmt,...)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001135{
Damien Miller95def091999-11-25 00:26:21 +11001136 char buf[1024];
1137 va_list args;
1138 static int disconnecting = 0;
1139 if (disconnecting) /* Guard against recursive invocations. */
1140 fatal("packet_disconnect called recursively.");
1141 disconnecting = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001142
Damien Miller5428f641999-11-25 11:54:57 +11001143 /*
1144 * Format the message. Note that the caller must make sure the
1145 * message is of limited size.
1146 */
Damien Miller95def091999-11-25 00:26:21 +11001147 va_start(args, fmt);
1148 vsnprintf(buf, sizeof(buf), fmt, args);
1149 va_end(args);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001150
Damien Miller95def091999-11-25 00:26:21 +11001151 /* Send the disconnect message to the other side, and wait for it to get sent. */
Damien Miller33b13562000-04-04 14:38:59 +10001152 if (compat20) {
1153 packet_start(SSH2_MSG_DISCONNECT);
1154 packet_put_int(SSH2_DISCONNECT_PROTOCOL_ERROR);
1155 packet_put_cstring(buf);
1156 packet_put_cstring("");
1157 } else {
1158 packet_start(SSH_MSG_DISCONNECT);
1159 packet_put_string(buf, strlen(buf));
1160 }
Damien Miller95def091999-11-25 00:26:21 +11001161 packet_send();
1162 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001163
Damien Miller95def091999-11-25 00:26:21 +11001164 /* Stop listening for connections. */
1165 channel_stop_listening();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001166
Damien Miller95def091999-11-25 00:26:21 +11001167 /* Close the connection. */
1168 packet_close();
1169
1170 /* Display the error locally and exit. */
Damien Milleraae6c611999-12-06 11:47:28 +11001171 log("Disconnecting: %.100s", buf);
1172 fatal_cleanup();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001173}
1174
Damien Miller5428f641999-11-25 11:54:57 +11001175/* Checks if there is any buffered output, and tries to write some of the output. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001176
1177void
1178packet_write_poll()
1179{
Damien Miller95def091999-11-25 00:26:21 +11001180 int len = buffer_len(&output);
1181 if (len > 0) {
1182 len = write(connection_out, buffer_ptr(&output), len);
1183 if (len <= 0) {
1184 if (errno == EAGAIN)
1185 return;
1186 else
1187 fatal("Write failed: %.100s", strerror(errno));
1188 }
1189 buffer_consume(&output, len);
1190 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001191}
1192
Damien Miller5428f641999-11-25 11:54:57 +11001193/*
1194 * Calls packet_write_poll repeatedly until all pending output data has been
1195 * written.
1196 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001197
1198void
1199packet_write_wait()
1200{
Damien Miller95def091999-11-25 00:26:21 +11001201 packet_write_poll();
1202 while (packet_have_data_to_write()) {
1203 fd_set set;
1204 FD_ZERO(&set);
1205 FD_SET(connection_out, &set);
1206 select(connection_out + 1, NULL, &set, NULL, NULL);
1207 packet_write_poll();
1208 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001209}
1210
1211/* Returns true if there is buffered data to write to the connection. */
1212
1213int
1214packet_have_data_to_write()
1215{
Damien Miller95def091999-11-25 00:26:21 +11001216 return buffer_len(&output) != 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001217}
1218
1219/* Returns true if there is not too much data to write to the connection. */
1220
1221int
1222packet_not_very_much_data_to_write()
1223{
Damien Miller95def091999-11-25 00:26:21 +11001224 if (interactive_mode)
1225 return buffer_len(&output) < 16384;
1226 else
1227 return buffer_len(&output) < 128 * 1024;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001228}
1229
1230/* Informs that the current session is interactive. Sets IP flags for that. */
1231
1232void
1233packet_set_interactive(int interactive, int keepalives)
1234{
Damien Miller95def091999-11-25 00:26:21 +11001235 int on = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001236
Damien Miller95def091999-11-25 00:26:21 +11001237 /* Record that we are in interactive mode. */
1238 interactive_mode = interactive;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001239
Damien Miller34132e52000-01-14 15:45:46 +11001240 /* Only set socket options if using a socket. */
1241 if (!packet_connection_is_on_socket())
Damien Miller95def091999-11-25 00:26:21 +11001242 return;
Damien Miller95def091999-11-25 00:26:21 +11001243 if (keepalives) {
1244 /* Set keepalives if requested. */
1245 if (setsockopt(connection_in, SOL_SOCKET, SO_KEEPALIVE, (void *) &on,
Damien Miller34132e52000-01-14 15:45:46 +11001246 sizeof(on)) < 0)
Damien Miller95def091999-11-25 00:26:21 +11001247 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
1248 }
Damien Miller34132e52000-01-14 15:45:46 +11001249 /*
1250 * IPTOS_LOWDELAY, TCP_NODELAY and IPTOS_THROUGHPUT are IPv4 only
1251 */
1252 if (!packet_connection_is_ipv4())
1253 return;
Damien Miller95def091999-11-25 00:26:21 +11001254 if (interactive) {
Damien Miller5428f641999-11-25 11:54:57 +11001255 /*
1256 * Set IP options for an interactive connection. Use
1257 * IPTOS_LOWDELAY and TCP_NODELAY.
1258 */
Damien Miller2ae714f2000-07-11 09:29:50 +10001259#if defined(IP_TOS) && !defined(IP_TOS_IS_BROKEN)
Damien Miller95def091999-11-25 00:26:21 +11001260 int lowdelay = IPTOS_LOWDELAY;
1261 if (setsockopt(connection_in, IPPROTO_IP, IP_TOS, (void *) &lowdelay,
Damien Miller34132e52000-01-14 15:45:46 +11001262 sizeof(lowdelay)) < 0)
Damien Miller95def091999-11-25 00:26:21 +11001263 error("setsockopt IPTOS_LOWDELAY: %.100s", strerror(errno));
Damien Miller615f9392000-05-17 22:53:33 +10001264#endif
Damien Miller95def091999-11-25 00:26:21 +11001265 if (setsockopt(connection_in, IPPROTO_TCP, TCP_NODELAY, (void *) &on,
Damien Miller34132e52000-01-14 15:45:46 +11001266 sizeof(on)) < 0)
Damien Miller95def091999-11-25 00:26:21 +11001267 error("setsockopt TCP_NODELAY: %.100s", strerror(errno));
1268 } else {
Damien Miller5428f641999-11-25 11:54:57 +11001269 /*
1270 * Set IP options for a non-interactive connection. Use
1271 * IPTOS_THROUGHPUT.
1272 */
Damien Miller2ae714f2000-07-11 09:29:50 +10001273#if defined(IP_TOS) && !defined(IP_TOS_IS_BROKEN)
Damien Miller95def091999-11-25 00:26:21 +11001274 int throughput = IPTOS_THROUGHPUT;
1275 if (setsockopt(connection_in, IPPROTO_IP, IP_TOS, (void *) &throughput,
Damien Miller34132e52000-01-14 15:45:46 +11001276 sizeof(throughput)) < 0)
Damien Miller95def091999-11-25 00:26:21 +11001277 error("setsockopt IPTOS_THROUGHPUT: %.100s", strerror(errno));
Damien Miller615f9392000-05-17 22:53:33 +10001278#endif
Damien Miller95def091999-11-25 00:26:21 +11001279 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001280}
1281
1282/* Returns true if the current connection is interactive. */
1283
1284int
1285packet_is_interactive()
1286{
Damien Miller95def091999-11-25 00:26:21 +11001287 return interactive_mode;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001288}
Damien Miller6162d121999-11-21 13:23:52 +11001289
1290int
1291packet_set_maxsize(int s)
1292{
Damien Miller95def091999-11-25 00:26:21 +11001293 static int called = 0;
1294 if (called) {
Damien Miller33b13562000-04-04 14:38:59 +10001295 log("packet_set_maxsize: called twice: old %d new %d",
1296 max_packet_size, s);
Damien Miller95def091999-11-25 00:26:21 +11001297 return -1;
1298 }
1299 if (s < 4 * 1024 || s > 1024 * 1024) {
1300 log("packet_set_maxsize: bad size %d", s);
1301 return -1;
1302 }
1303 log("packet_set_maxsize: setting to %d", s);
1304 max_packet_size = s;
1305 return s;
Damien Miller6162d121999-11-21 13:23:52 +11001306}