blob: 8abd43eb461946a1208b435a2abcf5c576283a43 [file] [log] [blame]
Damien Millerb61f3fc2008-07-11 17:36:48 +10001/* $OpenBSD: packet.c,v 1.157 2008/07/10 18:08:11 markus Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11004 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * This file contains code implementing the packet protocol and communication
7 * with the other side. This same code is used both on client and server side.
Damien Miller33b13562000-04-04 14:38:59 +10008 *
Damien Millere4340be2000-09-16 13:29:08 +11009 * As far as I am concerned, the code I have written for this software
10 * can be used freely for any purpose. Any derived versions of this
11 * software must be clearly marked as such, and if the derived work is
12 * incompatible with the protocol description in the RFC file, it must be
13 * called by a name other than "ssh" or "Secure Shell".
Damien Miller33b13562000-04-04 14:38:59 +100014 *
Damien Millere4340be2000-09-16 13:29:08 +110015 *
16 * SSH2 packet format added by Markus Friedl.
Ben Lindstrom44697232001-07-04 03:32:30 +000017 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110018 *
19 * Redistribution and use in source and binary forms, with or without
20 * modification, are permitted provided that the following conditions
21 * are met:
22 * 1. Redistributions of source code must retain the above copyright
23 * notice, this list of conditions and the following disclaimer.
24 * 2. Redistributions in binary form must reproduce the above copyright
25 * notice, this list of conditions and the following disclaimer in the
26 * documentation and/or other materials provided with the distribution.
27 *
28 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
29 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
30 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
31 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
32 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
33 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
34 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
35 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
36 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
37 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110038 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100039
40#include "includes.h"
Damien Miller68f8e992006-03-15 11:24:12 +110041
Damien Millere3b60b52006-07-10 21:08:03 +100042#include <sys/types.h>
Damien Millera0898b82003-04-09 21:05:52 +100043#include "openbsd-compat/sys-queue.h"
Damien Miller8dbffe72006-08-05 11:02:17 +100044#include <sys/param.h>
Damien Miller8ec8c3e2006-07-10 20:35:38 +100045#include <sys/socket.h>
Damien Miller9aec9192006-08-05 10:57:45 +100046#ifdef HAVE_SYS_TIME_H
47# include <sys/time.h>
48#endif
Damien Miller8ec8c3e2006-07-10 20:35:38 +100049
Damien Miller8ec8c3e2006-07-10 20:35:38 +100050#include <netinet/in.h>
Damien Miller68f8e992006-03-15 11:24:12 +110051#include <netinet/ip.h>
Darren Tuckerdace2332006-09-22 19:22:17 +100052#include <arpa/inet.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100053
Darren Tucker39972492006-07-12 22:22:46 +100054#include <errno.h>
Darren Tucker5d196262006-07-12 22:15:16 +100055#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100056#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100057#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100058#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100059#include <unistd.h>
Damien Millerd7834352006-08-05 12:39:39 +100060#include <signal.h>
Darren Tucker5d196262006-07-12 22:15:16 +100061
Damien Millerd4a8b7e1999-10-27 13:42:43 +100062#include "xmalloc.h"
63#include "buffer.h"
64#include "packet.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100065#include "crc32.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100066#include "compress.h"
67#include "deattack.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000068#include "channels.h"
Damien Miller33b13562000-04-04 14:38:59 +100069#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000070#include "ssh1.h"
Damien Miller33b13562000-04-04 14:38:59 +100071#include "ssh2.h"
Damien Miller874d77b2000-10-14 16:23:11 +110072#include "cipher.h"
Damien Millerd7834352006-08-05 12:39:39 +100073#include "key.h"
Damien Miller33b13562000-04-04 14:38:59 +100074#include "kex.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000075#include "mac.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000076#include "log.h"
77#include "canohost.h"
Damien Miller4d007762002-02-05 11:52:54 +110078#include "misc.h"
Ben Lindstrom402c6cc2002-06-21 00:43:42 +000079#include "ssh.h"
Damien Miller33b13562000-04-04 14:38:59 +100080
81#ifdef PACKET_DEBUG
82#define DBG(x) x
83#else
84#define DBG(x)
85#endif
86
Damien Miller5428f641999-11-25 11:54:57 +110087/*
88 * This variable contains the file descriptors used for communicating with
89 * the other side. connection_in is used for reading; connection_out for
90 * writing. These can be the same descriptor, in which case it is assumed to
91 * be a socket.
92 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100093static int connection_in = -1;
94static int connection_out = -1;
95
Damien Millerd4a8b7e1999-10-27 13:42:43 +100096/* Protocol flags for the remote side. */
Ben Lindstrom46c16222000-12-22 01:43:59 +000097static u_int remote_protocol_flags = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100098
99/* Encryption context for receiving data. This is only used for decryption. */
100static CipherContext receive_context;
Damien Miller95def091999-11-25 00:26:21 +1100101
102/* Encryption context for sending data. This is only used for encryption. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000103static CipherContext send_context;
104
105/* Buffer for raw input data from the socket. */
Ben Lindstromf6027d32002-03-22 01:42:04 +0000106Buffer input;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000107
108/* Buffer for raw output data going to the socket. */
Ben Lindstromf6027d32002-03-22 01:42:04 +0000109Buffer output;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000110
111/* Buffer for the partial outgoing packet being constructed. */
112static Buffer outgoing_packet;
113
114/* Buffer for the incoming packet currently being processed. */
115static Buffer incoming_packet;
116
117/* Scratch buffer for packet compression/decompression. */
118static Buffer compression_buffer;
Ben Lindstromfb50cdf2001-04-05 23:20:46 +0000119static int compression_buffer_ready = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000120
121/* Flag indicating whether packet compression/decompression is enabled. */
122static int packet_compression = 0;
123
Damien Miller6162d121999-11-21 13:23:52 +1100124/* default maximum packet size */
Darren Tucker502d3842003-06-28 12:38:01 +1000125u_int max_packet_size = 32768;
Damien Miller6162d121999-11-21 13:23:52 +1100126
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000127/* Flag indicating whether this module has been initialized. */
128static int initialized = 0;
129
130/* Set to true if the connection is interactive. */
131static int interactive_mode = 0;
132
Damien Miller9786e6e2005-07-26 21:54:56 +1000133/* Set to true if we are the server side. */
134static int server_side = 0;
135
136/* Set to true if we are authenticated. */
137static int after_authentication = 0;
138
Damien Miller58226f62008-03-07 18:33:30 +1100139int keep_alive_timeouts = 0;
140
Darren Tucker3fc464e2008-06-13 06:42:45 +1000141/* Set to the maximum time that we will wait to send or receive a packet */
142static int packet_timeout_ms = -1;
143
Damien Miller33b13562000-04-04 14:38:59 +1000144/* Session key information for Encryption and MAC */
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000145Newkeys *newkeys[MODE_MAX];
Damien Millera5539d22003-04-09 20:50:06 +1000146static struct packet_state {
147 u_int32_t seqnr;
148 u_int32_t packets;
149 u_int64_t blocks;
Damien Millerb61f3fc2008-07-11 17:36:48 +1000150 u_int64_t bytes;
Damien Millera5539d22003-04-09 20:50:06 +1000151} p_read, p_send;
152
153static u_int64_t max_blocks_in, max_blocks_out;
154static u_int32_t rekey_limit;
Damien Miller33b13562000-04-04 14:38:59 +1000155
Ben Lindstrom402c6cc2002-06-21 00:43:42 +0000156/* Session key for protocol v1 */
157static u_char ssh1_key[SSH_SESSION_KEY_LENGTH];
158static u_int ssh1_keylen;
159
Damien Miller9f643902001-11-12 11:02:52 +1100160/* roundup current message to extra_pad bytes */
161static u_char extra_pad = 0;
162
Damien Millera5539d22003-04-09 20:50:06 +1000163struct packet {
164 TAILQ_ENTRY(packet) next;
165 u_char type;
166 Buffer payload;
167};
168TAILQ_HEAD(, packet) outgoing;
169
Damien Miller5428f641999-11-25 11:54:57 +1100170/*
171 * Sets the descriptors used for communication. Disables encryption until
172 * packet_set_encryption_key is called.
173 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000174void
175packet_set_connection(int fd_in, int fd_out)
176{
Damien Miller874d77b2000-10-14 16:23:11 +1100177 Cipher *none = cipher_by_name("none");
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000178
Damien Miller874d77b2000-10-14 16:23:11 +1100179 if (none == NULL)
180 fatal("packet_set_connection: cannot load cipher 'none'");
Damien Miller95def091999-11-25 00:26:21 +1100181 connection_in = fd_in;
182 connection_out = fd_out;
Darren Tucker1f8311c2004-05-13 16:39:33 +1000183 cipher_init(&send_context, none, (const u_char *)"",
184 0, NULL, 0, CIPHER_ENCRYPT);
185 cipher_init(&receive_context, none, (const u_char *)"",
186 0, NULL, 0, CIPHER_DECRYPT);
Ben Lindstrom80c6d772001-06-05 21:09:18 +0000187 newkeys[MODE_IN] = newkeys[MODE_OUT] = NULL;
Damien Miller95def091999-11-25 00:26:21 +1100188 if (!initialized) {
189 initialized = 1;
190 buffer_init(&input);
191 buffer_init(&output);
192 buffer_init(&outgoing_packet);
193 buffer_init(&incoming_packet);
Damien Millera5539d22003-04-09 20:50:06 +1000194 TAILQ_INIT(&outgoing);
Damien Millerb61f3fc2008-07-11 17:36:48 +1000195 p_send.packets = p_read.packets = 0;
Damien Miller95def091999-11-25 00:26:21 +1100196 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000197}
198
Darren Tucker3fc464e2008-06-13 06:42:45 +1000199void
200packet_set_timeout(int timeout, int count)
201{
202 if (timeout == 0 || count == 0) {
203 packet_timeout_ms = -1;
204 return;
205 }
206 if ((INT_MAX / 1000) / count < timeout)
207 packet_timeout_ms = INT_MAX;
208 else
209 packet_timeout_ms = timeout * count * 1000;
210}
211
Damien Miller34132e52000-01-14 15:45:46 +1100212/* Returns 1 if remote host is connected via socket, 0 if not. */
213
214int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000215packet_connection_is_on_socket(void)
Damien Miller34132e52000-01-14 15:45:46 +1100216{
217 struct sockaddr_storage from, to;
218 socklen_t fromlen, tolen;
219
220 /* filedescriptors in and out are the same, so it's a socket */
221 if (connection_in == connection_out)
222 return 1;
223 fromlen = sizeof(from);
224 memset(&from, 0, sizeof(from));
Damien Millerf052aaf2000-01-22 19:47:21 +1100225 if (getpeername(connection_in, (struct sockaddr *)&from, &fromlen) < 0)
Damien Miller34132e52000-01-14 15:45:46 +1100226 return 0;
227 tolen = sizeof(to);
228 memset(&to, 0, sizeof(to));
Damien Millerf052aaf2000-01-22 19:47:21 +1100229 if (getpeername(connection_out, (struct sockaddr *)&to, &tolen) < 0)
Damien Miller34132e52000-01-14 15:45:46 +1100230 return 0;
231 if (fromlen != tolen || memcmp(&from, &to, fromlen) != 0)
232 return 0;
233 if (from.ss_family != AF_INET && from.ss_family != AF_INET6)
234 return 0;
235 return 1;
236}
237
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000238/*
Ben Lindstromf6027d32002-03-22 01:42:04 +0000239 * Exports an IV from the CipherContext required to export the key
240 * state back from the unprivileged child to the privileged parent
241 * process.
242 */
243
244void
245packet_get_keyiv(int mode, u_char *iv, u_int len)
246{
247 CipherContext *cc;
248
249 if (mode == MODE_OUT)
250 cc = &send_context;
251 else
252 cc = &receive_context;
253
254 cipher_get_keyiv(cc, iv, len);
255}
256
257int
258packet_get_keycontext(int mode, u_char *dat)
259{
260 CipherContext *cc;
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000261
Ben Lindstromf6027d32002-03-22 01:42:04 +0000262 if (mode == MODE_OUT)
263 cc = &send_context;
264 else
265 cc = &receive_context;
266
267 return (cipher_get_keycontext(cc, dat));
268}
269
270void
271packet_set_keycontext(int mode, u_char *dat)
272{
273 CipherContext *cc;
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000274
Ben Lindstromf6027d32002-03-22 01:42:04 +0000275 if (mode == MODE_OUT)
276 cc = &send_context;
277 else
278 cc = &receive_context;
279
280 cipher_set_keycontext(cc, dat);
281}
282
283int
284packet_get_keyiv_len(int mode)
285{
286 CipherContext *cc;
287
288 if (mode == MODE_OUT)
289 cc = &send_context;
290 else
291 cc = &receive_context;
292
293 return (cipher_get_keyiv_len(cc));
294}
Damien Miller4f7becb2006-03-26 14:10:14 +1100295
Ben Lindstromf6027d32002-03-22 01:42:04 +0000296void
297packet_set_iv(int mode, u_char *dat)
298{
299 CipherContext *cc;
300
301 if (mode == MODE_OUT)
302 cc = &send_context;
303 else
304 cc = &receive_context;
305
306 cipher_set_keyiv(cc, dat);
307}
Damien Miller4f7becb2006-03-26 14:10:14 +1100308
Ben Lindstromf6027d32002-03-22 01:42:04 +0000309int
Damien Miller2b92d322003-06-11 22:05:06 +1000310packet_get_ssh1_cipher(void)
Ben Lindstromf6027d32002-03-22 01:42:04 +0000311{
312 return (cipher_get_number(receive_context.cipher));
313}
314
Damien Millera5539d22003-04-09 20:50:06 +1000315void
Damien Millerb61f3fc2008-07-11 17:36:48 +1000316packet_get_state(int mode, u_int32_t *seqnr, u_int64_t *blocks, u_int32_t *packets,
317 u_int64_t *bytes)
Ben Lindstromf6027d32002-03-22 01:42:04 +0000318{
Damien Millera5539d22003-04-09 20:50:06 +1000319 struct packet_state *state;
320
321 state = (mode == MODE_IN) ? &p_read : &p_send;
Damien Millerb61f3fc2008-07-11 17:36:48 +1000322 if (seqnr)
323 *seqnr = state->seqnr;
324 if (blocks)
325 *blocks = state->blocks;
326 if (packets)
327 *packets = state->packets;
328 if (bytes)
329 *bytes = state->bytes;
Ben Lindstromf6027d32002-03-22 01:42:04 +0000330}
331
332void
Damien Millerb61f3fc2008-07-11 17:36:48 +1000333packet_set_state(int mode, u_int32_t seqnr, u_int64_t blocks, u_int32_t packets,
334 u_int64_t bytes)
Ben Lindstromf6027d32002-03-22 01:42:04 +0000335{
Damien Millera5539d22003-04-09 20:50:06 +1000336 struct packet_state *state;
337
338 state = (mode == MODE_IN) ? &p_read : &p_send;
339 state->seqnr = seqnr;
340 state->blocks = blocks;
341 state->packets = packets;
Damien Millerb61f3fc2008-07-11 17:36:48 +1000342 state->bytes = bytes;
Ben Lindstromf6027d32002-03-22 01:42:04 +0000343}
344
Damien Miller34132e52000-01-14 15:45:46 +1100345/* returns 1 if connection is via ipv4 */
346
347int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000348packet_connection_is_ipv4(void)
Damien Miller34132e52000-01-14 15:45:46 +1100349{
350 struct sockaddr_storage to;
Damien Miller6fe375d2000-01-23 09:38:00 +1100351 socklen_t tolen = sizeof(to);
Damien Miller34132e52000-01-14 15:45:46 +1100352
353 memset(&to, 0, sizeof(to));
354 if (getsockname(connection_out, (struct sockaddr *)&to, &tolen) < 0)
355 return 0;
Damien Milleraa100c52002-04-26 16:54:34 +1000356 if (to.ss_family == AF_INET)
357 return 1;
358#ifdef IPV4_IN_IPV6
Damien Millera8e06ce2003-11-21 23:48:55 +1100359 if (to.ss_family == AF_INET6 &&
Damien Milleraa100c52002-04-26 16:54:34 +1000360 IN6_IS_ADDR_V4MAPPED(&((struct sockaddr_in6 *)&to)->sin6_addr))
361 return 1;
362#endif
363 return 0;
Damien Miller34132e52000-01-14 15:45:46 +1100364}
365
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000366/* Sets the connection into non-blocking mode. */
367
368void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000369packet_set_nonblocking(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000370{
Damien Miller95def091999-11-25 00:26:21 +1100371 /* Set the socket into non-blocking mode. */
Damien Miller232711f2004-06-15 10:35:30 +1000372 set_nonblock(connection_in);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000373
Damien Miller232711f2004-06-15 10:35:30 +1000374 if (connection_out != connection_in)
375 set_nonblock(connection_out);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000376}
377
378/* Returns the socket used for reading. */
379
380int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000381packet_get_connection_in(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000382{
Damien Miller95def091999-11-25 00:26:21 +1100383 return connection_in;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000384}
385
386/* Returns the descriptor used for writing. */
387
388int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000389packet_get_connection_out(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000390{
Damien Miller95def091999-11-25 00:26:21 +1100391 return connection_out;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000392}
393
394/* Closes the connection and clears and frees internal data structures. */
395
396void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000397packet_close(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000398{
Damien Miller95def091999-11-25 00:26:21 +1100399 if (!initialized)
400 return;
401 initialized = 0;
402 if (connection_in == connection_out) {
403 shutdown(connection_out, SHUT_RDWR);
404 close(connection_out);
405 } else {
406 close(connection_in);
407 close(connection_out);
408 }
409 buffer_free(&input);
410 buffer_free(&output);
411 buffer_free(&outgoing_packet);
412 buffer_free(&incoming_packet);
Ben Lindstromfb50cdf2001-04-05 23:20:46 +0000413 if (compression_buffer_ready) {
Damien Miller95def091999-11-25 00:26:21 +1100414 buffer_free(&compression_buffer);
415 buffer_compress_uninit();
416 }
Damien Miller963f6b22002-02-19 15:21:23 +1100417 cipher_cleanup(&send_context);
418 cipher_cleanup(&receive_context);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000419}
420
421/* Sets remote side protocol flags. */
422
423void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000424packet_set_protocol_flags(u_int protocol_flags)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000425{
Damien Miller95def091999-11-25 00:26:21 +1100426 remote_protocol_flags = protocol_flags;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000427}
428
429/* Returns the remote protocol flags set earlier by the above function. */
430
Ben Lindstrom46c16222000-12-22 01:43:59 +0000431u_int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000432packet_get_protocol_flags(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000433{
Damien Miller95def091999-11-25 00:26:21 +1100434 return remote_protocol_flags;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000435}
436
Damien Miller5428f641999-11-25 11:54:57 +1100437/*
438 * Starts packet compression from the next packet on in both directions.
439 * Level is compression level 1 (fastest) - 9 (slow, best) as in gzip.
440 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000441
Ben Lindstrombba81212001-06-25 05:01:22 +0000442static void
443packet_init_compression(void)
Ben Lindstromfb50cdf2001-04-05 23:20:46 +0000444{
445 if (compression_buffer_ready == 1)
446 return;
447 compression_buffer_ready = 1;
448 buffer_init(&compression_buffer);
449}
450
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000451void
452packet_start_compression(int level)
453{
Ben Lindstrom80c6d772001-06-05 21:09:18 +0000454 if (packet_compression && !compat20)
Damien Miller95def091999-11-25 00:26:21 +1100455 fatal("Compression already enabled.");
456 packet_compression = 1;
Ben Lindstromfb50cdf2001-04-05 23:20:46 +0000457 packet_init_compression();
458 buffer_compress_init_send(level);
459 buffer_compress_init_recv();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000460}
461
Damien Miller5428f641999-11-25 11:54:57 +1100462/*
Damien Miller5428f641999-11-25 11:54:57 +1100463 * Causes any further packets to be encrypted using the given key. The same
464 * key is used for both sending and reception. However, both directions are
465 * encrypted independently of each other.
466 */
Ben Lindstrom402c6cc2002-06-21 00:43:42 +0000467
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000468void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000469packet_set_encryption_key(const u_char *key, u_int keylen,
Damien Miller874d77b2000-10-14 16:23:11 +1100470 int number)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000471{
Damien Miller874d77b2000-10-14 16:23:11 +1100472 Cipher *cipher = cipher_by_number(number);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000473
Damien Miller874d77b2000-10-14 16:23:11 +1100474 if (cipher == NULL)
475 fatal("packet_set_encryption_key: unknown cipher number %d", number);
Damien Miller33b13562000-04-04 14:38:59 +1000476 if (keylen < 20)
Damien Miller874d77b2000-10-14 16:23:11 +1100477 fatal("packet_set_encryption_key: keylen too small: %d", keylen);
Ben Lindstrom402c6cc2002-06-21 00:43:42 +0000478 if (keylen > SSH_SESSION_KEY_LENGTH)
479 fatal("packet_set_encryption_key: keylen too big: %d", keylen);
480 memcpy(ssh1_key, key, keylen);
481 ssh1_keylen = keylen;
Damien Miller963f6b22002-02-19 15:21:23 +1100482 cipher_init(&send_context, cipher, key, keylen, NULL, 0, CIPHER_ENCRYPT);
483 cipher_init(&receive_context, cipher, key, keylen, NULL, 0, CIPHER_DECRYPT);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000484}
485
Ben Lindstrom402c6cc2002-06-21 00:43:42 +0000486u_int
487packet_get_encryption_key(u_char *key)
488{
489 if (key == NULL)
490 return (ssh1_keylen);
491 memcpy(key, ssh1_key, ssh1_keylen);
492 return (ssh1_keylen);
493}
494
Ben Lindstrom80c6d772001-06-05 21:09:18 +0000495/* Start constructing a packet to send. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000496void
Ben Lindstrom80c6d772001-06-05 21:09:18 +0000497packet_start(u_char type)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000498{
Ben Lindstrom80c6d772001-06-05 21:09:18 +0000499 u_char buf[9];
500 int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000501
Ben Lindstrom204e4882001-03-05 06:47:00 +0000502 DBG(debug("packet_start[%d]", type));
Ben Lindstrom80c6d772001-06-05 21:09:18 +0000503 len = compat20 ? 6 : 9;
504 memset(buf, 0, len - 1);
505 buf[len - 1] = type;
506 buffer_clear(&outgoing_packet);
507 buffer_append(&outgoing_packet, buf, len);
Damien Miller33b13562000-04-04 14:38:59 +1000508}
509
Ben Lindstrom80c6d772001-06-05 21:09:18 +0000510/* Append payload. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000511void
512packet_put_char(int value)
513{
Damien Miller95def091999-11-25 00:26:21 +1100514 char ch = value;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +0000515
Damien Miller95def091999-11-25 00:26:21 +1100516 buffer_append(&outgoing_packet, &ch, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000517}
Damien Miller4f7becb2006-03-26 14:10:14 +1100518
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000519void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000520packet_put_int(u_int value)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000521{
Damien Miller95def091999-11-25 00:26:21 +1100522 buffer_put_int(&outgoing_packet, value);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000523}
Damien Miller4f7becb2006-03-26 14:10:14 +1100524
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000525void
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100526packet_put_string(const void *buf, u_int len)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000527{
Damien Miller95def091999-11-25 00:26:21 +1100528 buffer_put_string(&outgoing_packet, buf, len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000529}
Damien Miller4f7becb2006-03-26 14:10:14 +1100530
Damien Miller33b13562000-04-04 14:38:59 +1000531void
532packet_put_cstring(const char *str)
533{
Ben Lindstrom664408d2001-06-09 01:42:01 +0000534 buffer_put_cstring(&outgoing_packet, str);
Damien Miller33b13562000-04-04 14:38:59 +1000535}
Damien Miller4f7becb2006-03-26 14:10:14 +1100536
Damien Miller33b13562000-04-04 14:38:59 +1000537void
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100538packet_put_raw(const void *buf, u_int len)
Damien Miller33b13562000-04-04 14:38:59 +1000539{
540 buffer_append(&outgoing_packet, buf, len);
541}
Damien Miller4f7becb2006-03-26 14:10:14 +1100542
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000543void
Damien Miller95def091999-11-25 00:26:21 +1100544packet_put_bignum(BIGNUM * value)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000545{
Damien Miller95def091999-11-25 00:26:21 +1100546 buffer_put_bignum(&outgoing_packet, value);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000547}
Damien Miller4f7becb2006-03-26 14:10:14 +1100548
Damien Miller33b13562000-04-04 14:38:59 +1000549void
550packet_put_bignum2(BIGNUM * value)
551{
552 buffer_put_bignum2(&outgoing_packet, value);
553}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000554
Damien Miller5428f641999-11-25 11:54:57 +1100555/*
556 * Finalizes and sends the packet. If the encryption key has been set,
557 * encrypts the packet before sending.
558 */
Damien Miller95def091999-11-25 00:26:21 +1100559
Ben Lindstrombba81212001-06-25 05:01:22 +0000560static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000561packet_send1(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000562{
Ben Lindstrom4a7714a2002-02-26 18:04:38 +0000563 u_char buf[8], *cp;
Damien Miller95def091999-11-25 00:26:21 +1100564 int i, padding, len;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000565 u_int checksum;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000566 u_int32_t rnd = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000567
Damien Miller5428f641999-11-25 11:54:57 +1100568 /*
569 * If using packet compression, compress the payload of the outgoing
570 * packet.
571 */
Damien Miller95def091999-11-25 00:26:21 +1100572 if (packet_compression) {
573 buffer_clear(&compression_buffer);
574 /* Skip padding. */
575 buffer_consume(&outgoing_packet, 8);
576 /* padding */
577 buffer_append(&compression_buffer, "\0\0\0\0\0\0\0\0", 8);
578 buffer_compress(&outgoing_packet, &compression_buffer);
579 buffer_clear(&outgoing_packet);
580 buffer_append(&outgoing_packet, buffer_ptr(&compression_buffer),
Damien Miller9f0f5c62001-12-21 14:45:46 +1100581 buffer_len(&compression_buffer));
Damien Miller95def091999-11-25 00:26:21 +1100582 }
583 /* Compute packet length without padding (add checksum, remove padding). */
584 len = buffer_len(&outgoing_packet) + 4 - 8;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000585
Damien Millere247cc42000-05-07 12:03:14 +1000586 /* Insert padding. Initialized to zero in packet_start1() */
Damien Miller95def091999-11-25 00:26:21 +1100587 padding = 8 - len % 8;
Damien Miller963f6b22002-02-19 15:21:23 +1100588 if (!send_context.plaintext) {
Damien Miller95def091999-11-25 00:26:21 +1100589 cp = buffer_ptr(&outgoing_packet);
590 for (i = 0; i < padding; i++) {
591 if (i % 4 == 0)
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000592 rnd = arc4random();
593 cp[7 - i] = rnd & 0xff;
594 rnd >>= 8;
Damien Miller95def091999-11-25 00:26:21 +1100595 }
596 }
597 buffer_consume(&outgoing_packet, 8 - padding);
598
599 /* Add check bytes. */
Damien Miller708d21c2002-01-22 23:18:15 +1100600 checksum = ssh_crc32(buffer_ptr(&outgoing_packet),
Damien Millerad833b32000-08-23 10:46:23 +1000601 buffer_len(&outgoing_packet));
Damien Miller3f941882006-03-31 23:13:02 +1100602 put_u32(buf, checksum);
Damien Miller95def091999-11-25 00:26:21 +1100603 buffer_append(&outgoing_packet, buf, 4);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000604
605#ifdef PACKET_DEBUG
Damien Miller95def091999-11-25 00:26:21 +1100606 fprintf(stderr, "packet_send plain: ");
607 buffer_dump(&outgoing_packet);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000608#endif
609
Damien Miller95def091999-11-25 00:26:21 +1100610 /* Append to output. */
Damien Miller3f941882006-03-31 23:13:02 +1100611 put_u32(buf, len);
Damien Miller95def091999-11-25 00:26:21 +1100612 buffer_append(&output, buf, 4);
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100613 cp = buffer_append_space(&output, buffer_len(&outgoing_packet));
Damien Miller963f6b22002-02-19 15:21:23 +1100614 cipher_crypt(&send_context, cp, buffer_ptr(&outgoing_packet),
Damien Miller9f0f5c62001-12-21 14:45:46 +1100615 buffer_len(&outgoing_packet));
Damien Miller95def091999-11-25 00:26:21 +1100616
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000617#ifdef PACKET_DEBUG
Damien Miller95def091999-11-25 00:26:21 +1100618 fprintf(stderr, "encrypted: ");
619 buffer_dump(&output);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000620#endif
Damien Millerb61f3fc2008-07-11 17:36:48 +1000621 p_send.packets++;
622 p_send.bytes += len + buffer_len(&outgoing_packet);
Damien Miller95def091999-11-25 00:26:21 +1100623 buffer_clear(&outgoing_packet);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000624
Damien Miller5428f641999-11-25 11:54:57 +1100625 /*
Damien Miller788f2122005-11-05 15:14:59 +1100626 * Note that the packet is now only buffered in output. It won't be
Damien Miller5428f641999-11-25 11:54:57 +1100627 * actually sent until packet_write_wait or packet_write_poll is
628 * called.
629 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000630}
631
Ben Lindstromf6027d32002-03-22 01:42:04 +0000632void
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000633set_newkeys(int mode)
634{
635 Enc *enc;
636 Mac *mac;
637 Comp *comp;
638 CipherContext *cc;
Damien Millera5539d22003-04-09 20:50:06 +1000639 u_int64_t *max_blocks;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000640 int crypt_type;
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000641
Ben Lindstrom064496f2002-12-23 02:04:22 +0000642 debug2("set_newkeys: mode %d", mode);
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000643
Damien Miller963f6b22002-02-19 15:21:23 +1100644 if (mode == MODE_OUT) {
645 cc = &send_context;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000646 crypt_type = CIPHER_ENCRYPT;
Damien Millera5539d22003-04-09 20:50:06 +1000647 p_send.packets = p_send.blocks = 0;
648 max_blocks = &max_blocks_out;
Damien Miller963f6b22002-02-19 15:21:23 +1100649 } else {
650 cc = &receive_context;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000651 crypt_type = CIPHER_DECRYPT;
Damien Millera5539d22003-04-09 20:50:06 +1000652 p_read.packets = p_read.blocks = 0;
653 max_blocks = &max_blocks_in;
Damien Miller963f6b22002-02-19 15:21:23 +1100654 }
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000655 if (newkeys[mode] != NULL) {
Ben Lindstrom064496f2002-12-23 02:04:22 +0000656 debug("set_newkeys: rekeying");
Damien Miller963f6b22002-02-19 15:21:23 +1100657 cipher_cleanup(cc);
Ben Lindstrom5ba23b32001-04-05 02:05:21 +0000658 enc = &newkeys[mode]->enc;
659 mac = &newkeys[mode]->mac;
660 comp = &newkeys[mode]->comp;
Damien Millere45796f2007-06-11 14:01:42 +1000661 mac_clear(mac);
Ben Lindstrom5ba23b32001-04-05 02:05:21 +0000662 xfree(enc->name);
663 xfree(enc->iv);
664 xfree(enc->key);
665 xfree(mac->name);
666 xfree(mac->key);
667 xfree(comp->name);
Ben Lindstrom238abf62001-04-04 17:52:53 +0000668 xfree(newkeys[mode]);
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000669 }
670 newkeys[mode] = kex_get_newkeys(mode);
671 if (newkeys[mode] == NULL)
672 fatal("newkeys: no keys for mode %d", mode);
673 enc = &newkeys[mode]->enc;
674 mac = &newkeys[mode]->mac;
675 comp = &newkeys[mode]->comp;
Damien Millere45796f2007-06-11 14:01:42 +1000676 if (mac_init(mac) == 0)
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000677 mac->enabled = 1;
678 DBG(debug("cipher_init_context: %d", mode));
Damien Miller963f6b22002-02-19 15:21:23 +1100679 cipher_init(cc, enc->cipher, enc->key, enc->key_len,
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000680 enc->iv, enc->block_size, crypt_type);
Ben Lindstromf6027d32002-03-22 01:42:04 +0000681 /* Deleting the keys does not gain extra security */
682 /* memset(enc->iv, 0, enc->block_size);
Darren Tucker5f3d5be2007-06-05 18:30:18 +1000683 memset(enc->key, 0, enc->key_len);
684 memset(mac->key, 0, mac->key_len); */
Damien Miller9786e6e2005-07-26 21:54:56 +1000685 if ((comp->type == COMP_ZLIB ||
686 (comp->type == COMP_DELAYED && after_authentication)) &&
687 comp->enabled == 0) {
Ben Lindstromfb50cdf2001-04-05 23:20:46 +0000688 packet_init_compression();
689 if (mode == MODE_OUT)
690 buffer_compress_init_send(6);
691 else
692 buffer_compress_init_recv();
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000693 comp->enabled = 1;
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000694 }
Darren Tucker81a0b372003-07-14 17:31:06 +1000695 /*
696 * The 2^(blocksize*2) limit is too expensive for 3DES,
697 * blowfish, etc, so enforce a 1GB limit for small blocksizes.
698 */
699 if (enc->block_size >= 16)
700 *max_blocks = (u_int64_t)1 << (enc->block_size*2);
701 else
702 *max_blocks = ((u_int64_t)1 << 30) / enc->block_size;
Damien Millera5539d22003-04-09 20:50:06 +1000703 if (rekey_limit)
704 *max_blocks = MIN(*max_blocks, rekey_limit / enc->block_size);
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000705}
706
Damien Miller5428f641999-11-25 11:54:57 +1100707/*
Damien Miller9786e6e2005-07-26 21:54:56 +1000708 * Delayed compression for SSH2 is enabled after authentication:
Darren Tuckerf676c572006-08-05 18:51:08 +1000709 * This happens on the server side after a SSH2_MSG_USERAUTH_SUCCESS is sent,
Damien Miller9786e6e2005-07-26 21:54:56 +1000710 * and on the client side after a SSH2_MSG_USERAUTH_SUCCESS is received.
711 */
712static void
713packet_enable_delayed_compress(void)
714{
715 Comp *comp = NULL;
716 int mode;
717
718 /*
719 * Remember that we are past the authentication step, so rekeying
720 * with COMP_DELAYED will turn on compression immediately.
721 */
722 after_authentication = 1;
723 for (mode = 0; mode < MODE_MAX; mode++) {
Darren Tucker4aa665b2006-09-21 13:00:25 +1000724 /* protocol error: USERAUTH_SUCCESS received before NEWKEYS */
725 if (newkeys[mode] == NULL)
726 continue;
Damien Miller9786e6e2005-07-26 21:54:56 +1000727 comp = &newkeys[mode]->comp;
728 if (comp && !comp->enabled && comp->type == COMP_DELAYED) {
Damien Millerb5c01252005-08-12 22:10:28 +1000729 packet_init_compression();
Damien Miller9786e6e2005-07-26 21:54:56 +1000730 if (mode == MODE_OUT)
731 buffer_compress_init_send(6);
732 else
733 buffer_compress_init_recv();
734 comp->enabled = 1;
735 }
736 }
737}
738
739/*
Damien Miller33b13562000-04-04 14:38:59 +1000740 * Finalize packet in SSH2 format (compress, mac, encrypt, enqueue)
741 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000742static void
Damien Millera5539d22003-04-09 20:50:06 +1000743packet_send2_wrapped(void)
Damien Miller33b13562000-04-04 14:38:59 +1000744{
Ben Lindstrom4a7714a2002-02-26 18:04:38 +0000745 u_char type, *cp, *macbuf = NULL;
Damien Miller9f643902001-11-12 11:02:52 +1100746 u_char padlen, pad;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000747 u_int packet_length = 0;
Damien Miller9f643902001-11-12 11:02:52 +1100748 u_int i, len;
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000749 u_int32_t rnd = 0;
Damien Miller33b13562000-04-04 14:38:59 +1000750 Enc *enc = NULL;
751 Mac *mac = NULL;
752 Comp *comp = NULL;
753 int block_size;
754
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000755 if (newkeys[MODE_OUT] != NULL) {
756 enc = &newkeys[MODE_OUT]->enc;
757 mac = &newkeys[MODE_OUT]->mac;
758 comp = &newkeys[MODE_OUT]->comp;
Damien Miller33b13562000-04-04 14:38:59 +1000759 }
Damien Miller963f6b22002-02-19 15:21:23 +1100760 block_size = enc ? enc->block_size : 8;
Damien Miller33b13562000-04-04 14:38:59 +1000761
Ben Lindstrom4a7714a2002-02-26 18:04:38 +0000762 cp = buffer_ptr(&outgoing_packet);
763 type = cp[5];
Damien Miller33b13562000-04-04 14:38:59 +1000764
765#ifdef PACKET_DEBUG
766 fprintf(stderr, "plain: ");
767 buffer_dump(&outgoing_packet);
768#endif
769
770 if (comp && comp->enabled) {
771 len = buffer_len(&outgoing_packet);
772 /* skip header, compress only payload */
773 buffer_consume(&outgoing_packet, 5);
774 buffer_clear(&compression_buffer);
775 buffer_compress(&outgoing_packet, &compression_buffer);
776 buffer_clear(&outgoing_packet);
777 buffer_append(&outgoing_packet, "\0\0\0\0\0", 5);
778 buffer_append(&outgoing_packet, buffer_ptr(&compression_buffer),
779 buffer_len(&compression_buffer));
780 DBG(debug("compression: raw %d compressed %d", len,
781 buffer_len(&outgoing_packet)));
782 }
783
784 /* sizeof (packet_len + pad_len + payload) */
785 len = buffer_len(&outgoing_packet);
786
787 /*
788 * calc size of padding, alloc space, get random data,
789 * minimum padding is 4 bytes
790 */
791 padlen = block_size - (len % block_size);
792 if (padlen < 4)
793 padlen += block_size;
Damien Miller9f643902001-11-12 11:02:52 +1100794 if (extra_pad) {
795 /* will wrap if extra_pad+padlen > 255 */
796 extra_pad = roundup(extra_pad, block_size);
797 pad = extra_pad - ((len + padlen) % extra_pad);
Ben Lindstrom8b08d812002-03-26 02:09:41 +0000798 debug3("packet_send2: adding %d (len %d padlen %d extra_pad %d)",
Damien Miller9f643902001-11-12 11:02:52 +1100799 pad, len, padlen, extra_pad);
800 padlen += pad;
801 extra_pad = 0;
802 }
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100803 cp = buffer_append_space(&outgoing_packet, padlen);
Damien Miller963f6b22002-02-19 15:21:23 +1100804 if (enc && !send_context.plaintext) {
Damien Millere247cc42000-05-07 12:03:14 +1000805 /* random padding */
Damien Miller33b13562000-04-04 14:38:59 +1000806 for (i = 0; i < padlen; i++) {
807 if (i % 4 == 0)
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000808 rnd = arc4random();
809 cp[i] = rnd & 0xff;
810 rnd >>= 8;
Damien Miller33b13562000-04-04 14:38:59 +1000811 }
Damien Millere247cc42000-05-07 12:03:14 +1000812 } else {
813 /* clear padding */
814 memset(cp, 0, padlen);
Damien Miller33b13562000-04-04 14:38:59 +1000815 }
816 /* packet_length includes payload, padding and padding length field */
817 packet_length = buffer_len(&outgoing_packet) - 4;
Ben Lindstrom4a7714a2002-02-26 18:04:38 +0000818 cp = buffer_ptr(&outgoing_packet);
Damien Miller3f941882006-03-31 23:13:02 +1100819 put_u32(cp, packet_length);
Ben Lindstrom4a7714a2002-02-26 18:04:38 +0000820 cp[4] = padlen;
Damien Miller33b13562000-04-04 14:38:59 +1000821 DBG(debug("send: len %d (includes padlen %d)", packet_length+4, padlen));
822
823 /* compute MAC over seqnr and packet(length fields, payload, padding) */
824 if (mac && mac->enabled) {
Damien Millera5539d22003-04-09 20:50:06 +1000825 macbuf = mac_compute(mac, p_send.seqnr,
Damien Miller708d21c2002-01-22 23:18:15 +1100826 buffer_ptr(&outgoing_packet),
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000827 buffer_len(&outgoing_packet));
Damien Millera5539d22003-04-09 20:50:06 +1000828 DBG(debug("done calc MAC out #%d", p_send.seqnr));
Damien Miller33b13562000-04-04 14:38:59 +1000829 }
830 /* encrypt packet and append to output buffer. */
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100831 cp = buffer_append_space(&output, buffer_len(&outgoing_packet));
Damien Miller963f6b22002-02-19 15:21:23 +1100832 cipher_crypt(&send_context, cp, buffer_ptr(&outgoing_packet),
Damien Miller33b13562000-04-04 14:38:59 +1000833 buffer_len(&outgoing_packet));
834 /* append unencrypted MAC */
835 if (mac && mac->enabled)
Damien Millera0fdce92006-03-26 14:28:50 +1100836 buffer_append(&output, macbuf, mac->mac_len);
Damien Miller33b13562000-04-04 14:38:59 +1000837#ifdef PACKET_DEBUG
838 fprintf(stderr, "encrypted: ");
839 buffer_dump(&output);
840#endif
Damien Miller4af51302000-04-16 11:18:38 +1000841 /* increment sequence number for outgoing packets */
Damien Millera5539d22003-04-09 20:50:06 +1000842 if (++p_send.seqnr == 0)
Damien Miller996acd22003-04-09 20:59:48 +1000843 logit("outgoing seqnr wraps around");
Damien Millera5539d22003-04-09 20:50:06 +1000844 if (++p_send.packets == 0)
845 if (!(datafellows & SSH_BUG_NOREKEY))
846 fatal("XXX too many packets with same key");
847 p_send.blocks += (packet_length + 4) / block_size;
Damien Millerb61f3fc2008-07-11 17:36:48 +1000848 p_send.bytes += packet_length + 4;
Damien Miller33b13562000-04-04 14:38:59 +1000849 buffer_clear(&outgoing_packet);
850
Ben Lindstrom2d90e002001-04-04 02:00:54 +0000851 if (type == SSH2_MSG_NEWKEYS)
852 set_newkeys(MODE_OUT);
Damien Miller9786e6e2005-07-26 21:54:56 +1000853 else if (type == SSH2_MSG_USERAUTH_SUCCESS && server_side)
854 packet_enable_delayed_compress();
Damien Miller33b13562000-04-04 14:38:59 +1000855}
856
Damien Millera5539d22003-04-09 20:50:06 +1000857static void
858packet_send2(void)
859{
860 static int rekeying = 0;
861 struct packet *p;
862 u_char type, *cp;
863
864 cp = buffer_ptr(&outgoing_packet);
865 type = cp[5];
866
867 /* during rekeying we can only send key exchange messages */
868 if (rekeying) {
869 if (!((type >= SSH2_MSG_TRANSPORT_MIN) &&
870 (type <= SSH2_MSG_TRANSPORT_MAX))) {
871 debug("enqueue packet: %u", type);
872 p = xmalloc(sizeof(*p));
873 p->type = type;
874 memcpy(&p->payload, &outgoing_packet, sizeof(Buffer));
875 buffer_init(&outgoing_packet);
876 TAILQ_INSERT_TAIL(&outgoing, p, next);
877 return;
878 }
879 }
880
881 /* rekeying starts with sending KEXINIT */
882 if (type == SSH2_MSG_KEXINIT)
883 rekeying = 1;
884
885 packet_send2_wrapped();
886
887 /* after a NEWKEYS message we can send the complete queue */
888 if (type == SSH2_MSG_NEWKEYS) {
889 rekeying = 0;
890 while ((p = TAILQ_FIRST(&outgoing))) {
891 type = p->type;
892 debug("dequeue packet: %u", type);
893 buffer_free(&outgoing_packet);
894 memcpy(&outgoing_packet, &p->payload,
895 sizeof(Buffer));
896 TAILQ_REMOVE(&outgoing, p, next);
897 xfree(p);
898 packet_send2_wrapped();
899 }
900 }
901}
902
Damien Miller33b13562000-04-04 14:38:59 +1000903void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000904packet_send(void)
Damien Miller33b13562000-04-04 14:38:59 +1000905{
Ben Lindstrom80c6d772001-06-05 21:09:18 +0000906 if (compat20)
Damien Miller33b13562000-04-04 14:38:59 +1000907 packet_send2();
908 else
909 packet_send1();
910 DBG(debug("packet_send done"));
911}
912
Damien Miller33b13562000-04-04 14:38:59 +1000913/*
Damien Miller5428f641999-11-25 11:54:57 +1100914 * Waits until a packet has been received, and returns its type. Note that
915 * no other data is processed until this returns, so this function should not
916 * be used during the interactive session.
917 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000918
919int
Damien Millerdff50992002-01-22 23:16:32 +1100920packet_read_seqnr(u_int32_t *seqnr_p)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000921{
Darren Tucker3fc464e2008-06-13 06:42:45 +1000922 int type, len, ret, ms_remain;
Ben Lindstromcb978aa2001-03-05 07:07:49 +0000923 fd_set *setp;
Damien Miller95def091999-11-25 00:26:21 +1100924 char buf[8192];
Darren Tucker3fc464e2008-06-13 06:42:45 +1000925 struct timeval timeout, start, *timeoutp = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000926
Darren Tucker99bb7612008-06-13 22:02:50 +1000927 DBG(debug("packet_read()"));
928
Damien Miller07d86be2006-03-26 14:19:21 +1100929 setp = (fd_set *)xcalloc(howmany(connection_in+1, NFDBITS),
Ben Lindstromcb978aa2001-03-05 07:07:49 +0000930 sizeof(fd_mask));
931
Damien Miller95def091999-11-25 00:26:21 +1100932 /* Since we are blocking, ensure that all written packets have been sent. */
933 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000934
Damien Miller95def091999-11-25 00:26:21 +1100935 /* Stay in the loop until we have received a complete packet. */
936 for (;;) {
937 /* Try to read a packet from the buffer. */
Damien Millerdff50992002-01-22 23:16:32 +1100938 type = packet_read_poll_seqnr(seqnr_p);
Ben Lindstrom80c6d772001-06-05 21:09:18 +0000939 if (!compat20 && (
Damien Millere247cc42000-05-07 12:03:14 +1000940 type == SSH_SMSG_SUCCESS
Damien Miller95def091999-11-25 00:26:21 +1100941 || type == SSH_SMSG_FAILURE
942 || type == SSH_CMSG_EOF
Damien Millere247cc42000-05-07 12:03:14 +1000943 || type == SSH_CMSG_EXIT_CONFIRMATION))
Damien Miller48b03fc2002-01-22 23:11:40 +1100944 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +1100945 /* If we got a packet, return it. */
Ben Lindstromcb978aa2001-03-05 07:07:49 +0000946 if (type != SSH_MSG_NONE) {
947 xfree(setp);
Damien Miller95def091999-11-25 00:26:21 +1100948 return type;
Ben Lindstromcb978aa2001-03-05 07:07:49 +0000949 }
Damien Miller5428f641999-11-25 11:54:57 +1100950 /*
951 * Otherwise, wait for some data to arrive, add it to the
952 * buffer, and try again.
953 */
Ben Lindstromcb978aa2001-03-05 07:07:49 +0000954 memset(setp, 0, howmany(connection_in + 1, NFDBITS) *
955 sizeof(fd_mask));
956 FD_SET(connection_in, setp);
Damien Miller5428f641999-11-25 11:54:57 +1100957
Darren Tucker3fc464e2008-06-13 06:42:45 +1000958 if (packet_timeout_ms > 0) {
959 ms_remain = packet_timeout_ms;
960 timeoutp = &timeout;
961 }
Damien Miller95def091999-11-25 00:26:21 +1100962 /* Wait for some data to arrive. */
Darren Tucker3fc464e2008-06-13 06:42:45 +1000963 for (;;) {
964 if (packet_timeout_ms != -1) {
965 ms_to_timeval(&timeout, ms_remain);
966 gettimeofday(&start, NULL);
967 }
968 if ((ret = select(connection_in + 1, setp, NULL,
969 NULL, timeoutp)) >= 0)
970 break;
Damien Millerd8968ad2008-07-04 23:10:49 +1000971 if (errno != EAGAIN && errno != EINTR &&
972 errno != EWOULDBLOCK)
Darren Tucker3fc464e2008-06-13 06:42:45 +1000973 break;
974 if (packet_timeout_ms == -1)
975 continue;
976 ms_subtract_diff(&start, &ms_remain);
977 if (ms_remain <= 0) {
978 ret = 0;
979 break;
980 }
981 }
982 if (ret == 0) {
983 logit("Connection to %.200s timed out while "
984 "waiting to read", get_remote_ipaddr());
985 cleanup_exit(255);
986 }
Damien Miller95def091999-11-25 00:26:21 +1100987 /* Read data from the socket. */
988 len = read(connection_in, buf, sizeof(buf));
Damien Miller5e7c10e1999-12-16 13:18:04 +1100989 if (len == 0) {
Damien Miller996acd22003-04-09 20:59:48 +1000990 logit("Connection closed by %.200s", get_remote_ipaddr());
Darren Tucker3e33cec2003-10-02 16:12:36 +1000991 cleanup_exit(255);
Damien Miller5e7c10e1999-12-16 13:18:04 +1100992 }
Damien Miller95def091999-11-25 00:26:21 +1100993 if (len < 0)
994 fatal("Read from socket failed: %.100s", strerror(errno));
995 /* Append it to the buffer. */
996 packet_process_incoming(buf, len);
997 }
998 /* NOTREACHED */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000999}
1000
Damien Miller278f9072001-12-21 15:00:19 +11001001int
Damien Millerdff50992002-01-22 23:16:32 +11001002packet_read(void)
Damien Miller278f9072001-12-21 15:00:19 +11001003{
Damien Millerdff50992002-01-22 23:16:32 +11001004 return packet_read_seqnr(NULL);
Damien Miller278f9072001-12-21 15:00:19 +11001005}
1006
Damien Miller5428f641999-11-25 11:54:57 +11001007/*
1008 * Waits until a packet has been received, verifies that its type matches
1009 * that given, and gives a fatal error and exits if there is a mismatch.
1010 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001011
1012void
Damien Millerdff50992002-01-22 23:16:32 +11001013packet_read_expect(int expected_type)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001014{
Damien Miller95def091999-11-25 00:26:21 +11001015 int type;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001016
Damien Millerdff50992002-01-22 23:16:32 +11001017 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001018 if (type != expected_type)
1019 packet_disconnect("Protocol error: expected packet type %d, got %d",
Damien Miller33b13562000-04-04 14:38:59 +10001020 expected_type, type);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001021}
1022
1023/* Checks if a full packet is available in the data received so far via
Damien Miller95def091999-11-25 00:26:21 +11001024 * packet_process_incoming. If so, reads the packet; otherwise returns
1025 * SSH_MSG_NONE. This does not wait for data from the connection.
1026 *
Damien Miller5ed3d572008-02-10 22:27:47 +11001027 * SSH_MSG_DISCONNECT is handled specially here. Also,
1028 * SSH_MSG_IGNORE messages are skipped by this function and are never returned
1029 * to higher levels.
Damien Miller95def091999-11-25 00:26:21 +11001030 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001031
Ben Lindstrombba81212001-06-25 05:01:22 +00001032static int
Damien Millerdff50992002-01-22 23:16:32 +11001033packet_read_poll1(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001034{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001035 u_int len, padded_len;
Ben Lindstrom4a7714a2002-02-26 18:04:38 +00001036 u_char *cp, type;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001037 u_int checksum, stored_checksum;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001038
Damien Miller95def091999-11-25 00:26:21 +11001039 /* Check if input size is less than minimum packet size. */
1040 if (buffer_len(&input) < 4 + 8)
1041 return SSH_MSG_NONE;
1042 /* Get length of incoming packet. */
Ben Lindstrom4a7714a2002-02-26 18:04:38 +00001043 cp = buffer_ptr(&input);
Damien Miller3f941882006-03-31 23:13:02 +11001044 len = get_u32(cp);
Damien Miller95def091999-11-25 00:26:21 +11001045 if (len < 1 + 2 + 2 || len > 256 * 1024)
Ben Lindstrom0cc2a472002-11-09 15:41:39 +00001046 packet_disconnect("Bad packet length %u.", len);
Damien Miller95def091999-11-25 00:26:21 +11001047 padded_len = (len + 8) & ~7;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001048
Damien Miller95def091999-11-25 00:26:21 +11001049 /* Check if the packet has been entirely received. */
1050 if (buffer_len(&input) < 4 + padded_len)
1051 return SSH_MSG_NONE;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001052
Damien Miller95def091999-11-25 00:26:21 +11001053 /* The entire packet is in buffer. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001054
Damien Miller95def091999-11-25 00:26:21 +11001055 /* Consume packet length. */
1056 buffer_consume(&input, 4);
1057
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001058 /*
1059 * Cryptographic attack detector for ssh
1060 * (C)1998 CORE-SDI, Buenos Aires Argentina
1061 * Ariel Futoransky(futo@core-sdi.com)
1062 */
Damien Miller3c9c1fb2006-09-17 06:08:53 +10001063 if (!receive_context.plaintext) {
1064 switch (detect_attack(buffer_ptr(&input), padded_len)) {
1065 case DEATTACK_DETECTED:
1066 packet_disconnect("crc32 compensation attack: "
1067 "network attack detected");
1068 case DEATTACK_DOS_DETECTED:
1069 packet_disconnect("deattack denial of "
1070 "service detected");
1071 }
1072 }
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001073
1074 /* Decrypt data to incoming_packet. */
Damien Miller95def091999-11-25 00:26:21 +11001075 buffer_clear(&incoming_packet);
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001076 cp = buffer_append_space(&incoming_packet, padded_len);
Damien Miller963f6b22002-02-19 15:21:23 +11001077 cipher_crypt(&receive_context, cp, buffer_ptr(&input), padded_len);
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001078
Damien Miller95def091999-11-25 00:26:21 +11001079 buffer_consume(&input, padded_len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001080
1081#ifdef PACKET_DEBUG
Damien Miller95def091999-11-25 00:26:21 +11001082 fprintf(stderr, "read_poll plain: ");
1083 buffer_dump(&incoming_packet);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001084#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001085
Damien Miller95def091999-11-25 00:26:21 +11001086 /* Compute packet checksum. */
Damien Miller708d21c2002-01-22 23:18:15 +11001087 checksum = ssh_crc32(buffer_ptr(&incoming_packet),
Damien Miller33b13562000-04-04 14:38:59 +10001088 buffer_len(&incoming_packet) - 4);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001089
Damien Miller95def091999-11-25 00:26:21 +11001090 /* Skip padding. */
1091 buffer_consume(&incoming_packet, 8 - len % 8);
Damien Millerfd7c9111999-11-08 16:15:55 +11001092
Damien Miller95def091999-11-25 00:26:21 +11001093 /* Test check bytes. */
Damien Miller95def091999-11-25 00:26:21 +11001094 if (len != buffer_len(&incoming_packet))
Damien Miller278f9072001-12-21 15:00:19 +11001095 packet_disconnect("packet_read_poll1: len %d != buffer_len %d.",
Damien Miller33b13562000-04-04 14:38:59 +10001096 len, buffer_len(&incoming_packet));
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001097
Ben Lindstrom4a7714a2002-02-26 18:04:38 +00001098 cp = (u_char *)buffer_ptr(&incoming_packet) + len - 4;
Damien Miller3f941882006-03-31 23:13:02 +11001099 stored_checksum = get_u32(cp);
Damien Miller95def091999-11-25 00:26:21 +11001100 if (checksum != stored_checksum)
1101 packet_disconnect("Corrupted check bytes on input.");
1102 buffer_consume_end(&incoming_packet, 4);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001103
Damien Miller95def091999-11-25 00:26:21 +11001104 if (packet_compression) {
1105 buffer_clear(&compression_buffer);
1106 buffer_uncompress(&incoming_packet, &compression_buffer);
1107 buffer_clear(&incoming_packet);
1108 buffer_append(&incoming_packet, buffer_ptr(&compression_buffer),
Damien Miller33b13562000-04-04 14:38:59 +10001109 buffer_len(&compression_buffer));
Damien Miller95def091999-11-25 00:26:21 +11001110 }
Damien Millerb61f3fc2008-07-11 17:36:48 +10001111 p_read.packets++;
1112 p_read.bytes += padded_len + 4;
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001113 type = buffer_get_char(&incoming_packet);
Darren Tuckerb2694f02004-11-05 20:27:54 +11001114 if (type < SSH_MSG_MIN || type > SSH_MSG_MAX)
1115 packet_disconnect("Invalid ssh1 packet type: %d", type);
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001116 return type;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001117}
Damien Miller95def091999-11-25 00:26:21 +11001118
Ben Lindstrombba81212001-06-25 05:01:22 +00001119static int
Damien Millerdff50992002-01-22 23:16:32 +11001120packet_read_poll2(u_int32_t *seqnr_p)
Damien Miller33b13562000-04-04 14:38:59 +10001121{
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001122 static u_int packet_length = 0;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001123 u_int padlen, need;
Ben Lindstrom4a7714a2002-02-26 18:04:38 +00001124 u_char *macbuf, *cp, type;
Damien Millereccb9de2005-06-17 12:59:34 +10001125 u_int maclen, block_size;
Damien Miller33b13562000-04-04 14:38:59 +10001126 Enc *enc = NULL;
1127 Mac *mac = NULL;
1128 Comp *comp = NULL;
1129
Ben Lindstrom2d90e002001-04-04 02:00:54 +00001130 if (newkeys[MODE_IN] != NULL) {
1131 enc = &newkeys[MODE_IN]->enc;
1132 mac = &newkeys[MODE_IN]->mac;
1133 comp = &newkeys[MODE_IN]->comp;
Damien Miller33b13562000-04-04 14:38:59 +10001134 }
1135 maclen = mac && mac->enabled ? mac->mac_len : 0;
Damien Miller963f6b22002-02-19 15:21:23 +11001136 block_size = enc ? enc->block_size : 8;
Damien Miller33b13562000-04-04 14:38:59 +10001137
1138 if (packet_length == 0) {
1139 /*
1140 * check if input size is less than the cipher block size,
1141 * decrypt first block and extract length of incoming packet
1142 */
1143 if (buffer_len(&input) < block_size)
1144 return SSH_MSG_NONE;
1145 buffer_clear(&incoming_packet);
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001146 cp = buffer_append_space(&incoming_packet, block_size);
Damien Miller963f6b22002-02-19 15:21:23 +11001147 cipher_crypt(&receive_context, cp, buffer_ptr(&input),
Damien Miller33b13562000-04-04 14:38:59 +10001148 block_size);
Ben Lindstrom4a7714a2002-02-26 18:04:38 +00001149 cp = buffer_ptr(&incoming_packet);
Damien Miller3f941882006-03-31 23:13:02 +11001150 packet_length = get_u32(cp);
Damien Miller33b13562000-04-04 14:38:59 +10001151 if (packet_length < 1 + 4 || packet_length > 256 * 1024) {
Darren Tuckera8151da2003-09-22 21:06:46 +10001152#ifdef PACKET_DEBUG
Damien Miller33b13562000-04-04 14:38:59 +10001153 buffer_dump(&incoming_packet);
Darren Tuckera8151da2003-09-22 21:06:46 +10001154#endif
Ben Lindstrom0cc2a472002-11-09 15:41:39 +00001155 packet_disconnect("Bad packet length %u.", packet_length);
Damien Miller33b13562000-04-04 14:38:59 +10001156 }
Ben Lindstrom0cc2a472002-11-09 15:41:39 +00001157 DBG(debug("input: packet len %u", packet_length+4));
Damien Miller33b13562000-04-04 14:38:59 +10001158 buffer_consume(&input, block_size);
1159 }
1160 /* we have a partial packet of block_size bytes */
1161 need = 4 + packet_length - block_size;
1162 DBG(debug("partial packet %d, need %d, maclen %d", block_size,
1163 need, maclen));
1164 if (need % block_size != 0)
1165 fatal("padding error: need %d block %d mod %d",
1166 need, block_size, need % block_size);
1167 /*
1168 * check if the entire packet has been received and
1169 * decrypt into incoming_packet
1170 */
1171 if (buffer_len(&input) < need + maclen)
1172 return SSH_MSG_NONE;
1173#ifdef PACKET_DEBUG
1174 fprintf(stderr, "read_poll enc/full: ");
1175 buffer_dump(&input);
1176#endif
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001177 cp = buffer_append_space(&incoming_packet, need);
Damien Miller963f6b22002-02-19 15:21:23 +11001178 cipher_crypt(&receive_context, cp, buffer_ptr(&input), need);
Damien Miller33b13562000-04-04 14:38:59 +10001179 buffer_consume(&input, need);
1180 /*
1181 * compute MAC over seqnr and packet,
1182 * increment sequence number for incoming packet
1183 */
Damien Miller4af51302000-04-16 11:18:38 +10001184 if (mac && mac->enabled) {
Damien Millera5539d22003-04-09 20:50:06 +10001185 macbuf = mac_compute(mac, p_read.seqnr,
Damien Miller708d21c2002-01-22 23:18:15 +11001186 buffer_ptr(&incoming_packet),
Ben Lindstrom06b33aa2001-02-15 03:01:59 +00001187 buffer_len(&incoming_packet));
Damien Miller33b13562000-04-04 14:38:59 +10001188 if (memcmp(macbuf, buffer_ptr(&input), mac->mac_len) != 0)
Damien Miller874d77b2000-10-14 16:23:11 +11001189 packet_disconnect("Corrupted MAC on input.");
Damien Millera5539d22003-04-09 20:50:06 +10001190 DBG(debug("MAC #%d ok", p_read.seqnr));
Damien Miller33b13562000-04-04 14:38:59 +10001191 buffer_consume(&input, mac->mac_len);
1192 }
Damien Miller278f9072001-12-21 15:00:19 +11001193 if (seqnr_p != NULL)
Damien Millera5539d22003-04-09 20:50:06 +10001194 *seqnr_p = p_read.seqnr;
1195 if (++p_read.seqnr == 0)
Damien Miller996acd22003-04-09 20:59:48 +10001196 logit("incoming seqnr wraps around");
Damien Millera5539d22003-04-09 20:50:06 +10001197 if (++p_read.packets == 0)
1198 if (!(datafellows & SSH_BUG_NOREKEY))
1199 fatal("XXX too many packets with same key");
1200 p_read.blocks += (packet_length + 4) / block_size;
Damien Millerb61f3fc2008-07-11 17:36:48 +10001201 p_read.bytes += packet_length + 4;
Damien Miller33b13562000-04-04 14:38:59 +10001202
1203 /* get padlen */
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001204 cp = buffer_ptr(&incoming_packet);
Ben Lindstrom4a7714a2002-02-26 18:04:38 +00001205 padlen = cp[4];
Damien Miller33b13562000-04-04 14:38:59 +10001206 DBG(debug("input: padlen %d", padlen));
1207 if (padlen < 4)
1208 packet_disconnect("Corrupted padlen %d on input.", padlen);
1209
1210 /* skip packet size + padlen, discard padding */
1211 buffer_consume(&incoming_packet, 4 + 1);
1212 buffer_consume_end(&incoming_packet, padlen);
1213
1214 DBG(debug("input: len before de-compress %d", buffer_len(&incoming_packet)));
1215 if (comp && comp->enabled) {
1216 buffer_clear(&compression_buffer);
1217 buffer_uncompress(&incoming_packet, &compression_buffer);
1218 buffer_clear(&incoming_packet);
1219 buffer_append(&incoming_packet, buffer_ptr(&compression_buffer),
1220 buffer_len(&compression_buffer));
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001221 DBG(debug("input: len after de-compress %d",
1222 buffer_len(&incoming_packet)));
Damien Miller33b13562000-04-04 14:38:59 +10001223 }
1224 /*
1225 * get packet type, implies consume.
1226 * return length of payload (without type field)
1227 */
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001228 type = buffer_get_char(&incoming_packet);
Darren Tuckerb2694f02004-11-05 20:27:54 +11001229 if (type < SSH2_MSG_MIN || type >= SSH2_MSG_LOCAL_MIN)
1230 packet_disconnect("Invalid ssh2 packet type: %d", type);
Ben Lindstrom2d90e002001-04-04 02:00:54 +00001231 if (type == SSH2_MSG_NEWKEYS)
1232 set_newkeys(MODE_IN);
Damien Miller9786e6e2005-07-26 21:54:56 +10001233 else if (type == SSH2_MSG_USERAUTH_SUCCESS && !server_side)
1234 packet_enable_delayed_compress();
Damien Miller33b13562000-04-04 14:38:59 +10001235#ifdef PACKET_DEBUG
Ben Lindstrom204e4882001-03-05 06:47:00 +00001236 fprintf(stderr, "read/plain[%d]:\r\n", type);
Damien Miller33b13562000-04-04 14:38:59 +10001237 buffer_dump(&incoming_packet);
1238#endif
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001239 /* reset for next packet */
1240 packet_length = 0;
1241 return type;
Damien Miller33b13562000-04-04 14:38:59 +10001242}
1243
1244int
Damien Millerdff50992002-01-22 23:16:32 +11001245packet_read_poll_seqnr(u_int32_t *seqnr_p)
Damien Miller33b13562000-04-04 14:38:59 +10001246{
Ben Lindstrom3f584742002-06-23 21:49:25 +00001247 u_int reason, seqnr;
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001248 u_char type;
Damien Miller33b13562000-04-04 14:38:59 +10001249 char *msg;
Damien Miller33b13562000-04-04 14:38:59 +10001250
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001251 for (;;) {
1252 if (compat20) {
Damien Millerdff50992002-01-22 23:16:32 +11001253 type = packet_read_poll2(seqnr_p);
Darren Tucker136e56f2008-06-08 12:49:30 +10001254 if (type) {
1255 keep_alive_timeouts = 0;
Damien Miller33b13562000-04-04 14:38:59 +10001256 DBG(debug("received packet type %d", type));
Darren Tucker136e56f2008-06-08 12:49:30 +10001257 }
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001258 switch (type) {
Damien Miller5ed3d572008-02-10 22:27:47 +11001259 case SSH2_MSG_IGNORE:
Damien Miller58226f62008-03-07 18:33:30 +11001260 debug3("Received SSH2_MSG_IGNORE");
Damien Miller5ed3d572008-02-10 22:27:47 +11001261 break;
Damien Miller33b13562000-04-04 14:38:59 +10001262 case SSH2_MSG_DEBUG:
1263 packet_get_char();
1264 msg = packet_get_string(NULL);
1265 debug("Remote: %.900s", msg);
1266 xfree(msg);
1267 msg = packet_get_string(NULL);
1268 xfree(msg);
1269 break;
1270 case SSH2_MSG_DISCONNECT:
1271 reason = packet_get_int();
1272 msg = packet_get_string(NULL);
Damien Miller996acd22003-04-09 20:59:48 +10001273 logit("Received disconnect from %s: %u: %.400s",
Ben Lindstrom3f584742002-06-23 21:49:25 +00001274 get_remote_ipaddr(), reason, msg);
Damien Miller33b13562000-04-04 14:38:59 +10001275 xfree(msg);
Darren Tucker3e33cec2003-10-02 16:12:36 +10001276 cleanup_exit(255);
Damien Miller33b13562000-04-04 14:38:59 +10001277 break;
Damien Miller659811f2002-01-22 23:23:11 +11001278 case SSH2_MSG_UNIMPLEMENTED:
1279 seqnr = packet_get_int();
Ben Lindstrom3f584742002-06-23 21:49:25 +00001280 debug("Received SSH2_MSG_UNIMPLEMENTED for %u",
1281 seqnr);
Damien Miller5ed3d572008-02-10 22:27:47 +11001282 break;
Damien Miller33b13562000-04-04 14:38:59 +10001283 default:
1284 return type;
Kevin Stevesef4eea92001-02-05 12:42:17 +00001285 }
Damien Miller33b13562000-04-04 14:38:59 +10001286 } else {
Damien Millerdff50992002-01-22 23:16:32 +11001287 type = packet_read_poll1();
Ben Lindstrom1c37c6a2001-12-06 18:00:18 +00001288 switch (type) {
Damien Miller33b13562000-04-04 14:38:59 +10001289 case SSH_MSG_IGNORE:
1290 break;
1291 case SSH_MSG_DEBUG:
1292 msg = packet_get_string(NULL);
1293 debug("Remote: %.900s", msg);
1294 xfree(msg);
1295 break;
1296 case SSH_MSG_DISCONNECT:
1297 msg = packet_get_string(NULL);
Damien Miller996acd22003-04-09 20:59:48 +10001298 logit("Received disconnect from %s: %.400s",
Ben Lindstrom3f584742002-06-23 21:49:25 +00001299 get_remote_ipaddr(), msg);
Darren Tucker3e33cec2003-10-02 16:12:36 +10001300 cleanup_exit(255);
Damien Miller33b13562000-04-04 14:38:59 +10001301 break;
1302 default:
Ben Lindstrom80c6d772001-06-05 21:09:18 +00001303 if (type)
Damien Miller33b13562000-04-04 14:38:59 +10001304 DBG(debug("received packet type %d", type));
1305 return type;
Kevin Stevesef4eea92001-02-05 12:42:17 +00001306 }
Damien Miller33b13562000-04-04 14:38:59 +10001307 }
1308 }
1309}
1310
Damien Miller278f9072001-12-21 15:00:19 +11001311int
Damien Millerdff50992002-01-22 23:16:32 +11001312packet_read_poll(void)
Damien Miller278f9072001-12-21 15:00:19 +11001313{
Damien Millerdff50992002-01-22 23:16:32 +11001314 return packet_read_poll_seqnr(NULL);
Damien Miller278f9072001-12-21 15:00:19 +11001315}
1316
Damien Miller5428f641999-11-25 11:54:57 +11001317/*
1318 * Buffers the given amount of input characters. This is intended to be used
1319 * together with packet_read_poll.
1320 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001321
1322void
Ben Lindstrom46c16222000-12-22 01:43:59 +00001323packet_process_incoming(const char *buf, u_int len)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001324{
Damien Miller95def091999-11-25 00:26:21 +11001325 buffer_append(&input, buf, len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001326}
1327
1328/* Returns a character from the packet. */
1329
Ben Lindstrom46c16222000-12-22 01:43:59 +00001330u_int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001331packet_get_char(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001332{
Damien Miller95def091999-11-25 00:26:21 +11001333 char ch;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001334
Damien Miller95def091999-11-25 00:26:21 +11001335 buffer_get(&incoming_packet, &ch, 1);
Ben Lindstrom46c16222000-12-22 01:43:59 +00001336 return (u_char) ch;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001337}
1338
1339/* Returns an integer from the packet data. */
1340
Ben Lindstrom46c16222000-12-22 01:43:59 +00001341u_int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001342packet_get_int(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001343{
Damien Miller95def091999-11-25 00:26:21 +11001344 return buffer_get_int(&incoming_packet);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001345}
1346
Damien Miller5428f641999-11-25 11:54:57 +11001347/*
1348 * Returns an arbitrary precision integer from the packet data. The integer
1349 * must have been initialized before this call.
1350 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001351
1352void
Damien Millerd432ccf2002-01-22 23:14:44 +11001353packet_get_bignum(BIGNUM * value)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001354{
Damien Miller76e1e362002-01-22 23:15:57 +11001355 buffer_get_bignum(&incoming_packet, value);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001356}
1357
Damien Miller33b13562000-04-04 14:38:59 +10001358void
Damien Millerd432ccf2002-01-22 23:14:44 +11001359packet_get_bignum2(BIGNUM * value)
Damien Miller33b13562000-04-04 14:38:59 +10001360{
Damien Miller76e1e362002-01-22 23:15:57 +11001361 buffer_get_bignum2(&incoming_packet, value);
Damien Miller33b13562000-04-04 14:38:59 +10001362}
1363
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001364void *
Damien Millereccb9de2005-06-17 12:59:34 +10001365packet_get_raw(u_int *length_ptr)
Damien Miller33b13562000-04-04 14:38:59 +10001366{
Damien Millereccb9de2005-06-17 12:59:34 +10001367 u_int bytes = buffer_len(&incoming_packet);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001368
Damien Miller33b13562000-04-04 14:38:59 +10001369 if (length_ptr != NULL)
1370 *length_ptr = bytes;
1371 return buffer_ptr(&incoming_packet);
1372}
1373
Damien Miller4af51302000-04-16 11:18:38 +10001374int
1375packet_remaining(void)
1376{
1377 return buffer_len(&incoming_packet);
1378}
1379
Damien Miller5428f641999-11-25 11:54:57 +11001380/*
1381 * Returns a string from the packet data. The string is allocated using
1382 * xmalloc; it is the responsibility of the calling program to free it when
1383 * no longer needed. The length_ptr argument may be NULL, or point to an
1384 * integer into which the length of the string is stored.
1385 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001386
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001387void *
Ben Lindstrom46c16222000-12-22 01:43:59 +00001388packet_get_string(u_int *length_ptr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001389{
Damien Miller95def091999-11-25 00:26:21 +11001390 return buffer_get_string(&incoming_packet, length_ptr);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001391}
1392
Damien Millerdb255ca2008-05-19 14:59:37 +10001393void *
1394packet_get_string_ptr(u_int *length_ptr)
1395{
1396 return buffer_get_string_ptr(&incoming_packet, length_ptr);
1397}
1398
Damien Miller5428f641999-11-25 11:54:57 +11001399/*
1400 * Sends a diagnostic message from the server to the client. This message
1401 * can be sent at any time (but not while constructing another message). The
1402 * message is printed immediately, but only if the client is being executed
1403 * in verbose mode. These messages are primarily intended to ease debugging
1404 * authentication problems. The length of the formatted message must not
1405 * exceed 1024 bytes. This will automatically call packet_write_wait.
1406 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001407
1408void
Damien Miller95def091999-11-25 00:26:21 +11001409packet_send_debug(const char *fmt,...)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001410{
Damien Miller95def091999-11-25 00:26:21 +11001411 char buf[1024];
1412 va_list args;
1413
Ben Lindstroma14ee472000-12-07 01:24:58 +00001414 if (compat20 && (datafellows & SSH_BUG_DEBUG))
1415 return;
1416
Damien Miller95def091999-11-25 00:26:21 +11001417 va_start(args, fmt);
1418 vsnprintf(buf, sizeof(buf), fmt, args);
1419 va_end(args);
1420
Damien Miller7c8af4f2000-05-01 08:24:07 +10001421 if (compat20) {
1422 packet_start(SSH2_MSG_DEBUG);
1423 packet_put_char(0); /* bool: always display */
1424 packet_put_cstring(buf);
1425 packet_put_cstring("");
1426 } else {
1427 packet_start(SSH_MSG_DEBUG);
1428 packet_put_cstring(buf);
1429 }
Damien Miller95def091999-11-25 00:26:21 +11001430 packet_send();
1431 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001432}
1433
Damien Miller5428f641999-11-25 11:54:57 +11001434/*
1435 * Logs the error plus constructs and sends a disconnect packet, closes the
1436 * connection, and exits. This function never returns. The error message
1437 * should not contain a newline. The length of the formatted message must
1438 * not exceed 1024 bytes.
1439 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001440
1441void
Damien Miller95def091999-11-25 00:26:21 +11001442packet_disconnect(const char *fmt,...)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001443{
Damien Miller95def091999-11-25 00:26:21 +11001444 char buf[1024];
1445 va_list args;
1446 static int disconnecting = 0;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001447
Damien Miller95def091999-11-25 00:26:21 +11001448 if (disconnecting) /* Guard against recursive invocations. */
1449 fatal("packet_disconnect called recursively.");
1450 disconnecting = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001451
Damien Miller5428f641999-11-25 11:54:57 +11001452 /*
1453 * Format the message. Note that the caller must make sure the
1454 * message is of limited size.
1455 */
Damien Miller95def091999-11-25 00:26:21 +11001456 va_start(args, fmt);
1457 vsnprintf(buf, sizeof(buf), fmt, args);
1458 va_end(args);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001459
Ben Lindstrom9bda7ae2002-11-09 15:46:24 +00001460 /* Display the error locally */
Damien Miller996acd22003-04-09 20:59:48 +10001461 logit("Disconnecting: %.100s", buf);
Ben Lindstrom9bda7ae2002-11-09 15:46:24 +00001462
Damien Miller95def091999-11-25 00:26:21 +11001463 /* Send the disconnect message to the other side, and wait for it to get sent. */
Damien Miller33b13562000-04-04 14:38:59 +10001464 if (compat20) {
1465 packet_start(SSH2_MSG_DISCONNECT);
1466 packet_put_int(SSH2_DISCONNECT_PROTOCOL_ERROR);
1467 packet_put_cstring(buf);
1468 packet_put_cstring("");
1469 } else {
1470 packet_start(SSH_MSG_DISCONNECT);
Ben Lindstrom664408d2001-06-09 01:42:01 +00001471 packet_put_cstring(buf);
Damien Miller33b13562000-04-04 14:38:59 +10001472 }
Damien Miller95def091999-11-25 00:26:21 +11001473 packet_send();
1474 packet_write_wait();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001475
Damien Miller95def091999-11-25 00:26:21 +11001476 /* Stop listening for connections. */
Ben Lindstrom601e4362001-06-21 03:19:23 +00001477 channel_close_all();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001478
Damien Miller95def091999-11-25 00:26:21 +11001479 /* Close the connection. */
1480 packet_close();
Darren Tucker3e33cec2003-10-02 16:12:36 +10001481 cleanup_exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001482}
1483
Damien Miller5428f641999-11-25 11:54:57 +11001484/* Checks if there is any buffered output, and tries to write some of the output. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001485
1486void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001487packet_write_poll(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001488{
Damien Miller95def091999-11-25 00:26:21 +11001489 int len = buffer_len(&output);
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001490
Damien Miller95def091999-11-25 00:26:21 +11001491 if (len > 0) {
1492 len = write(connection_out, buffer_ptr(&output), len);
Damien Millerd874fa52008-07-05 09:40:56 +10001493 if (len == -1) {
1494 if (errno == EINTR || errno == EAGAIN ||
1495 errno == EWOULDBLOCK)
Damien Miller95def091999-11-25 00:26:21 +11001496 return;
Damien Millerd874fa52008-07-05 09:40:56 +10001497 fatal("Write failed: %.100s", strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +11001498 }
Damien Millerd874fa52008-07-05 09:40:56 +10001499 if (len == 0)
1500 fatal("Write connection closed");
Damien Miller95def091999-11-25 00:26:21 +11001501 buffer_consume(&output, len);
1502 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001503}
1504
Damien Millerd874fa52008-07-05 09:40:56 +10001505
Damien Miller5428f641999-11-25 11:54:57 +11001506/*
1507 * Calls packet_write_poll repeatedly until all pending output data has been
1508 * written.
1509 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001510
1511void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001512packet_write_wait(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001513{
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001514 fd_set *setp;
Darren Tucker3fc464e2008-06-13 06:42:45 +10001515 int ret, ms_remain;
1516 struct timeval start, timeout, *timeoutp = NULL;
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001517
Damien Miller07d86be2006-03-26 14:19:21 +11001518 setp = (fd_set *)xcalloc(howmany(connection_out + 1, NFDBITS),
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001519 sizeof(fd_mask));
Damien Miller95def091999-11-25 00:26:21 +11001520 packet_write_poll();
1521 while (packet_have_data_to_write()) {
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001522 memset(setp, 0, howmany(connection_out + 1, NFDBITS) *
1523 sizeof(fd_mask));
1524 FD_SET(connection_out, setp);
Darren Tucker3fc464e2008-06-13 06:42:45 +10001525
1526 if (packet_timeout_ms > 0) {
1527 ms_remain = packet_timeout_ms;
1528 timeoutp = &timeout;
1529 }
1530 for (;;) {
1531 if (packet_timeout_ms != -1) {
1532 ms_to_timeval(&timeout, ms_remain);
1533 gettimeofday(&start, NULL);
1534 }
1535 if ((ret = select(connection_out + 1, NULL, setp,
1536 NULL, timeoutp)) >= 0)
1537 break;
Damien Millerd8968ad2008-07-04 23:10:49 +10001538 if (errno != EAGAIN && errno != EINTR &&
1539 errno != EWOULDBLOCK)
Darren Tucker3fc464e2008-06-13 06:42:45 +10001540 break;
1541 if (packet_timeout_ms == -1)
1542 continue;
1543 ms_subtract_diff(&start, &ms_remain);
1544 if (ms_remain <= 0) {
1545 ret = 0;
1546 break;
1547 }
1548 }
1549 if (ret == 0) {
1550 logit("Connection to %.200s timed out while "
1551 "waiting to write", get_remote_ipaddr());
1552 cleanup_exit(255);
1553 }
Damien Miller95def091999-11-25 00:26:21 +11001554 packet_write_poll();
1555 }
Ben Lindstromcb978aa2001-03-05 07:07:49 +00001556 xfree(setp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001557}
1558
1559/* Returns true if there is buffered data to write to the connection. */
1560
1561int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001562packet_have_data_to_write(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001563{
Damien Miller95def091999-11-25 00:26:21 +11001564 return buffer_len(&output) != 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001565}
1566
1567/* Returns true if there is not too much data to write to the connection. */
1568
1569int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001570packet_not_very_much_data_to_write(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001571{
Damien Miller95def091999-11-25 00:26:21 +11001572 if (interactive_mode)
1573 return buffer_len(&output) < 16384;
1574 else
1575 return buffer_len(&output) < 128 * 1024;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001576}
1577
Ben Lindstromc8a49d72003-04-02 15:18:22 +00001578
Ben Lindstromfaa1ea82002-12-23 02:42:52 +00001579static void
Ben Lindstroma7433982002-12-23 02:41:41 +00001580packet_set_tos(int interactive)
1581{
Damien Miller5924ceb2003-11-22 15:02:42 +11001582#if defined(IP_TOS) && !defined(IP_TOS_IS_BROKEN)
Ben Lindstroma7433982002-12-23 02:41:41 +00001583 int tos = interactive ? IPTOS_LOWDELAY : IPTOS_THROUGHPUT;
1584
1585 if (!packet_connection_is_on_socket() ||
1586 !packet_connection_is_ipv4())
1587 return;
1588 if (setsockopt(connection_in, IPPROTO_IP, IP_TOS, &tos,
1589 sizeof(tos)) < 0)
1590 error("setsockopt IP_TOS %d: %.100s:",
1591 tos, strerror(errno));
Ben Lindstromc8a49d72003-04-02 15:18:22 +00001592#endif
Damien Miller5924ceb2003-11-22 15:02:42 +11001593}
Ben Lindstroma7433982002-12-23 02:41:41 +00001594
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001595/* Informs that the current session is interactive. Sets IP flags for that. */
1596
1597void
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001598packet_set_interactive(int interactive)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001599{
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001600 static int called = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001601
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001602 if (called)
1603 return;
1604 called = 1;
1605
Damien Miller95def091999-11-25 00:26:21 +11001606 /* Record that we are in interactive mode. */
1607 interactive_mode = interactive;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001608
Damien Miller34132e52000-01-14 15:45:46 +11001609 /* Only set socket options if using a socket. */
1610 if (!packet_connection_is_on_socket())
Ben Lindstrom93b6b772003-04-27 17:55:33 +00001611 return;
Damien Miller314dd4b2006-03-15 12:05:22 +11001612 set_nodelay(connection_in);
Ben Lindstroma7433982002-12-23 02:41:41 +00001613 packet_set_tos(interactive);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001614}
1615
1616/* Returns true if the current connection is interactive. */
1617
1618int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001619packet_is_interactive(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001620{
Damien Miller95def091999-11-25 00:26:21 +11001621 return interactive_mode;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001622}
Damien Miller6162d121999-11-21 13:23:52 +11001623
Darren Tucker1f8311c2004-05-13 16:39:33 +10001624int
Darren Tucker502d3842003-06-28 12:38:01 +10001625packet_set_maxsize(u_int s)
Damien Miller6162d121999-11-21 13:23:52 +11001626{
Damien Miller95def091999-11-25 00:26:21 +11001627 static int called = 0;
Ben Lindstrom8b2eecd2002-07-07 22:11:51 +00001628
Damien Miller95def091999-11-25 00:26:21 +11001629 if (called) {
Damien Miller996acd22003-04-09 20:59:48 +10001630 logit("packet_set_maxsize: called twice: old %d new %d",
Damien Miller33b13562000-04-04 14:38:59 +10001631 max_packet_size, s);
Damien Miller95def091999-11-25 00:26:21 +11001632 return -1;
1633 }
1634 if (s < 4 * 1024 || s > 1024 * 1024) {
Damien Miller996acd22003-04-09 20:59:48 +10001635 logit("packet_set_maxsize: bad size %d", s);
Damien Miller95def091999-11-25 00:26:21 +11001636 return -1;
1637 }
Ben Lindstromae3de4b2001-10-03 17:10:17 +00001638 called = 1;
Ben Lindstrom16d45b32001-06-13 04:39:18 +00001639 debug("packet_set_maxsize: setting to %d", s);
Damien Miller95def091999-11-25 00:26:21 +11001640 max_packet_size = s;
1641 return s;
Damien Miller6162d121999-11-21 13:23:52 +11001642}
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001643
Damien Miller9f643902001-11-12 11:02:52 +11001644/* roundup current message to pad bytes */
1645void
1646packet_add_padding(u_char pad)
1647{
1648 extra_pad = pad;
1649}
1650
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001651/*
1652 * 9.2. Ignored Data Message
Ben Lindstroma3700052001-04-05 23:26:32 +00001653 *
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001654 * byte SSH_MSG_IGNORE
1655 * string data
Ben Lindstroma3700052001-04-05 23:26:32 +00001656 *
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001657 * All implementations MUST understand (and ignore) this message at any
1658 * time (after receiving the protocol version). No implementation is
1659 * required to send them. This message can be used as an additional
1660 * protection measure against advanced traffic analysis techniques.
1661 */
Ben Lindstrome229b252001-03-05 06:28:06 +00001662void
1663packet_send_ignore(int nbytes)
1664{
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001665 u_int32_t rnd = 0;
Ben Lindstrome229b252001-03-05 06:28:06 +00001666 int i;
1667
1668 packet_start(compat20 ? SSH2_MSG_IGNORE : SSH_MSG_IGNORE);
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001669 packet_put_int(nbytes);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001670 for (i = 0; i < nbytes; i++) {
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001671 if (i % 4 == 0)
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001672 rnd = arc4random();
Damien Miller8ba29fe2006-03-26 14:25:19 +11001673 packet_put_char((u_char)rnd & 0xff);
Darren Tucker3f9fdc72004-06-22 12:56:01 +10001674 rnd >>= 8;
Ben Lindstrom5699c5f2001-03-05 06:17:49 +00001675 }
1676}
Damien Millera5539d22003-04-09 20:50:06 +10001677
Darren Tucker1f8311c2004-05-13 16:39:33 +10001678#define MAX_PACKETS (1U<<31)
Damien Millera5539d22003-04-09 20:50:06 +10001679int
1680packet_need_rekeying(void)
1681{
1682 if (datafellows & SSH_BUG_NOREKEY)
1683 return 0;
1684 return
1685 (p_send.packets > MAX_PACKETS) ||
1686 (p_read.packets > MAX_PACKETS) ||
1687 (max_blocks_out && (p_send.blocks > max_blocks_out)) ||
1688 (max_blocks_in && (p_read.blocks > max_blocks_in));
1689}
1690
1691void
1692packet_set_rekey_limit(u_int32_t bytes)
1693{
1694 rekey_limit = bytes;
1695}
Damien Miller9786e6e2005-07-26 21:54:56 +10001696
1697void
1698packet_set_server(void)
1699{
1700 server_side = 1;
1701}
1702
1703void
1704packet_set_authenticated(void)
1705{
1706 after_authentication = 1;
1707}