]> andersk Git - openssh.git/blame - packet.c
- andreas@cvs.openbsd.org 2009/05/28 16:50:16
[openssh.git] / packet.c
CommitLineData
d0137ef8 1/* $OpenBSD: packet.c,v 1.163 2009/05/28 16:50:16 andreas Exp $ */
8efc0c15 2/*
5260325f 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
5260325f 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
5260325f 6 * 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.
7e7327a1 8 *
bcbf86ec 9 * 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".
14 *
15 *
7e7327a1 16 * SSH2 packet format added by Markus Friedl.
a96070d4 17 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
bcbf86ec 18 *
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.
7e7327a1 27 *
bcbf86ec 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.
5260325f 38 */
8efc0c15 39
40#include "includes.h"
a3dcf543 41
5b04a8bf 42#include <sys/types.h>
2f5b2528 43#include "openbsd-compat/sys-queue.h"
536c14e8 44#include <sys/param.h>
9794d008 45#include <sys/socket.h>
e264ac72 46#ifdef HAVE_SYS_TIME_H
47# include <sys/time.h>
48#endif
9794d008 49
9794d008 50#include <netinet/in.h>
a3dcf543 51#include <netinet/ip.h>
c5bca5d4 52#include <arpa/inet.h>
8efc0c15 53
028094f4 54#include <errno.h>
4c72fcfd 55#include <stdarg.h>
cf851879 56#include <stdio.h>
ffa517a8 57#include <stdlib.h>
00146caa 58#include <string.h>
5188ba17 59#include <unistd.h>
31652869 60#include <signal.h>
4c72fcfd 61
8efc0c15 62#include "xmalloc.h"
63#include "buffer.h"
64#include "packet.h"
8efc0c15 65#include "crc32.h"
8efc0c15 66#include "compress.h"
67#include "deattack.h"
a5efa1bb 68#include "channels.h"
7e7327a1 69#include "compat.h"
42f11eb2 70#include "ssh1.h"
7e7327a1 71#include "ssh2.h"
94ec8c6b 72#include "cipher.h"
31652869 73#include "key.h"
7e7327a1 74#include "kex.h"
b2552997 75#include "mac.h"
42f11eb2 76#include "log.h"
77#include "canohost.h"
2ac91be1 78#include "misc.h"
9459414c 79#include "ssh.h"
d0137ef8 80#include "roaming.h"
7e7327a1 81
82#ifdef PACKET_DEBUG
83#define DBG(x) x
84#else
85#define DBG(x)
86#endif
87
608bcf58 88#define PACKET_MAX_SIZE (256 * 1024)
89
dc1f1948 90struct packet_state {
91 u_int32_t seqnr;
92 u_int32_t packets;
93 u_int64_t blocks;
94 u_int64_t bytes;
95};
8efc0c15 96
dc1f1948 97struct packet {
98 TAILQ_ENTRY(packet) next;
99 u_char type;
100 Buffer payload;
101};
8efc0c15 102
dc1f1948 103struct session_state {
104 /*
105 * This variable contains the file descriptors used for
106 * communicating with the other side. connection_in is used for
107 * reading; connection_out for writing. These can be the same
108 * descriptor, in which case it is assumed to be a socket.
109 */
110 int connection_in;
111 int connection_out;
5260325f 112
dc1f1948 113 /* Protocol flags for the remote side. */
114 u_int remote_protocol_flags;
8efc0c15 115
dc1f1948 116 /* Encryption context for receiving data. Only used for decryption. */
117 CipherContext receive_context;
8efc0c15 118
dc1f1948 119 /* Encryption context for sending data. Only used for encryption. */
120 CipherContext send_context;
8efc0c15 121
dc1f1948 122 /* Buffer for raw input data from the socket. */
123 Buffer input;
8efc0c15 124
dc1f1948 125 /* Buffer for raw output data going to the socket. */
126 Buffer output;
8efc0c15 127
dc1f1948 128 /* Buffer for the partial outgoing packet being constructed. */
129 Buffer outgoing_packet;
8efc0c15 130
dc1f1948 131 /* Buffer for the incoming packet currently being processed. */
132 Buffer incoming_packet;
8efc0c15 133
dc1f1948 134 /* Scratch buffer for packet compression/decompression. */
135 Buffer compression_buffer;
136 int compression_buffer_ready;
9d6b7add 137
dc1f1948 138 /*
139 * Flag indicating whether packet compression/decompression is
140 * enabled.
141 */
142 int packet_compression;
8efc0c15 143
dc1f1948 144 /* default maximum packet size */
145 u_int max_packet_size;
8efc0c15 146
dc1f1948 147 /* Flag indicating whether this module has been initialized. */
148 int initialized;
07200973 149
dc1f1948 150 /* Set to true if the connection is interactive. */
151 int interactive_mode;
07200973 152
dc1f1948 153 /* Set to true if we are the server side. */
154 int server_side;
ac47b626 155
dc1f1948 156 /* Set to true if we are authenticated. */
157 int after_authentication;
bc2d97c8 158
dc1f1948 159 int keep_alive_timeouts;
ffd7b36b 160
dc1f1948 161 /* The maximum time that we will wait to send or receive a packet */
162 int packet_timeout_ms;
7e7327a1 163
dc1f1948 164 /* Session key information for Encryption and MAC */
165 Newkeys *newkeys[MODE_MAX];
166 struct packet_state p_read, p_send;
9459414c 167
dc1f1948 168 u_int64_t max_blocks_in, max_blocks_out;
169 u_int32_t rekey_limit;
b4b701be 170
dc1f1948 171 /* Session key for protocol v1 */
172 u_char ssh1_key[SSH_SESSION_KEY_LENGTH];
173 u_int ssh1_keylen;
608bcf58 174
dc1f1948 175 /* roundup current message to extra_pad bytes */
176 u_char extra_pad;
177
178 /* XXX discard incoming data after MAC error */
179 u_int packet_discard;
180 Mac *packet_discard_mac;
181
182 /* Used in packet_read_poll2() */
183 u_int packlen;
184
185 TAILQ_HEAD(, packet) outgoing;
ffd7b36b 186};
dc1f1948 187
188static struct session_state *active_state;
189
190static struct session_state *
191alloc_session_state()
192{
193 struct session_state *s = xcalloc(1, sizeof(*s));
194
195 s->connection_in = -1;
196 s->connection_out = -1;
197 s->max_packet_size = 32768;
198 s->packet_timeout_ms = -1;
199 return s;
200}
ffd7b36b 201
aa3378df 202/*
203 * Sets the descriptors used for communication. Disables encryption until
204 * packet_set_encryption_key is called.
205 */
8efc0c15 206void
207packet_set_connection(int fd_in, int fd_out)
208{
94ec8c6b 209 Cipher *none = cipher_by_name("none");
e1feb9bf 210
94ec8c6b 211 if (none == NULL)
212 fatal("packet_set_connection: cannot load cipher 'none'");
dc1f1948 213 if (active_state == NULL)
214 active_state = alloc_session_state();
215 active_state->connection_in = fd_in;
216 active_state->connection_out = fd_out;
217 cipher_init(&active_state->send_context, none, (const u_char *)"",
f6be21a0 218 0, NULL, 0, CIPHER_ENCRYPT);
dc1f1948 219 cipher_init(&active_state->receive_context, none, (const u_char *)"",
f6be21a0 220 0, NULL, 0, CIPHER_DECRYPT);
dc1f1948 221 active_state->newkeys[MODE_IN] = active_state->newkeys[MODE_OUT] = NULL;
222 if (!active_state->initialized) {
223 active_state->initialized = 1;
224 buffer_init(&active_state->input);
225 buffer_init(&active_state->output);
226 buffer_init(&active_state->outgoing_packet);
227 buffer_init(&active_state->incoming_packet);
228 TAILQ_INIT(&active_state->outgoing);
229 active_state->p_send.packets = active_state->p_read.packets = 0;
5260325f 230 }
8efc0c15 231}
232
bc2d97c8 233void
234packet_set_timeout(int timeout, int count)
235{
236 if (timeout == 0 || count == 0) {
dc1f1948 237 active_state->packet_timeout_ms = -1;
bc2d97c8 238 return;
239 }
240 if ((INT_MAX / 1000) / count < timeout)
dc1f1948 241 active_state->packet_timeout_ms = INT_MAX;
bc2d97c8 242 else
dc1f1948 243 active_state->packet_timeout_ms = timeout * count * 1000;
bc2d97c8 244}
245
608bcf58 246static void
247packet_stop_discard(void)
248{
dc1f1948 249 if (active_state->packet_discard_mac) {
608bcf58 250 char buf[1024];
251
252 memset(buf, 'a', sizeof(buf));
dc1f1948 253 while (buffer_len(&active_state->incoming_packet) <
254 PACKET_MAX_SIZE)
255 buffer_append(&active_state->incoming_packet, buf,
256 sizeof(buf));
257 (void) mac_compute(active_state->packet_discard_mac,
258 active_state->p_read.seqnr,
259 buffer_ptr(&active_state->incoming_packet),
608bcf58 260 PACKET_MAX_SIZE);
261 }
262 logit("Finished discarding for %.200s", get_remote_ipaddr());
263 cleanup_exit(255);
264}
265
266static void
267packet_start_discard(Enc *enc, Mac *mac, u_int packet_length, u_int discard)
268{
8b773163 269 if (enc == NULL || !cipher_is_cbc(enc->cipher))
608bcf58 270 packet_disconnect("Packet corrupt");
271 if (packet_length != PACKET_MAX_SIZE && mac && mac->enabled)
dc1f1948 272 active_state->packet_discard_mac = mac;
273 if (buffer_len(&active_state->input) >= discard)
608bcf58 274 packet_stop_discard();
dc1f1948 275 active_state->packet_discard = discard -
276 buffer_len(&active_state->input);
608bcf58 277}
278
48e671d5 279/* Returns 1 if remote host is connected via socket, 0 if not. */
280
281int
d5bb9418 282packet_connection_is_on_socket(void)
48e671d5 283{
284 struct sockaddr_storage from, to;
285 socklen_t fromlen, tolen;
286
287 /* filedescriptors in and out are the same, so it's a socket */
dc1f1948 288 if (active_state->connection_in == active_state->connection_out)
48e671d5 289 return 1;
290 fromlen = sizeof(from);
291 memset(&from, 0, sizeof(from));
dc1f1948 292 if (getpeername(active_state->connection_in, (struct sockaddr *)&from,
293 &fromlen) < 0)
48e671d5 294 return 0;
295 tolen = sizeof(to);
296 memset(&to, 0, sizeof(to));
dc1f1948 297 if (getpeername(active_state->connection_out, (struct sockaddr *)&to,
298 &tolen) < 0)
48e671d5 299 return 0;
300 if (fromlen != tolen || memcmp(&from, &to, fromlen) != 0)
301 return 0;
302 if (from.ss_family != AF_INET && from.ss_family != AF_INET6)
303 return 0;
304 return 1;
305}
306
762715ce 307/*
e050d348 308 * Exports an IV from the CipherContext required to export the key
309 * state back from the unprivileged child to the privileged parent
310 * process.
311 */
312
313void
314packet_get_keyiv(int mode, u_char *iv, u_int len)
315{
316 CipherContext *cc;
317
318 if (mode == MODE_OUT)
dc1f1948 319 cc = &active_state->send_context;
e050d348 320 else
dc1f1948 321 cc = &active_state->receive_context;
e050d348 322
323 cipher_get_keyiv(cc, iv, len);
324}
325
326int
327packet_get_keycontext(int mode, u_char *dat)
328{
329 CipherContext *cc;
762715ce 330
e050d348 331 if (mode == MODE_OUT)
dc1f1948 332 cc = &active_state->send_context;
e050d348 333 else
dc1f1948 334 cc = &active_state->receive_context;
e050d348 335
336 return (cipher_get_keycontext(cc, dat));
337}
338
339void
340packet_set_keycontext(int mode, u_char *dat)
341{
342 CipherContext *cc;
762715ce 343
e050d348 344 if (mode == MODE_OUT)
dc1f1948 345 cc = &active_state->send_context;
e050d348 346 else
dc1f1948 347 cc = &active_state->receive_context;
e050d348 348
349 cipher_set_keycontext(cc, dat);
350}
351
352int
353packet_get_keyiv_len(int mode)
354{
355 CipherContext *cc;
356
357 if (mode == MODE_OUT)
dc1f1948 358 cc = &active_state->send_context;
e050d348 359 else
dc1f1948 360 cc = &active_state->receive_context;
e050d348 361
362 return (cipher_get_keyiv_len(cc));
363}
a7137f6b 364
e050d348 365void
366packet_set_iv(int mode, u_char *dat)
367{
368 CipherContext *cc;
369
370 if (mode == MODE_OUT)
dc1f1948 371 cc = &active_state->send_context;
e050d348 372 else
dc1f1948 373 cc = &active_state->receive_context;
e050d348 374
375 cipher_set_keyiv(cc, dat);
376}
a7137f6b 377
e050d348 378int
0daa6547 379packet_get_ssh1_cipher(void)
e050d348 380{
dc1f1948 381 return (cipher_get_number(active_state->receive_context.cipher));
e050d348 382}
383
ffd7b36b 384void
e8e08a80 385packet_get_state(int mode, u_int32_t *seqnr, u_int64_t *blocks, u_int32_t *packets,
386 u_int64_t *bytes)
e050d348 387{
ffd7b36b 388 struct packet_state *state;
389
dc1f1948 390 state = (mode == MODE_IN) ?
391 &active_state->p_read : &active_state->p_send;
e8e08a80 392 if (seqnr)
393 *seqnr = state->seqnr;
394 if (blocks)
395 *blocks = state->blocks;
396 if (packets)
397 *packets = state->packets;
398 if (bytes)
399 *bytes = state->bytes;
e050d348 400}
401
402void
e8e08a80 403packet_set_state(int mode, u_int32_t seqnr, u_int64_t blocks, u_int32_t packets,
404 u_int64_t bytes)
e050d348 405{
ffd7b36b 406 struct packet_state *state;
407
dc1f1948 408 state = (mode == MODE_IN) ?
409 &active_state->p_read : &active_state->p_send;
ffd7b36b 410 state->seqnr = seqnr;
411 state->blocks = blocks;
412 state->packets = packets;
e8e08a80 413 state->bytes = bytes;
e050d348 414}
415
48e671d5 416/* returns 1 if connection is via ipv4 */
417
418int
d5bb9418 419packet_connection_is_ipv4(void)
48e671d5 420{
421 struct sockaddr_storage to;
d45317d8 422 socklen_t tolen = sizeof(to);
48e671d5 423
424 memset(&to, 0, sizeof(to));
dc1f1948 425 if (getsockname(active_state->connection_out, (struct sockaddr *)&to,
426 &tolen) < 0)
48e671d5 427 return 0;
782e2103 428 if (to.ss_family == AF_INET)
429 return 1;
430#ifdef IPV4_IN_IPV6
aff51935 431 if (to.ss_family == AF_INET6 &&
782e2103 432 IN6_IS_ADDR_V4MAPPED(&((struct sockaddr_in6 *)&to)->sin6_addr))
433 return 1;
434#endif
435 return 0;
48e671d5 436}
437
8efc0c15 438/* Sets the connection into non-blocking mode. */
439
440void
d5bb9418 441packet_set_nonblocking(void)
8efc0c15 442{
5260325f 443 /* Set the socket into non-blocking mode. */
dc1f1948 444 set_nonblock(active_state->connection_in);
8efc0c15 445
dc1f1948 446 if (active_state->connection_out != active_state->connection_in)
447 set_nonblock(active_state->connection_out);
8efc0c15 448}
449
450/* Returns the socket used for reading. */
451
452int
d5bb9418 453packet_get_connection_in(void)
8efc0c15 454{
dc1f1948 455 return active_state->connection_in;
8efc0c15 456}
457
458/* Returns the descriptor used for writing. */
459
460int
d5bb9418 461packet_get_connection_out(void)
8efc0c15 462{
dc1f1948 463 return active_state->connection_out;
8efc0c15 464}
465
466/* Closes the connection and clears and frees internal data structures. */
467
468void
d5bb9418 469packet_close(void)
8efc0c15 470{
dc1f1948 471 if (!active_state->initialized)
5260325f 472 return;
dc1f1948 473 active_state->initialized = 0;
474 if (active_state->connection_in == active_state->connection_out) {
475 shutdown(active_state->connection_out, SHUT_RDWR);
476 close(active_state->connection_out);
5260325f 477 } else {
dc1f1948 478 close(active_state->connection_in);
479 close(active_state->connection_out);
5260325f 480 }
dc1f1948 481 buffer_free(&active_state->input);
482 buffer_free(&active_state->output);
483 buffer_free(&active_state->outgoing_packet);
484 buffer_free(&active_state->incoming_packet);
485 if (active_state->compression_buffer_ready) {
486 buffer_free(&active_state->compression_buffer);
5260325f 487 buffer_compress_uninit();
488 }
dc1f1948 489 cipher_cleanup(&active_state->send_context);
490 cipher_cleanup(&active_state->receive_context);
8efc0c15 491}
492
493/* Sets remote side protocol flags. */
494
495void
1e3b8b07 496packet_set_protocol_flags(u_int protocol_flags)
8efc0c15 497{
dc1f1948 498 active_state->remote_protocol_flags = protocol_flags;
8efc0c15 499}
500
501/* Returns the remote protocol flags set earlier by the above function. */
502
1e3b8b07 503u_int
d5bb9418 504packet_get_protocol_flags(void)
8efc0c15 505{
dc1f1948 506 return active_state->remote_protocol_flags;
8efc0c15 507}
508
aa3378df 509/*
510 * Starts packet compression from the next packet on in both directions.
511 * Level is compression level 1 (fastest) - 9 (slow, best) as in gzip.
512 */
8efc0c15 513
396c147e 514static void
515packet_init_compression(void)
6ba22c93 516{
dc1f1948 517 if (active_state->compression_buffer_ready == 1)
6ba22c93 518 return;
dc1f1948 519 active_state->compression_buffer_ready = 1;
520 buffer_init(&active_state->compression_buffer);
6ba22c93 521}
522
8efc0c15 523void
524packet_start_compression(int level)
525{
dc1f1948 526 if (active_state->packet_compression && !compat20)
5260325f 527 fatal("Compression already enabled.");
dc1f1948 528 active_state->packet_compression = 1;
6ba22c93 529 packet_init_compression();
530 buffer_compress_init_send(level);
531 buffer_compress_init_recv();
8efc0c15 532}
533
aa3378df 534/*
535 * Causes any further packets to be encrypted using the given key. The same
536 * key is used for both sending and reception. However, both directions are
537 * encrypted independently of each other.
538 */
9459414c 539
8efc0c15 540void
1e3b8b07 541packet_set_encryption_key(const u_char *key, u_int keylen,
94ec8c6b 542 int number)
8efc0c15 543{
94ec8c6b 544 Cipher *cipher = cipher_by_number(number);
e1feb9bf 545
94ec8c6b 546 if (cipher == NULL)
547 fatal("packet_set_encryption_key: unknown cipher number %d", number);
7e7327a1 548 if (keylen < 20)
94ec8c6b 549 fatal("packet_set_encryption_key: keylen too small: %d", keylen);
9459414c 550 if (keylen > SSH_SESSION_KEY_LENGTH)
551 fatal("packet_set_encryption_key: keylen too big: %d", keylen);
dc1f1948 552 memcpy(active_state->ssh1_key, key, keylen);
553 active_state->ssh1_keylen = keylen;
554 cipher_init(&active_state->send_context, cipher, key, keylen, NULL,
555 0, CIPHER_ENCRYPT);
556 cipher_init(&active_state->receive_context, cipher, key, keylen, NULL,
557 0, CIPHER_DECRYPT);
8efc0c15 558}
559
9459414c 560u_int
561packet_get_encryption_key(u_char *key)
562{
563 if (key == NULL)
dc1f1948 564 return (active_state->ssh1_keylen);
565 memcpy(key, active_state->ssh1_key, active_state->ssh1_keylen);
566 return (active_state->ssh1_keylen);
9459414c 567}
568
08dcb5d7 569/* Start constructing a packet to send. */
8efc0c15 570void
08dcb5d7 571packet_start(u_char type)
8efc0c15 572{
08dcb5d7 573 u_char buf[9];
574 int len;
7e7327a1 575
12bf85ed 576 DBG(debug("packet_start[%d]", type));
08dcb5d7 577 len = compat20 ? 6 : 9;
578 memset(buf, 0, len - 1);
579 buf[len - 1] = type;
dc1f1948 580 buffer_clear(&active_state->outgoing_packet);
581 buffer_append(&active_state->outgoing_packet, buf, len);
7e7327a1 582}
583
08dcb5d7 584/* Append payload. */
8efc0c15 585void
586packet_put_char(int value)
587{
5260325f 588 char ch = value;
e1feb9bf 589
dc1f1948 590 buffer_append(&active_state->outgoing_packet, &ch, 1);
8efc0c15 591}
a7137f6b 592
8efc0c15 593void
1e3b8b07 594packet_put_int(u_int value)
8efc0c15 595{
dc1f1948 596 buffer_put_int(&active_state->outgoing_packet, value);
8efc0c15 597}
a7137f6b 598
c6063ed7 599void
600packet_put_int64(u_int64_t value)
601{
602 buffer_put_int64(&active_state->outgoing_packet, value);
603}
604
8efc0c15 605void
6c0fa2b1 606packet_put_string(const void *buf, u_int len)
8efc0c15 607{
dc1f1948 608 buffer_put_string(&active_state->outgoing_packet, buf, len);
8efc0c15 609}
a7137f6b 610
7e7327a1 611void
612packet_put_cstring(const char *str)
613{
dc1f1948 614 buffer_put_cstring(&active_state->outgoing_packet, str);
7e7327a1 615}
a7137f6b 616
7e7327a1 617void
6c0fa2b1 618packet_put_raw(const void *buf, u_int len)
7e7327a1 619{
dc1f1948 620 buffer_append(&active_state->outgoing_packet, buf, len);
7e7327a1 621}
a7137f6b 622
8efc0c15 623void
5260325f 624packet_put_bignum(BIGNUM * value)
8efc0c15 625{
dc1f1948 626 buffer_put_bignum(&active_state->outgoing_packet, value);
8efc0c15 627}
a7137f6b 628
7e7327a1 629void
630packet_put_bignum2(BIGNUM * value)
631{
dc1f1948 632 buffer_put_bignum2(&active_state->outgoing_packet, value);
7e7327a1 633}
8efc0c15 634
aa3378df 635/*
636 * Finalizes and sends the packet. If the encryption key has been set,
637 * encrypts the packet before sending.
638 */
5260325f 639
396c147e 640static void
5ca51e19 641packet_send1(void)
8efc0c15 642{
a318bbf4 643 u_char buf[8], *cp;
5260325f 644 int i, padding, len;
1e3b8b07 645 u_int checksum;
ca75d7de 646 u_int32_t rnd = 0;
5260325f 647
aa3378df 648 /*
649 * If using packet compression, compress the payload of the outgoing
650 * packet.
651 */
dc1f1948 652 if (active_state->packet_compression) {
653 buffer_clear(&active_state->compression_buffer);
5260325f 654 /* Skip padding. */
dc1f1948 655 buffer_consume(&active_state->outgoing_packet, 8);
5260325f 656 /* padding */
dc1f1948 657 buffer_append(&active_state->compression_buffer,
658 "\0\0\0\0\0\0\0\0", 8);
659 buffer_compress(&active_state->outgoing_packet,
660 &active_state->compression_buffer);
661 buffer_clear(&active_state->outgoing_packet);
662 buffer_append(&active_state->outgoing_packet,
663 buffer_ptr(&active_state->compression_buffer),
664 buffer_len(&active_state->compression_buffer));
5260325f 665 }
666 /* Compute packet length without padding (add checksum, remove padding). */
dc1f1948 667 len = buffer_len(&active_state->outgoing_packet) + 4 - 8;
5260325f 668
1d1ffb87 669 /* Insert padding. Initialized to zero in packet_start1() */
5260325f 670 padding = 8 - len % 8;
dc1f1948 671 if (!active_state->send_context.plaintext) {
672 cp = buffer_ptr(&active_state->outgoing_packet);
5260325f 673 for (i = 0; i < padding; i++) {
674 if (i % 4 == 0)
ca75d7de 675 rnd = arc4random();
676 cp[7 - i] = rnd & 0xff;
677 rnd >>= 8;
5260325f 678 }
679 }
dc1f1948 680 buffer_consume(&active_state->outgoing_packet, 8 - padding);
5260325f 681
682 /* Add check bytes. */
dc1f1948 683 checksum = ssh_crc32(buffer_ptr(&active_state->outgoing_packet),
684 buffer_len(&active_state->outgoing_packet));
51e7a012 685 put_u32(buf, checksum);
dc1f1948 686 buffer_append(&active_state->outgoing_packet, buf, 4);
8efc0c15 687
688#ifdef PACKET_DEBUG
5260325f 689 fprintf(stderr, "packet_send plain: ");
dc1f1948 690 buffer_dump(&active_state->outgoing_packet);
8efc0c15 691#endif
692
5260325f 693 /* Append to output. */
51e7a012 694 put_u32(buf, len);
dc1f1948 695 buffer_append(&active_state->output, buf, 4);
696 cp = buffer_append_space(&active_state->output,
697 buffer_len(&active_state->outgoing_packet));
698 cipher_crypt(&active_state->send_context, cp,
699 buffer_ptr(&active_state->outgoing_packet),
700 buffer_len(&active_state->outgoing_packet));
5260325f 701
8efc0c15 702#ifdef PACKET_DEBUG
5260325f 703 fprintf(stderr, "encrypted: ");
dc1f1948 704 buffer_dump(&active_state->output);
8efc0c15 705#endif
dc1f1948 706 active_state->p_send.packets++;
707 active_state->p_send.bytes += len +
708 buffer_len(&active_state->outgoing_packet);
709 buffer_clear(&active_state->outgoing_packet);
8efc0c15 710
aa3378df 711 /*
7b9b0103 712 * Note that the packet is now only buffered in output. It won't be
aa3378df 713 * actually sent until packet_write_wait or packet_write_poll is
714 * called.
715 */
8efc0c15 716}
717
e050d348 718void
d1ac6175 719set_newkeys(int mode)
720{
721 Enc *enc;
722 Mac *mac;
723 Comp *comp;
724 CipherContext *cc;
ffd7b36b 725 u_int64_t *max_blocks;
ca75d7de 726 int crypt_type;
d1ac6175 727
a77673cc 728 debug2("set_newkeys: mode %d", mode);
d1ac6175 729
3ee832e5 730 if (mode == MODE_OUT) {
dc1f1948 731 cc = &active_state->send_context;
ca75d7de 732 crypt_type = CIPHER_ENCRYPT;
dc1f1948 733 active_state->p_send.packets = active_state->p_send.blocks = 0;
734 max_blocks = &active_state->max_blocks_out;
3ee832e5 735 } else {
dc1f1948 736 cc = &active_state->receive_context;
ca75d7de 737 crypt_type = CIPHER_DECRYPT;
dc1f1948 738 active_state->p_read.packets = active_state->p_read.blocks = 0;
739 max_blocks = &active_state->max_blocks_in;
3ee832e5 740 }
dc1f1948 741 if (active_state->newkeys[mode] != NULL) {
a77673cc 742 debug("set_newkeys: rekeying");
3ee832e5 743 cipher_cleanup(cc);
dc1f1948 744 enc = &active_state->newkeys[mode]->enc;
745 mac = &active_state->newkeys[mode]->mac;
746 comp = &active_state->newkeys[mode]->comp;
f444d0f8 747 mac_clear(mac);
a7ca6275 748 xfree(enc->name);
749 xfree(enc->iv);
750 xfree(enc->key);
751 xfree(mac->name);
752 xfree(mac->key);
753 xfree(comp->name);
dc1f1948 754 xfree(active_state->newkeys[mode]);
d1ac6175 755 }
dc1f1948 756 active_state->newkeys[mode] = kex_get_newkeys(mode);
757 if (active_state->newkeys[mode] == NULL)
d1ac6175 758 fatal("newkeys: no keys for mode %d", mode);
dc1f1948 759 enc = &active_state->newkeys[mode]->enc;
760 mac = &active_state->newkeys[mode]->mac;
761 comp = &active_state->newkeys[mode]->comp;
f444d0f8 762 if (mac_init(mac) == 0)
d1ac6175 763 mac->enabled = 1;
764 DBG(debug("cipher_init_context: %d", mode));
3ee832e5 765 cipher_init(cc, enc->cipher, enc->key, enc->key_len,
ca75d7de 766 enc->iv, enc->block_size, crypt_type);
e050d348 767 /* Deleting the keys does not gain extra security */
768 /* memset(enc->iv, 0, enc->block_size);
a3de8da1 769 memset(enc->key, 0, enc->key_len);
770 memset(mac->key, 0, mac->key_len); */
07200973 771 if ((comp->type == COMP_ZLIB ||
dc1f1948 772 (comp->type == COMP_DELAYED &&
773 active_state->after_authentication)) && comp->enabled == 0) {
6ba22c93 774 packet_init_compression();
775 if (mode == MODE_OUT)
776 buffer_compress_init_send(6);
777 else
778 buffer_compress_init_recv();
d1ac6175 779 comp->enabled = 1;
d1ac6175 780 }
40729edd 781 /*
782 * The 2^(blocksize*2) limit is too expensive for 3DES,
783 * blowfish, etc, so enforce a 1GB limit for small blocksizes.
784 */
785 if (enc->block_size >= 16)
786 *max_blocks = (u_int64_t)1 << (enc->block_size*2);
787 else
788 *max_blocks = ((u_int64_t)1 << 30) / enc->block_size;
dc1f1948 789 if (active_state->rekey_limit)
790 *max_blocks = MIN(*max_blocks,
791 active_state->rekey_limit / enc->block_size);
d1ac6175 792}
793
07200973 794/*
795 * Delayed compression for SSH2 is enabled after authentication:
0e13ec0f 796 * This happens on the server side after a SSH2_MSG_USERAUTH_SUCCESS is sent,
07200973 797 * and on the client side after a SSH2_MSG_USERAUTH_SUCCESS is received.
798 */
799static void
800packet_enable_delayed_compress(void)
801{
802 Comp *comp = NULL;
803 int mode;
804
805 /*
806 * Remember that we are past the authentication step, so rekeying
807 * with COMP_DELAYED will turn on compression immediately.
808 */
dc1f1948 809 active_state->after_authentication = 1;
07200973 810 for (mode = 0; mode < MODE_MAX; mode++) {
a29c9898 811 /* protocol error: USERAUTH_SUCCESS received before NEWKEYS */
dc1f1948 812 if (active_state->newkeys[mode] == NULL)
a29c9898 813 continue;
dc1f1948 814 comp = &active_state->newkeys[mode]->comp;
07200973 815 if (comp && !comp->enabled && comp->type == COMP_DELAYED) {
4145cbfa 816 packet_init_compression();
07200973 817 if (mode == MODE_OUT)
818 buffer_compress_init_send(6);
819 else
820 buffer_compress_init_recv();
821 comp->enabled = 1;
822 }
823 }
824}
825
7e7327a1 826/*
827 * Finalize packet in SSH2 format (compress, mac, encrypt, enqueue)
828 */
396c147e 829static void
ffd7b36b 830packet_send2_wrapped(void)
7e7327a1 831{
a318bbf4 832 u_char type, *cp, *macbuf = NULL;
b4b701be 833 u_char padlen, pad;
1e3b8b07 834 u_int packet_length = 0;
b4b701be 835 u_int i, len;
ca75d7de 836 u_int32_t rnd = 0;
7e7327a1 837 Enc *enc = NULL;
838 Mac *mac = NULL;
839 Comp *comp = NULL;
840 int block_size;
841
dc1f1948 842 if (active_state->newkeys[MODE_OUT] != NULL) {
843 enc = &active_state->newkeys[MODE_OUT]->enc;
844 mac = &active_state->newkeys[MODE_OUT]->mac;
845 comp = &active_state->newkeys[MODE_OUT]->comp;
7e7327a1 846 }
3ee832e5 847 block_size = enc ? enc->block_size : 8;
7e7327a1 848
dc1f1948 849 cp = buffer_ptr(&active_state->outgoing_packet);
a318bbf4 850 type = cp[5];
7e7327a1 851
852#ifdef PACKET_DEBUG
853 fprintf(stderr, "plain: ");
dc1f1948 854 buffer_dump(&active_state->outgoing_packet);
7e7327a1 855#endif
856
857 if (comp && comp->enabled) {
dc1f1948 858 len = buffer_len(&active_state->outgoing_packet);
7e7327a1 859 /* skip header, compress only payload */
dc1f1948 860 buffer_consume(&active_state->outgoing_packet, 5);
861 buffer_clear(&active_state->compression_buffer);
862 buffer_compress(&active_state->outgoing_packet,
863 &active_state->compression_buffer);
864 buffer_clear(&active_state->outgoing_packet);
865 buffer_append(&active_state->outgoing_packet, "\0\0\0\0\0", 5);
866 buffer_append(&active_state->outgoing_packet,
867 buffer_ptr(&active_state->compression_buffer),
868 buffer_len(&active_state->compression_buffer));
7e7327a1 869 DBG(debug("compression: raw %d compressed %d", len,
dc1f1948 870 buffer_len(&active_state->outgoing_packet)));
7e7327a1 871 }
872
873 /* sizeof (packet_len + pad_len + payload) */
dc1f1948 874 len = buffer_len(&active_state->outgoing_packet);
7e7327a1 875
876 /*
877 * calc size of padding, alloc space, get random data,
878 * minimum padding is 4 bytes
879 */
880 padlen = block_size - (len % block_size);
881 if (padlen < 4)
882 padlen += block_size;
dc1f1948 883 if (active_state->extra_pad) {
b4b701be 884 /* will wrap if extra_pad+padlen > 255 */
dc1f1948 885 active_state->extra_pad =
886 roundup(active_state->extra_pad, block_size);
887 pad = active_state->extra_pad -
888 ((len + padlen) % active_state->extra_pad);
a49dfdec 889 debug3("packet_send2: adding %d (len %d padlen %d extra_pad %d)",
dc1f1948 890 pad, len, padlen, active_state->extra_pad);
b4b701be 891 padlen += pad;
dc1f1948 892 active_state->extra_pad = 0;
b4b701be 893 }
dc1f1948 894 cp = buffer_append_space(&active_state->outgoing_packet, padlen);
895 if (enc && !active_state->send_context.plaintext) {
1d1ffb87 896 /* random padding */
7e7327a1 897 for (i = 0; i < padlen; i++) {
898 if (i % 4 == 0)
ca75d7de 899 rnd = arc4random();
900 cp[i] = rnd & 0xff;
901 rnd >>= 8;
7e7327a1 902 }
1d1ffb87 903 } else {
904 /* clear padding */
905 memset(cp, 0, padlen);
7e7327a1 906 }
907 /* packet_length includes payload, padding and padding length field */
dc1f1948 908 packet_length = buffer_len(&active_state->outgoing_packet) - 4;
909 cp = buffer_ptr(&active_state->outgoing_packet);
51e7a012 910 put_u32(cp, packet_length);
a318bbf4 911 cp[4] = padlen;
7e7327a1 912 DBG(debug("send: len %d (includes padlen %d)", packet_length+4, padlen));
913
914 /* compute MAC over seqnr and packet(length fields, payload, padding) */
915 if (mac && mac->enabled) {
dc1f1948 916 macbuf = mac_compute(mac, active_state->p_send.seqnr,
917 buffer_ptr(&active_state->outgoing_packet),
918 buffer_len(&active_state->outgoing_packet));
919 DBG(debug("done calc MAC out #%d", active_state->p_send.seqnr));
7e7327a1 920 }
921 /* encrypt packet and append to output buffer. */
dc1f1948 922 cp = buffer_append_space(&active_state->output,
923 buffer_len(&active_state->outgoing_packet));
924 cipher_crypt(&active_state->send_context, cp,
925 buffer_ptr(&active_state->outgoing_packet),
926 buffer_len(&active_state->outgoing_packet));
7e7327a1 927 /* append unencrypted MAC */
928 if (mac && mac->enabled)
dc1f1948 929 buffer_append(&active_state->output, macbuf, mac->mac_len);
7e7327a1 930#ifdef PACKET_DEBUG
931 fprintf(stderr, "encrypted: ");
dc1f1948 932 buffer_dump(&active_state->output);
7e7327a1 933#endif
6ae2364d 934 /* increment sequence number for outgoing packets */
dc1f1948 935 if (++active_state->p_send.seqnr == 0)
bbe88b6d 936 logit("outgoing seqnr wraps around");
dc1f1948 937 if (++active_state->p_send.packets == 0)
ffd7b36b 938 if (!(datafellows & SSH_BUG_NOREKEY))
939 fatal("XXX too many packets with same key");
dc1f1948 940 active_state->p_send.blocks += (packet_length + 4) / block_size;
941 active_state->p_send.bytes += packet_length + 4;
942 buffer_clear(&active_state->outgoing_packet);
7e7327a1 943
d1ac6175 944 if (type == SSH2_MSG_NEWKEYS)
945 set_newkeys(MODE_OUT);
dc1f1948 946 else if (type == SSH2_MSG_USERAUTH_SUCCESS && active_state->server_side)
07200973 947 packet_enable_delayed_compress();
7e7327a1 948}
949
ffd7b36b 950static void
951packet_send2(void)
952{
953 static int rekeying = 0;
954 struct packet *p;
955 u_char type, *cp;
956
dc1f1948 957 cp = buffer_ptr(&active_state->outgoing_packet);
ffd7b36b 958 type = cp[5];
959
960 /* during rekeying we can only send key exchange messages */
961 if (rekeying) {
962 if (!((type >= SSH2_MSG_TRANSPORT_MIN) &&
963 (type <= SSH2_MSG_TRANSPORT_MAX))) {
964 debug("enqueue packet: %u", type);
965 p = xmalloc(sizeof(*p));
966 p->type = type;
dc1f1948 967 memcpy(&p->payload, &active_state->outgoing_packet,
968 sizeof(Buffer));
969 buffer_init(&active_state->outgoing_packet);
970 TAILQ_INSERT_TAIL(&active_state->outgoing, p, next);
ffd7b36b 971 return;
972 }
973 }
974
975 /* rekeying starts with sending KEXINIT */
976 if (type == SSH2_MSG_KEXINIT)
977 rekeying = 1;
978
979 packet_send2_wrapped();
980
981 /* after a NEWKEYS message we can send the complete queue */
982 if (type == SSH2_MSG_NEWKEYS) {
983 rekeying = 0;
dc1f1948 984 while ((p = TAILQ_FIRST(&active_state->outgoing))) {
ffd7b36b 985 type = p->type;
986 debug("dequeue packet: %u", type);
dc1f1948 987 buffer_free(&active_state->outgoing_packet);
988 memcpy(&active_state->outgoing_packet, &p->payload,
ffd7b36b 989 sizeof(Buffer));
dc1f1948 990 TAILQ_REMOVE(&active_state->outgoing, p, next);
ffd7b36b 991 xfree(p);
992 packet_send2_wrapped();
993 }
994 }
995}
996
7e7327a1 997void
d5bb9418 998packet_send(void)
7e7327a1 999{
08dcb5d7 1000 if (compat20)
7e7327a1 1001 packet_send2();
1002 else
1003 packet_send1();
1004 DBG(debug("packet_send done"));
1005}
1006
aa3378df 1007/*
1008 * Waits until a packet has been received, and returns its type. Note that
1009 * no other data is processed until this returns, so this function should not
1010 * be used during the interactive session.
1011 */
8efc0c15 1012
1013int
54a5250f 1014packet_read_seqnr(u_int32_t *seqnr_p)
8efc0c15 1015{
d0137ef8 1016 int type, len, ret, ms_remain, cont;
20e04e90 1017 fd_set *setp;
5260325f 1018 char buf[8192];
bc2d97c8 1019 struct timeval timeout, start, *timeoutp = NULL;
5260325f 1020
849d3ceb 1021 DBG(debug("packet_read()"));
1022
dc1f1948 1023 setp = (fd_set *)xcalloc(howmany(active_state->connection_in + 1,
1024 NFDBITS), sizeof(fd_mask));
20e04e90 1025
5260325f 1026 /* Since we are blocking, ensure that all written packets have been sent. */
1027 packet_write_wait();
1028
1029 /* Stay in the loop until we have received a complete packet. */
1030 for (;;) {
1031 /* Try to read a packet from the buffer. */
54a5250f 1032 type = packet_read_poll_seqnr(seqnr_p);
08dcb5d7 1033 if (!compat20 && (
1d1ffb87 1034 type == SSH_SMSG_SUCCESS
5260325f 1035 || type == SSH_SMSG_FAILURE
1036 || type == SSH_CMSG_EOF
1d1ffb87 1037 || type == SSH_CMSG_EXIT_CONFIRMATION))
95500969 1038 packet_check_eom();
5260325f 1039 /* If we got a packet, return it. */
20e04e90 1040 if (type != SSH_MSG_NONE) {
1041 xfree(setp);
5260325f 1042 return type;
20e04e90 1043 }
aa3378df 1044 /*
1045 * Otherwise, wait for some data to arrive, add it to the
1046 * buffer, and try again.
1047 */
dc1f1948 1048 memset(setp, 0, howmany(active_state->connection_in + 1,
1049 NFDBITS) * sizeof(fd_mask));
1050 FD_SET(active_state->connection_in, setp);
aa3378df 1051
dc1f1948 1052 if (active_state->packet_timeout_ms > 0) {
1053 ms_remain = active_state->packet_timeout_ms;
bc2d97c8 1054 timeoutp = &timeout;
1055 }
5260325f 1056 /* Wait for some data to arrive. */
bc2d97c8 1057 for (;;) {
dc1f1948 1058 if (active_state->packet_timeout_ms != -1) {
bc2d97c8 1059 ms_to_timeval(&timeout, ms_remain);
1060 gettimeofday(&start, NULL);
1061 }
dc1f1948 1062 if ((ret = select(active_state->connection_in + 1, setp,
1063 NULL, NULL, timeoutp)) >= 0)
bc2d97c8 1064 break;
d0137ef8 1065 if (errno != EAGAIN && errno != EINTR)
bc2d97c8 1066 break;
dc1f1948 1067 if (active_state->packet_timeout_ms == -1)
bc2d97c8 1068 continue;
1069 ms_subtract_diff(&start, &ms_remain);
1070 if (ms_remain <= 0) {
1071 ret = 0;
1072 break;
1073 }
1074 }
1075 if (ret == 0) {
1076 logit("Connection to %.200s timed out while "
1077 "waiting to read", get_remote_ipaddr());
1078 cleanup_exit(255);
1079 }
5260325f 1080 /* Read data from the socket. */
d0137ef8 1081 do {
1082 cont = 0;
1083 len = roaming_read(active_state->connection_in, buf,
1084 sizeof(buf), &cont);
1085 } while (len == 0 && cont);
89cafde6 1086 if (len == 0) {
bbe88b6d 1087 logit("Connection closed by %.200s", get_remote_ipaddr());
2362db19 1088 cleanup_exit(255);
89cafde6 1089 }
5260325f 1090 if (len < 0)
1091 fatal("Read from socket failed: %.100s", strerror(errno));
1092 /* Append it to the buffer. */
1093 packet_process_incoming(buf, len);
1094 }
1095 /* NOTREACHED */
8efc0c15 1096}
1097
24ca6821 1098int
54a5250f 1099packet_read(void)
24ca6821 1100{
54a5250f 1101 return packet_read_seqnr(NULL);
24ca6821 1102}
1103
aa3378df 1104/*
1105 * Waits until a packet has been received, verifies that its type matches
1106 * that given, and gives a fatal error and exits if there is a mismatch.
1107 */
8efc0c15 1108
1109void
54a5250f 1110packet_read_expect(int expected_type)
8efc0c15 1111{
5260325f 1112 int type;
8efc0c15 1113
54a5250f 1114 type = packet_read();
5260325f 1115 if (type != expected_type)
1116 packet_disconnect("Protocol error: expected packet type %d, got %d",
7e7327a1 1117 expected_type, type);
8efc0c15 1118}
1119
1120/* Checks if a full packet is available in the data received so far via
5260325f 1121 * packet_process_incoming. If so, reads the packet; otherwise returns
1122 * SSH_MSG_NONE. This does not wait for data from the connection.
1123 *
aacfb17b 1124 * SSH_MSG_DISCONNECT is handled specially here. Also,
1125 * SSH_MSG_IGNORE messages are skipped by this function and are never returned
1126 * to higher levels.
5260325f 1127 */
8efc0c15 1128
396c147e 1129static int
54a5250f 1130packet_read_poll1(void)
8efc0c15 1131{
1e3b8b07 1132 u_int len, padded_len;
a318bbf4 1133 u_char *cp, type;
1e3b8b07 1134 u_int checksum, stored_checksum;
5260325f 1135
5260325f 1136 /* Check if input size is less than minimum packet size. */
dc1f1948 1137 if (buffer_len(&active_state->input) < 4 + 8)
5260325f 1138 return SSH_MSG_NONE;
1139 /* Get length of incoming packet. */
dc1f1948 1140 cp = buffer_ptr(&active_state->input);
51e7a012 1141 len = get_u32(cp);
5260325f 1142 if (len < 1 + 2 + 2 || len > 256 * 1024)
2fe3c2db 1143 packet_disconnect("Bad packet length %u.", len);
5260325f 1144 padded_len = (len + 8) & ~7;
1145
1146 /* Check if the packet has been entirely received. */
dc1f1948 1147 if (buffer_len(&active_state->input) < 4 + padded_len)
5260325f 1148 return SSH_MSG_NONE;
1149
1150 /* The entire packet is in buffer. */
1151
1152 /* Consume packet length. */
dc1f1948 1153 buffer_consume(&active_state->input, 4);
5260325f 1154
08dcb5d7 1155 /*
1156 * Cryptographic attack detector for ssh
1157 * (C)1998 CORE-SDI, Buenos Aires Argentina
1158 * Ariel Futoransky(futo@core-sdi.com)
1159 */
dc1f1948 1160 if (!active_state->receive_context.plaintext) {
1161 switch (detect_attack(buffer_ptr(&active_state->input),
1162 padded_len)) {
f0d0e025 1163 case DEATTACK_DETECTED:
1164 packet_disconnect("crc32 compensation attack: "
1165 "network attack detected");
1166 case DEATTACK_DOS_DETECTED:
1167 packet_disconnect("deattack denial of "
1168 "service detected");
1169 }
1170 }
08dcb5d7 1171
1172 /* Decrypt data to incoming_packet. */
dc1f1948 1173 buffer_clear(&active_state->incoming_packet);
1174 cp = buffer_append_space(&active_state->incoming_packet, padded_len);
1175 cipher_crypt(&active_state->receive_context, cp,
1176 buffer_ptr(&active_state->input), padded_len);
08dcb5d7 1177
dc1f1948 1178 buffer_consume(&active_state->input, padded_len);
8efc0c15 1179
1180#ifdef PACKET_DEBUG
5260325f 1181 fprintf(stderr, "read_poll plain: ");
dc1f1948 1182 buffer_dump(&active_state->incoming_packet);
8efc0c15 1183#endif
5260325f 1184
1185 /* Compute packet checksum. */
dc1f1948 1186 checksum = ssh_crc32(buffer_ptr(&active_state->incoming_packet),
1187 buffer_len(&active_state->incoming_packet) - 4);
5260325f 1188
1189 /* Skip padding. */
dc1f1948 1190 buffer_consume(&active_state->incoming_packet, 8 - len % 8);
5260325f 1191
1192 /* Test check bytes. */
dc1f1948 1193 if (len != buffer_len(&active_state->incoming_packet))
24ca6821 1194 packet_disconnect("packet_read_poll1: len %d != buffer_len %d.",
dc1f1948 1195 len, buffer_len(&active_state->incoming_packet));
5260325f 1196
dc1f1948 1197 cp = (u_char *)buffer_ptr(&active_state->incoming_packet) + len - 4;
51e7a012 1198 stored_checksum = get_u32(cp);
5260325f 1199 if (checksum != stored_checksum)
1200 packet_disconnect("Corrupted check bytes on input.");
dc1f1948 1201 buffer_consume_end(&active_state->incoming_packet, 4);
1202
1203 if (active_state->packet_compression) {
1204 buffer_clear(&active_state->compression_buffer);
1205 buffer_uncompress(&active_state->incoming_packet,
1206 &active_state->compression_buffer);
1207 buffer_clear(&active_state->incoming_packet);
1208 buffer_append(&active_state->incoming_packet,
1209 buffer_ptr(&active_state->compression_buffer),
1210 buffer_len(&active_state->compression_buffer));
5260325f 1211 }
dc1f1948 1212 active_state->p_read.packets++;
1213 active_state->p_read.bytes += padded_len + 4;
1214 type = buffer_get_char(&active_state->incoming_packet);
750bbb35 1215 if (type < SSH_MSG_MIN || type > SSH_MSG_MAX)
1216 packet_disconnect("Invalid ssh1 packet type: %d", type);
08dcb5d7 1217 return type;
5260325f 1218}
1219
396c147e 1220static int
54a5250f 1221packet_read_poll2(u_int32_t *seqnr_p)
7e7327a1 1222{
1e3b8b07 1223 u_int padlen, need;
a318bbf4 1224 u_char *macbuf, *cp, type;
2ceb8101 1225 u_int maclen, block_size;
7e7327a1 1226 Enc *enc = NULL;
1227 Mac *mac = NULL;
1228 Comp *comp = NULL;
1229
dc1f1948 1230 if (active_state->packet_discard)
608bcf58 1231 return SSH_MSG_NONE;
1232
dc1f1948 1233 if (active_state->newkeys[MODE_IN] != NULL) {
1234 enc = &active_state->newkeys[MODE_IN]->enc;
1235 mac = &active_state->newkeys[MODE_IN]->mac;
1236 comp = &active_state->newkeys[MODE_IN]->comp;
7e7327a1 1237 }
1238 maclen = mac && mac->enabled ? mac->mac_len : 0;
3ee832e5 1239 block_size = enc ? enc->block_size : 8;
7e7327a1 1240
dc1f1948 1241 if (active_state->packlen == 0) {
7e7327a1 1242 /*
1243 * check if input size is less than the cipher block size,
1244 * decrypt first block and extract length of incoming packet
1245 */
dc1f1948 1246 if (buffer_len(&active_state->input) < block_size)
7e7327a1 1247 return SSH_MSG_NONE;
dc1f1948 1248 buffer_clear(&active_state->incoming_packet);
1249 cp = buffer_append_space(&active_state->incoming_packet,
7e7327a1 1250 block_size);
dc1f1948 1251 cipher_crypt(&active_state->receive_context, cp,
1252 buffer_ptr(&active_state->input), block_size);
1253 cp = buffer_ptr(&active_state->incoming_packet);
1254 active_state->packlen = get_u32(cp);
1255 if (active_state->packlen < 1 + 4 ||
1256 active_state->packlen > PACKET_MAX_SIZE) {
9adbb4a4 1257#ifdef PACKET_DEBUG
dc1f1948 1258 buffer_dump(&active_state->incoming_packet);
9adbb4a4 1259#endif
dc1f1948 1260 logit("Bad packet length %u.", active_state->packlen);
1261 packet_start_discard(enc, mac, active_state->packlen,
608bcf58 1262 PACKET_MAX_SIZE);
1263 return SSH_MSG_NONE;
7e7327a1 1264 }
dc1f1948 1265 DBG(debug("input: packet len %u", active_state->packlen+4));
1266 buffer_consume(&active_state->input, block_size);
7e7327a1 1267 }
1268 /* we have a partial packet of block_size bytes */
dc1f1948 1269 need = 4 + active_state->packlen - block_size;
7e7327a1 1270 DBG(debug("partial packet %d, need %d, maclen %d", block_size,
1271 need, maclen));
66af1c21 1272 if (need % block_size != 0) {
1273 logit("padding error: need %d block %d mod %d",
7e7327a1 1274 need, block_size, need % block_size);
dc1f1948 1275 packet_start_discard(enc, mac, active_state->packlen,
608bcf58 1276 PACKET_MAX_SIZE - block_size);
1277 return SSH_MSG_NONE;
66af1c21 1278 }
7e7327a1 1279 /*
1280 * check if the entire packet has been received and
1281 * decrypt into incoming_packet
1282 */
dc1f1948 1283 if (buffer_len(&active_state->input) < need + maclen)
7e7327a1 1284 return SSH_MSG_NONE;
1285#ifdef PACKET_DEBUG
1286 fprintf(stderr, "read_poll enc/full: ");
dc1f1948 1287 buffer_dump(&active_state->input);
7e7327a1 1288#endif
dc1f1948 1289 cp = buffer_append_space(&active_state->incoming_packet, need);
1290 cipher_crypt(&active_state->receive_context, cp,
1291 buffer_ptr(&active_state->input), need);
1292 buffer_consume(&active_state->input, need);
7e7327a1 1293 /*
1294 * compute MAC over seqnr and packet,
1295 * increment sequence number for incoming packet
1296 */
6ae2364d 1297 if (mac && mac->enabled) {
dc1f1948 1298 macbuf = mac_compute(mac, active_state->p_read.seqnr,
1299 buffer_ptr(&active_state->incoming_packet),
1300 buffer_len(&active_state->incoming_packet));
1301 if (memcmp(macbuf, buffer_ptr(&active_state->input),
1302 mac->mac_len) != 0) {
608bcf58 1303 logit("Corrupted MAC on input.");
1304 if (need > PACKET_MAX_SIZE)
1305 fatal("internal error need %d", need);
dc1f1948 1306 packet_start_discard(enc, mac, active_state->packlen,
608bcf58 1307 PACKET_MAX_SIZE - need);
1308 return SSH_MSG_NONE;
1309 }
1310
dc1f1948 1311 DBG(debug("MAC #%d ok", active_state->p_read.seqnr));
1312 buffer_consume(&active_state->input, mac->mac_len);
7e7327a1 1313 }
608bcf58 1314 /* XXX now it's safe to use fatal/packet_disconnect */
24ca6821 1315 if (seqnr_p != NULL)
dc1f1948 1316 *seqnr_p = active_state->p_read.seqnr;
1317 if (++active_state->p_read.seqnr == 0)
bbe88b6d 1318 logit("incoming seqnr wraps around");
dc1f1948 1319 if (++active_state->p_read.packets == 0)
ffd7b36b 1320 if (!(datafellows & SSH_BUG_NOREKEY))
1321 fatal("XXX too many packets with same key");
dc1f1948 1322 active_state->p_read.blocks += (active_state->packlen + 4) / block_size;
1323 active_state->p_read.bytes += active_state->packlen + 4;
7e7327a1 1324
1325 /* get padlen */
dc1f1948 1326 cp = buffer_ptr(&active_state->incoming_packet);
a318bbf4 1327 padlen = cp[4];
7e7327a1 1328 DBG(debug("input: padlen %d", padlen));
1329 if (padlen < 4)
1330 packet_disconnect("Corrupted padlen %d on input.", padlen);
1331
1332 /* skip packet size + padlen, discard padding */
dc1f1948 1333 buffer_consume(&active_state->incoming_packet, 4 + 1);
1334 buffer_consume_end(&active_state->incoming_packet, padlen);
7e7327a1 1335
dc1f1948 1336 DBG(debug("input: len before de-compress %d",
1337 buffer_len(&active_state->incoming_packet)));
7e7327a1 1338 if (comp && comp->enabled) {
dc1f1948 1339 buffer_clear(&active_state->compression_buffer);
1340 buffer_uncompress(&active_state->incoming_packet,
1341 &active_state->compression_buffer);
1342 buffer_clear(&active_state->incoming_packet);
1343 buffer_append(&active_state->incoming_packet,
1344 buffer_ptr(&active_state->compression_buffer),
1345 buffer_len(&active_state->compression_buffer));
e1feb9bf 1346 DBG(debug("input: len after de-compress %d",
dc1f1948 1347 buffer_len(&active_state->incoming_packet)));
7e7327a1 1348 }
1349 /*
1350 * get packet type, implies consume.
1351 * return length of payload (without type field)
1352 */
dc1f1948 1353 type = buffer_get_char(&active_state->incoming_packet);
750bbb35 1354 if (type < SSH2_MSG_MIN || type >= SSH2_MSG_LOCAL_MIN)
1355 packet_disconnect("Invalid ssh2 packet type: %d", type);
d1ac6175 1356 if (type == SSH2_MSG_NEWKEYS)
1357 set_newkeys(MODE_IN);
dc1f1948 1358 else if (type == SSH2_MSG_USERAUTH_SUCCESS &&
1359 !active_state->server_side)
07200973 1360 packet_enable_delayed_compress();
7e7327a1 1361#ifdef PACKET_DEBUG
12bf85ed 1362 fprintf(stderr, "read/plain[%d]:\r\n", type);
dc1f1948 1363 buffer_dump(&active_state->incoming_packet);
7e7327a1 1364#endif
08dcb5d7 1365 /* reset for next packet */
dc1f1948 1366 active_state->packlen = 0;
08dcb5d7 1367 return type;
7e7327a1 1368}
1369
1370int
54a5250f 1371packet_read_poll_seqnr(u_int32_t *seqnr_p)
7e7327a1 1372{
0bc50167 1373 u_int reason, seqnr;
08dcb5d7 1374 u_char type;
7e7327a1 1375 char *msg;
7e7327a1 1376
08dcb5d7 1377 for (;;) {
1378 if (compat20) {
54a5250f 1379 type = packet_read_poll2(seqnr_p);
2abb1ef5 1380 if (type) {
dc1f1948 1381 active_state->keep_alive_timeouts = 0;
7e7327a1 1382 DBG(debug("received packet type %d", type));
2abb1ef5 1383 }
6aacefa7 1384 switch (type) {
aacfb17b 1385 case SSH2_MSG_IGNORE:
ac47b626 1386 debug3("Received SSH2_MSG_IGNORE");
aacfb17b 1387 break;
7e7327a1 1388 case SSH2_MSG_DEBUG:
1389 packet_get_char();
1390 msg = packet_get_string(NULL);
1391 debug("Remote: %.900s", msg);
1392 xfree(msg);
1393 msg = packet_get_string(NULL);
1394 xfree(msg);
1395 break;
1396 case SSH2_MSG_DISCONNECT:
1397 reason = packet_get_int();
1398 msg = packet_get_string(NULL);
bbe88b6d 1399 logit("Received disconnect from %s: %u: %.400s",
0bc50167 1400 get_remote_ipaddr(), reason, msg);
7e7327a1 1401 xfree(msg);
2362db19 1402 cleanup_exit(255);
7e7327a1 1403 break;
5a5f4c37 1404 case SSH2_MSG_UNIMPLEMENTED:
1405 seqnr = packet_get_int();
0bc50167 1406 debug("Received SSH2_MSG_UNIMPLEMENTED for %u",
1407 seqnr);
aacfb17b 1408 break;
7e7327a1 1409 default:
1410 return type;
2b87da3b 1411 }
7e7327a1 1412 } else {
54a5250f 1413 type = packet_read_poll1();
6aacefa7 1414 switch (type) {
7e7327a1 1415 case SSH_MSG_IGNORE:
1416 break;
1417 case SSH_MSG_DEBUG:
1418 msg = packet_get_string(NULL);
1419 debug("Remote: %.900s", msg);
1420 xfree(msg);
1421 break;
1422 case SSH_MSG_DISCONNECT:
1423 msg = packet_get_string(NULL);
bbe88b6d 1424 logit("Received disconnect from %s: %.400s",
0bc50167 1425 get_remote_ipaddr(), msg);
2362db19 1426 cleanup_exit(255);
7e7327a1 1427 break;
1428 default:
08dcb5d7 1429 if (type)
7e7327a1 1430 DBG(debug("received packet type %d", type));
1431 return type;
2b87da3b 1432 }
7e7327a1 1433 }
1434 }
1435}
1436
24ca6821 1437int
54a5250f 1438packet_read_poll(void)
24ca6821 1439{
54a5250f 1440 return packet_read_poll_seqnr(NULL);
24ca6821 1441}
1442
aa3378df 1443/*
1444 * Buffers the given amount of input characters. This is intended to be used
1445 * together with packet_read_poll.
1446 */
8efc0c15 1447
1448void
1e3b8b07 1449packet_process_incoming(const char *buf, u_int len)
8efc0c15 1450{
dc1f1948 1451 if (active_state->packet_discard) {
1452 active_state->keep_alive_timeouts = 0; /* ?? */
1453 if (len >= active_state->packet_discard)
608bcf58 1454 packet_stop_discard();
dc1f1948 1455 active_state->packet_discard -= len;
608bcf58 1456 return;
1457 }
dc1f1948 1458 buffer_append(&active_state->input, buf, len);
8efc0c15 1459}
1460
1461/* Returns a character from the packet. */
1462
1e3b8b07 1463u_int
d5bb9418 1464packet_get_char(void)
8efc0c15 1465{
5260325f 1466 char ch;
e1feb9bf 1467
dc1f1948 1468 buffer_get(&active_state->incoming_packet, &ch, 1);
1e3b8b07 1469 return (u_char) ch;
8efc0c15 1470}
1471
1472/* Returns an integer from the packet data. */
1473
1e3b8b07 1474u_int
d5bb9418 1475packet_get_int(void)
8efc0c15 1476{
dc1f1948 1477 return buffer_get_int(&active_state->incoming_packet);
8efc0c15 1478}
1479
c6063ed7 1480/* Returns an 64 bit integer from the packet data. */
1481
1482u_int64_t
1483packet_get_int64(void)
1484{
1485 return buffer_get_int64(&active_state->incoming_packet);
1486}
1487
aa3378df 1488/*
1489 * Returns an arbitrary precision integer from the packet data. The integer
1490 * must have been initialized before this call.
1491 */
8efc0c15 1492
1493void
20b279e6 1494packet_get_bignum(BIGNUM * value)
8efc0c15 1495{
dc1f1948 1496 buffer_get_bignum(&active_state->incoming_packet, value);
8efc0c15 1497}
1498
7e7327a1 1499void
20b279e6 1500packet_get_bignum2(BIGNUM * value)
7e7327a1 1501{
dc1f1948 1502 buffer_get_bignum2(&active_state->incoming_packet, value);
7e7327a1 1503}
1504
6c0fa2b1 1505void *
2ceb8101 1506packet_get_raw(u_int *length_ptr)
7e7327a1 1507{
dc1f1948 1508 u_int bytes = buffer_len(&active_state->incoming_packet);
e1feb9bf 1509
7e7327a1 1510 if (length_ptr != NULL)
1511 *length_ptr = bytes;
dc1f1948 1512 return buffer_ptr(&active_state->incoming_packet);
7e7327a1 1513}
1514
6ae2364d 1515int
1516packet_remaining(void)
1517{
dc1f1948 1518 return buffer_len(&active_state->incoming_packet);
6ae2364d 1519}
1520
aa3378df 1521/*
1522 * Returns a string from the packet data. The string is allocated using
1523 * xmalloc; it is the responsibility of the calling program to free it when
1524 * no longer needed. The length_ptr argument may be NULL, or point to an
1525 * integer into which the length of the string is stored.
1526 */
8efc0c15 1527
6c0fa2b1 1528void *
1e3b8b07 1529packet_get_string(u_int *length_ptr)
8efc0c15 1530{
dc1f1948 1531 return buffer_get_string(&active_state->incoming_packet, length_ptr);
17f02f0a 1532}
1533
1534void *
1535packet_get_string_ptr(u_int *length_ptr)
1536{
dc1f1948 1537 return buffer_get_string_ptr(&active_state->incoming_packet, length_ptr);
8efc0c15 1538}
1539
aa3378df 1540/*
1541 * Sends a diagnostic message from the server to the client. This message
1542 * can be sent at any time (but not while constructing another message). The
1543 * message is printed immediately, but only if the client is being executed
1544 * in verbose mode. These messages are primarily intended to ease debugging
1545 * authentication problems. The length of the formatted message must not
1546 * exceed 1024 bytes. This will automatically call packet_write_wait.
1547 */
8efc0c15 1548
1549void
5260325f 1550packet_send_debug(const char *fmt,...)
8efc0c15 1551{
5260325f 1552 char buf[1024];
1553 va_list args;
1554
f72fc97f 1555 if (compat20 && (datafellows & SSH_BUG_DEBUG))
1556 return;
1557
5260325f 1558 va_start(args, fmt);
1559 vsnprintf(buf, sizeof(buf), fmt, args);
1560 va_end(args);
1561
c4bc58eb 1562 if (compat20) {
1563 packet_start(SSH2_MSG_DEBUG);
1564 packet_put_char(0); /* bool: always display */
1565 packet_put_cstring(buf);
1566 packet_put_cstring("");
1567 } else {
1568 packet_start(SSH_MSG_DEBUG);
1569 packet_put_cstring(buf);
1570 }
5260325f 1571 packet_send();
1572 packet_write_wait();
8efc0c15 1573}
1574
aa3378df 1575/*
1576 * Logs the error plus constructs and sends a disconnect packet, closes the
1577 * connection, and exits. This function never returns. The error message
1578 * should not contain a newline. The length of the formatted message must
1579 * not exceed 1024 bytes.
1580 */
8efc0c15 1581
1582void
5260325f 1583packet_disconnect(const char *fmt,...)
1584{
1585 char buf[1024];
1586 va_list args;
1587 static int disconnecting = 0;
e1feb9bf 1588
5260325f 1589 if (disconnecting) /* Guard against recursive invocations. */
1590 fatal("packet_disconnect called recursively.");
1591 disconnecting = 1;
1592
aa3378df 1593 /*
1594 * Format the message. Note that the caller must make sure the
1595 * message is of limited size.
1596 */
5260325f 1597 va_start(args, fmt);
1598 vsnprintf(buf, sizeof(buf), fmt, args);
1599 va_end(args);
1600
2ccb7bde 1601 /* Display the error locally */
bbe88b6d 1602 logit("Disconnecting: %.100s", buf);
2ccb7bde 1603
5260325f 1604 /* Send the disconnect message to the other side, and wait for it to get sent. */
7e7327a1 1605 if (compat20) {
1606 packet_start(SSH2_MSG_DISCONNECT);
1607 packet_put_int(SSH2_DISCONNECT_PROTOCOL_ERROR);
1608 packet_put_cstring(buf);
1609 packet_put_cstring("");
1610 } else {
1611 packet_start(SSH_MSG_DISCONNECT);
449c5ba5 1612 packet_put_cstring(buf);
7e7327a1 1613 }
5260325f 1614 packet_send();
1615 packet_write_wait();
1616
1617 /* Stop listening for connections. */
d6746a0b 1618 channel_close_all();
5260325f 1619
1620 /* Close the connection. */
1621 packet_close();
2362db19 1622 cleanup_exit(255);
8efc0c15 1623}
1624
aa3378df 1625/* Checks if there is any buffered output, and tries to write some of the output. */
8efc0c15 1626
1627void
d5bb9418 1628packet_write_poll(void)
8efc0c15 1629{
dc1f1948 1630 int len = buffer_len(&active_state->output);
d0137ef8 1631 int cont;
e1feb9bf 1632
5260325f 1633 if (len > 0) {
d0137ef8 1634 cont = 0;
1635 len = roaming_write(active_state->connection_out,
1636 buffer_ptr(&active_state->output), len, &cont);
d38d9a80 1637 if (len == -1) {
d0137ef8 1638 if (errno == EINTR || errno == EAGAIN)
5260325f 1639 return;
d38d9a80 1640 fatal("Write failed: %.100s", strerror(errno));
5260325f 1641 }
d0137ef8 1642 if (len == 0 && !cont)
d38d9a80 1643 fatal("Write connection closed");
dc1f1948 1644 buffer_consume(&active_state->output, len);
5260325f 1645 }
8efc0c15 1646}
1647
aa3378df 1648/*
1649 * Calls packet_write_poll repeatedly until all pending output data has been
1650 * written.
1651 */
8efc0c15 1652
1653void
d5bb9418 1654packet_write_wait(void)
8efc0c15 1655{
20e04e90 1656 fd_set *setp;
bc2d97c8 1657 int ret, ms_remain;
1658 struct timeval start, timeout, *timeoutp = NULL;
20e04e90 1659
dc1f1948 1660 setp = (fd_set *)xcalloc(howmany(active_state->connection_out + 1,
1661 NFDBITS), sizeof(fd_mask));
5260325f 1662 packet_write_poll();
1663 while (packet_have_data_to_write()) {
dc1f1948 1664 memset(setp, 0, howmany(active_state->connection_out + 1,
1665 NFDBITS) * sizeof(fd_mask));
1666 FD_SET(active_state->connection_out, setp);
bc2d97c8 1667
dc1f1948 1668 if (active_state->packet_timeout_ms > 0) {
1669 ms_remain = active_state->packet_timeout_ms;
bc2d97c8 1670 timeoutp = &timeout;
1671 }
1672 for (;;) {
dc1f1948 1673 if (active_state->packet_timeout_ms != -1) {
bc2d97c8 1674 ms_to_timeval(&timeout, ms_remain);
1675 gettimeofday(&start, NULL);
1676 }
dc1f1948 1677 if ((ret = select(active_state->connection_out + 1,
1678 NULL, setp, NULL, timeoutp)) >= 0)
bc2d97c8 1679 break;
d0137ef8 1680 if (errno != EAGAIN && errno != EINTR)
bc2d97c8 1681 break;
dc1f1948 1682 if (active_state->packet_timeout_ms == -1)
bc2d97c8 1683 continue;
1684 ms_subtract_diff(&start, &ms_remain);
1685 if (ms_remain <= 0) {
1686 ret = 0;
1687 break;
1688 }
1689 }
1690 if (ret == 0) {
1691 logit("Connection to %.200s timed out while "
1692 "waiting to write", get_remote_ipaddr());
1693 cleanup_exit(255);
1694 }
5260325f 1695 packet_write_poll();
1696 }
20e04e90 1697 xfree(setp);
8efc0c15 1698}
1699
1700/* Returns true if there is buffered data to write to the connection. */
1701
1702int
d5bb9418 1703packet_have_data_to_write(void)
8efc0c15 1704{
dc1f1948 1705 return buffer_len(&active_state->output) != 0;
8efc0c15 1706}
1707
1708/* Returns true if there is not too much data to write to the connection. */
1709
1710int
d5bb9418 1711packet_not_very_much_data_to_write(void)
8efc0c15 1712{
dc1f1948 1713 if (active_state->interactive_mode)
1714 return buffer_len(&active_state->output) < 16384;
5260325f 1715 else
dc1f1948 1716 return buffer_len(&active_state->output) < 128 * 1024;
8efc0c15 1717}
1718
9e637910 1719static void
48f636b2 1720packet_set_tos(int interactive)
1721{
00df6acd 1722#if defined(IP_TOS) && !defined(IP_TOS_IS_BROKEN)
48f636b2 1723 int tos = interactive ? IPTOS_LOWDELAY : IPTOS_THROUGHPUT;
1724
1725 if (!packet_connection_is_on_socket() ||
1726 !packet_connection_is_ipv4())
1727 return;
dc1f1948 1728 if (setsockopt(active_state->connection_in, IPPROTO_IP, IP_TOS, &tos,
48f636b2 1729 sizeof(tos)) < 0)
1730 error("setsockopt IP_TOS %d: %.100s:",
1731 tos, strerror(errno));
4d0cb2e5 1732#endif
00df6acd 1733}
48f636b2 1734
8efc0c15 1735/* Informs that the current session is interactive. Sets IP flags for that. */
1736
1737void
b5c334cc 1738packet_set_interactive(int interactive)
8efc0c15 1739{
b5c334cc 1740 static int called = 0;
5260325f 1741
b5c334cc 1742 if (called)
1743 return;
1744 called = 1;
1745
5260325f 1746 /* Record that we are in interactive mode. */
dc1f1948 1747 active_state->interactive_mode = interactive;
5260325f 1748
48e671d5 1749 /* Only set socket options if using a socket. */
1750 if (!packet_connection_is_on_socket())
aceb0423 1751 return;
dc1f1948 1752 set_nodelay(active_state->connection_in);
48f636b2 1753 packet_set_tos(interactive);
8efc0c15 1754}
1755
1756/* Returns true if the current connection is interactive. */
1757
1758int
d5bb9418 1759packet_is_interactive(void)
8efc0c15 1760{
dc1f1948 1761 return active_state->interactive_mode;
8efc0c15 1762}
9d6b7add 1763
f6be21a0 1764int
a27002e5 1765packet_set_maxsize(u_int s)
9d6b7add 1766{
5260325f 1767 static int called = 0;
e1feb9bf 1768
5260325f 1769 if (called) {
bbe88b6d 1770 logit("packet_set_maxsize: called twice: old %d new %d",
dc1f1948 1771 active_state->max_packet_size, s);
5260325f 1772 return -1;
1773 }
1774 if (s < 4 * 1024 || s > 1024 * 1024) {
bbe88b6d 1775 logit("packet_set_maxsize: bad size %d", s);
5260325f 1776 return -1;
1777 }
b6350327 1778 called = 1;
76735fe3 1779 debug("packet_set_maxsize: setting to %d", s);
dc1f1948 1780 active_state->max_packet_size = s;
5260325f 1781 return s;
9d6b7add 1782}
a6215e53 1783
dc1f1948 1784int
1785packet_inc_alive_timeouts(void)
1786{
1787 return ++active_state->keep_alive_timeouts;
1788}
1789
1790void
1791packet_set_alive_timeouts(int ka)
1792{
1793 active_state->keep_alive_timeouts = ka;
1794}
1795
1796u_int
1797packet_get_maxsize(void)
1798{
1799 return active_state->max_packet_size;
1800}
1801
b4b701be 1802/* roundup current message to pad bytes */
1803void
1804packet_add_padding(u_char pad)
1805{
dc1f1948 1806 active_state->extra_pad = pad;
b4b701be 1807}
1808
a6215e53 1809/*
1810 * 9.2. Ignored Data Message
cd332296 1811 *
a6215e53 1812 * byte SSH_MSG_IGNORE
1813 * string data
cd332296 1814 *
a6215e53 1815 * All implementations MUST understand (and ignore) this message at any
1816 * time (after receiving the protocol version). No implementation is
1817 * required to send them. This message can be used as an additional
1818 * protection measure against advanced traffic analysis techniques.
1819 */
95ce5599 1820void
1821packet_send_ignore(int nbytes)
1822{
ca75d7de 1823 u_int32_t rnd = 0;
95ce5599 1824 int i;
1825
1826 packet_start(compat20 ? SSH2_MSG_IGNORE : SSH_MSG_IGNORE);
a6215e53 1827 packet_put_int(nbytes);
184eed6a 1828 for (i = 0; i < nbytes; i++) {
a6215e53 1829 if (i % 4 == 0)
ca75d7de 1830 rnd = arc4random();
febd6f21 1831 packet_put_char((u_char)rnd & 0xff);
ca75d7de 1832 rnd >>= 8;
a6215e53 1833 }
1834}
ffd7b36b 1835
f6be21a0 1836#define MAX_PACKETS (1U<<31)
ffd7b36b 1837int
1838packet_need_rekeying(void)
1839{
1840 if (datafellows & SSH_BUG_NOREKEY)
1841 return 0;
1842 return
dc1f1948 1843 (active_state->p_send.packets > MAX_PACKETS) ||
1844 (active_state->p_read.packets > MAX_PACKETS) ||
1845 (active_state->max_blocks_out &&
1846 (active_state->p_send.blocks > active_state->max_blocks_out)) ||
1847 (active_state->max_blocks_in &&
1848 (active_state->p_read.blocks > active_state->max_blocks_in));
ffd7b36b 1849}
1850
1851void
1852packet_set_rekey_limit(u_int32_t bytes)
1853{
dc1f1948 1854 active_state->rekey_limit = bytes;
ffd7b36b 1855}
07200973 1856
1857void
1858packet_set_server(void)
1859{
dc1f1948 1860 active_state->server_side = 1;
07200973 1861}
1862
1863void
1864packet_set_authenticated(void)
1865{
dc1f1948 1866 active_state->after_authentication = 1;
1867}
1868
1869void *
1870packet_get_input(void)
1871{
1872 return (void *)&active_state->input;
1873}
1874
1875void *
1876packet_get_output(void)
1877{
1878 return (void *)&active_state->output;
1879}
1880
1881void *
1882packet_get_newkeys(int mode)
1883{
1884 return (void *)active_state->newkeys[mode];
07200973 1885}
This page took 0.78096 seconds and 5 git commands to generate.