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