blob: 19f6708f0b458690a405c365a65c4f92f39c32d4 [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11003 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * Auxiliary functions for storing and retrieving various data types to/from
6 * Buffers.
7 *
Damien Millere4340be2000-09-16 13:29:08 +11008 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
Damien Millerb38eff82000-04-01 11:09:21 +100013 *
Damien Millere4340be2000-09-16 13:29:08 +110014 *
15 * SSH2 packet format added by Markus Friedl
16 * Copyright (c) 2000 Markus Friedl. All rights reserved.
17 *
18 * Redistribution and use in source and binary forms, with or without
19 * modification, are permitted provided that the following conditions
20 * are met:
21 * 1. Redistributions of source code must retain the above copyright
22 * notice, this list of conditions and the following disclaimer.
23 * 2. Redistributions in binary form must reproduce the above copyright
24 * notice, this list of conditions and the following disclaimer in the
25 * documentation and/or other materials provided with the distribution.
26 *
27 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
28 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
29 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
30 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
31 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
32 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
33 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
34 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
35 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
36 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110037 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100038
39#include "includes.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100040
Damien Millerd4a8b7e1999-10-27 13:42:43 +100041#include <openssl/bn.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100042#include "bufaux.h"
43#include "xmalloc.h"
44#include "getput.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000045#include "log.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100046
Damien Miller95def091999-11-25 00:26:21 +110047/*
48 * Stores an BIGNUM in the buffer with a 2-byte msb first bit count, followed
49 * by (bits+7)/8 bytes of binary data, msb first.
50 */
Darren Tucker50dbe832004-11-05 20:41:24 +110051int
52buffer_put_bignum_ret(Buffer *buffer, const BIGNUM *value)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100053{
Damien Miller95def091999-11-25 00:26:21 +110054 int bits = BN_num_bits(value);
55 int bin_size = (bits + 7) / 8;
Ben Lindstrom46c16222000-12-22 01:43:59 +000056 u_char *buf = xmalloc(bin_size);
Damien Miller95def091999-11-25 00:26:21 +110057 int oi;
58 char msg[2];
Damien Millerd4a8b7e1999-10-27 13:42:43 +100059
Damien Miller95def091999-11-25 00:26:21 +110060 /* Get the value of in binary */
61 oi = BN_bn2bin(value, buf);
Darren Tucker50dbe832004-11-05 20:41:24 +110062 if (oi != bin_size) {
63 error("buffer_put_bignum_ret: BN_bn2bin() failed: oi %d != bin_size %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +110064 oi, bin_size);
Damien Miller5fd8b022005-11-05 16:04:36 +110065 xfree(buf);
Darren Tucker50dbe832004-11-05 20:41:24 +110066 return (-1);
67 }
Damien Miller95def091999-11-25 00:26:21 +110068
69 /* Store the number of bits in the buffer in two bytes, msb first. */
70 PUT_16BIT(msg, bits);
71 buffer_append(buffer, msg, 2);
72 /* Store the binary data. */
Damien Miller7684ee12000-03-17 23:40:15 +110073 buffer_append(buffer, (char *)buf, oi);
Damien Miller5428f641999-11-25 11:54:57 +110074
Damien Miller95def091999-11-25 00:26:21 +110075 memset(buf, 0, bin_size);
76 xfree(buf);
Darren Tucker50dbe832004-11-05 20:41:24 +110077
78 return (0);
79}
80
81void
82buffer_put_bignum(Buffer *buffer, const BIGNUM *value)
83{
84 if (buffer_put_bignum_ret(buffer, value) == -1)
85 fatal("buffer_put_bignum: buffer error");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100086}
87
Damien Miller95def091999-11-25 00:26:21 +110088/*
89 * Retrieves an BIGNUM from the buffer.
90 */
Darren Tucker50dbe832004-11-05 20:41:24 +110091int
92buffer_get_bignum_ret(Buffer *buffer, BIGNUM *value)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100093{
Darren Tuckerc0815c92003-09-22 21:05:50 +100094 u_int bits, bytes;
Ben Lindstrom46c16222000-12-22 01:43:59 +000095 u_char buf[2], *bin;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100096
Damien Miller95def091999-11-25 00:26:21 +110097 /* Get the number for bits. */
Darren Tucker50dbe832004-11-05 20:41:24 +110098 if (buffer_get_ret(buffer, (char *) buf, 2) == -1) {
99 error("buffer_get_bignum_ret: invalid length");
100 return (-1);
101 }
Damien Miller95def091999-11-25 00:26:21 +1100102 bits = GET_16BIT(buf);
103 /* Compute the number of binary bytes that follow. */
104 bytes = (bits + 7) / 8;
Darren Tucker50dbe832004-11-05 20:41:24 +1100105 if (bytes > 8 * 1024) {
106 error("buffer_get_bignum_ret: cannot handle BN of size %d", bytes);
107 return (-1);
108 }
109 if (buffer_len(buffer) < bytes) {
110 error("buffer_get_bignum_ret: input buffer too small");
111 return (-1);
112 }
Damien Miller4a8ed542002-01-22 23:33:31 +1100113 bin = buffer_ptr(buffer);
Damien Miller95def091999-11-25 00:26:21 +1100114 BN_bin2bn(bin, bytes, value);
Darren Tucker50dbe832004-11-05 20:41:24 +1100115 if (buffer_consume_ret(buffer, bytes) == -1) {
116 error("buffer_get_bignum_ret: buffer_consume failed");
117 return (-1);
118 }
119 return (0);
120}
121
122void
123buffer_get_bignum(Buffer *buffer, BIGNUM *value)
124{
125 if (buffer_get_bignum_ret(buffer, value) == -1)
126 fatal("buffer_get_bignum: buffer error");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000127}
128
Damien Miller95def091999-11-25 00:26:21 +1100129/*
Damien Millerb38eff82000-04-01 11:09:21 +1000130 * Stores an BIGNUM in the buffer in SSH2 format.
131 */
Darren Tucker50dbe832004-11-05 20:41:24 +1100132int
133buffer_put_bignum2_ret(Buffer *buffer, const BIGNUM *value)
Damien Millerb38eff82000-04-01 11:09:21 +1000134{
Darren Tucker0acc92a2004-02-24 09:21:41 +1100135 u_int bytes;
136 u_char *buf;
Damien Millerb38eff82000-04-01 11:09:21 +1000137 int oi;
Darren Tuckerc0815c92003-09-22 21:05:50 +1000138 u_int hasnohigh = 0;
Ben Lindstrome1353632002-06-23 21:29:23 +0000139
Darren Tucker0acc92a2004-02-24 09:21:41 +1100140 if (BN_is_zero(value)) {
141 buffer_put_int(buffer, 0);
Darren Tucker50dbe832004-11-05 20:41:24 +1100142 return 0;
Darren Tucker0acc92a2004-02-24 09:21:41 +1100143 }
Darren Tucker50dbe832004-11-05 20:41:24 +1100144 if (value->neg) {
145 error("buffer_put_bignum2_ret: negative numbers not supported");
146 return (-1);
147 }
Darren Tucker0acc92a2004-02-24 09:21:41 +1100148 bytes = BN_num_bytes(value) + 1; /* extra padding byte */
Darren Tucker50dbe832004-11-05 20:41:24 +1100149 if (bytes < 2) {
150 error("buffer_put_bignum2_ret: BN too small");
151 return (-1);
152 }
Darren Tucker0acc92a2004-02-24 09:21:41 +1100153 buf = xmalloc(bytes);
Darren Tucker56c95982004-12-11 13:34:56 +1100154 buf[0] = 0x00;
Damien Millerb38eff82000-04-01 11:09:21 +1000155 /* Get the value of in binary */
156 oi = BN_bn2bin(value, buf+1);
Damien Millereccb9de2005-06-17 12:59:34 +1000157 if (oi < 0 || (u_int)oi != bytes - 1) {
Darren Tucker50dbe832004-11-05 20:41:24 +1100158 error("buffer_put_bignum2_ret: BN_bn2bin() failed: "
Darren Tucker0acc92a2004-02-24 09:21:41 +1100159 "oi %d != bin_size %d", oi, bytes);
Darren Tucker50dbe832004-11-05 20:41:24 +1100160 xfree(buf);
161 return (-1);
162 }
Damien Millerb38eff82000-04-01 11:09:21 +1000163 hasnohigh = (buf[1] & 0x80) ? 0 : 1;
Damien Millerb38eff82000-04-01 11:09:21 +1000164 buffer_put_string(buffer, buf+hasnohigh, bytes-hasnohigh);
165 memset(buf, 0, bytes);
166 xfree(buf);
Darren Tucker50dbe832004-11-05 20:41:24 +1100167 return (0);
168}
169
170void
171buffer_put_bignum2(Buffer *buffer, const BIGNUM *value)
172{
173 if (buffer_put_bignum2_ret(buffer, value) == -1)
174 fatal("buffer_put_bignum2: buffer error");
175}
176
177int
178buffer_get_bignum2_ret(Buffer *buffer, BIGNUM *value)
179{
180 u_int len;
181 u_char *bin;
Darren Tucker47eede72005-03-14 23:08:12 +1100182
Darren Tucker50dbe832004-11-05 20:41:24 +1100183 if ((bin = buffer_get_string_ret(buffer, &len)) == NULL) {
184 error("buffer_get_bignum2_ret: invalid bignum");
185 return (-1);
186 }
187
188 if (len > 0 && (bin[0] & 0x80)) {
189 error("buffer_get_bignum2_ret: negative numbers not supported");
Damien Miller5fd8b022005-11-05 16:04:36 +1100190 xfree(bin);
Darren Tucker50dbe832004-11-05 20:41:24 +1100191 return (-1);
192 }
193 if (len > 8 * 1024) {
194 error("buffer_get_bignum2_ret: cannot handle BN of size %d", len);
Damien Miller5fd8b022005-11-05 16:04:36 +1100195 xfree(bin);
Darren Tucker50dbe832004-11-05 20:41:24 +1100196 return (-1);
197 }
198 BN_bin2bn(bin, len, value);
199 xfree(bin);
200 return (0);
Damien Millerb38eff82000-04-01 11:09:21 +1000201}
202
Damien Miller76e1e362002-01-22 23:15:57 +1100203void
Damien Millerb38eff82000-04-01 11:09:21 +1000204buffer_get_bignum2(Buffer *buffer, BIGNUM *value)
205{
Darren Tucker50dbe832004-11-05 20:41:24 +1100206 if (buffer_get_bignum2_ret(buffer, value) == -1)
207 fatal("buffer_get_bignum2: buffer error");
Damien Millerb38eff82000-04-01 11:09:21 +1000208}
Darren Tucker0acc92a2004-02-24 09:21:41 +1100209
Damien Millerb38eff82000-04-01 11:09:21 +1000210/*
Damien Miller3b235662002-04-23 20:42:36 +1000211 * Returns integers from the buffer (msb first).
Damien Miller95def091999-11-25 00:26:21 +1100212 */
Damien Miller3b235662002-04-23 20:42:36 +1000213
Darren Tucker50dbe832004-11-05 20:41:24 +1100214int
215buffer_get_short_ret(u_short *ret, Buffer *buffer)
Damien Miller3b235662002-04-23 20:42:36 +1000216{
217 u_char buf[2];
Ben Lindstrome1353632002-06-23 21:29:23 +0000218
Darren Tucker50dbe832004-11-05 20:41:24 +1100219 if (buffer_get_ret(buffer, (char *) buf, 2) == -1)
220 return (-1);
221 *ret = GET_16BIT(buf);
222 return (0);
223}
224
225u_short
226buffer_get_short(Buffer *buffer)
227{
228 u_short ret;
229
230 if (buffer_get_short_ret(&ret, buffer) == -1)
231 fatal("buffer_get_short: buffer error");
232
233 return (ret);
234}
235
236int
237buffer_get_int_ret(u_int *ret, Buffer *buffer)
238{
239 u_char buf[4];
240
241 if (buffer_get_ret(buffer, (char *) buf, 4) == -1)
242 return (-1);
243 *ret = GET_32BIT(buf);
244 return (0);
Damien Miller3b235662002-04-23 20:42:36 +1000245}
246
Ben Lindstrom46c16222000-12-22 01:43:59 +0000247u_int
Damien Miller95def091999-11-25 00:26:21 +1100248buffer_get_int(Buffer *buffer)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000249{
Darren Tucker50dbe832004-11-05 20:41:24 +1100250 u_int ret;
Ben Lindstrome1353632002-06-23 21:29:23 +0000251
Darren Tucker50dbe832004-11-05 20:41:24 +1100252 if (buffer_get_int_ret(&ret, buffer) == -1)
253 fatal("buffer_get_int: buffer error");
254
255 return (ret);
256}
257
258int
259buffer_get_int64_ret(u_int64_t *ret, Buffer *buffer)
260{
261 u_char buf[8];
262
263 if (buffer_get_ret(buffer, (char *) buf, 8) == -1)
264 return (-1);
265 *ret = GET_64BIT(buf);
266 return (0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000267}
268
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000269u_int64_t
270buffer_get_int64(Buffer *buffer)
271{
Darren Tucker50dbe832004-11-05 20:41:24 +1100272 u_int64_t ret;
Ben Lindstrome1353632002-06-23 21:29:23 +0000273
Darren Tucker50dbe832004-11-05 20:41:24 +1100274 if (buffer_get_int64_ret(&ret, buffer) == -1)
275 fatal("buffer_get_int: buffer error");
276
277 return (ret);
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000278}
279
Damien Miller95def091999-11-25 00:26:21 +1100280/*
Damien Miller3b235662002-04-23 20:42:36 +1000281 * Stores integers in the buffer, msb first.
Damien Miller95def091999-11-25 00:26:21 +1100282 */
Damien Miller5f056372000-04-16 12:31:48 +1000283void
Damien Miller3b235662002-04-23 20:42:36 +1000284buffer_put_short(Buffer *buffer, u_short value)
285{
286 char buf[2];
Ben Lindstrome1353632002-06-23 21:29:23 +0000287
Damien Miller3b235662002-04-23 20:42:36 +1000288 PUT_16BIT(buf, value);
289 buffer_append(buffer, buf, 2);
290}
291
292void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000293buffer_put_int(Buffer *buffer, u_int value)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000294{
Damien Miller95def091999-11-25 00:26:21 +1100295 char buf[4];
Ben Lindstrome1353632002-06-23 21:29:23 +0000296
Damien Miller95def091999-11-25 00:26:21 +1100297 PUT_32BIT(buf, value);
298 buffer_append(buffer, buf, 4);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000299}
300
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000301void
302buffer_put_int64(Buffer *buffer, u_int64_t value)
303{
304 char buf[8];
Ben Lindstrome1353632002-06-23 21:29:23 +0000305
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000306 PUT_64BIT(buf, value);
307 buffer_append(buffer, buf, 8);
308}
309
Damien Miller95def091999-11-25 00:26:21 +1100310/*
311 * Returns an arbitrary binary string from the buffer. The string cannot
312 * be longer than 256k. The returned value points to memory allocated
313 * with xmalloc; it is the responsibility of the calling function to free
314 * the data. If length_ptr is non-NULL, the length of the returned data
315 * will be stored there. A null character will be automatically appended
316 * to the returned string, and is not counted in length.
317 */
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100318void *
Darren Tucker50dbe832004-11-05 20:41:24 +1100319buffer_get_string_ret(Buffer *buffer, u_int *length_ptr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000320{
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100321 u_char *value;
Ben Lindstrome1353632002-06-23 21:29:23 +0000322 u_int len;
323
Damien Miller95def091999-11-25 00:26:21 +1100324 /* Get the length. */
325 len = buffer_get_int(buffer);
Darren Tucker50dbe832004-11-05 20:41:24 +1100326 if (len > 256 * 1024) {
327 error("buffer_get_string_ret: bad string length %u", len);
328 return (NULL);
329 }
Damien Miller95def091999-11-25 00:26:21 +1100330 /* Allocate space for the string. Add one byte for a null character. */
331 value = xmalloc(len + 1);
332 /* Get the string. */
Darren Tucker50dbe832004-11-05 20:41:24 +1100333 if (buffer_get_ret(buffer, value, len) == -1) {
334 error("buffer_get_string_ret: buffer_get failed");
335 xfree(value);
336 return (NULL);
337 }
Damien Miller95def091999-11-25 00:26:21 +1100338 /* Append a null character to make processing easier. */
339 value[len] = 0;
340 /* Optionally return the length of the string. */
341 if (length_ptr)
342 *length_ptr = len;
Darren Tucker50dbe832004-11-05 20:41:24 +1100343 return (value);
344}
345
346void *
347buffer_get_string(Buffer *buffer, u_int *length_ptr)
348{
349 void *ret;
350
351 if ((ret = buffer_get_string_ret(buffer, length_ptr)) == NULL)
352 fatal("buffer_get_string: buffer error");
353 return (ret);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000354}
355
Damien Miller95def091999-11-25 00:26:21 +1100356/*
357 * Stores and arbitrary binary string in the buffer.
358 */
Damien Miller5f056372000-04-16 12:31:48 +1000359void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000360buffer_put_string(Buffer *buffer, const void *buf, u_int len)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000361{
Damien Miller95def091999-11-25 00:26:21 +1100362 buffer_put_int(buffer, len);
363 buffer_append(buffer, buf, len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000364}
Damien Miller5f056372000-04-16 12:31:48 +1000365void
Damien Millerb38eff82000-04-01 11:09:21 +1000366buffer_put_cstring(Buffer *buffer, const char *s)
367{
Ben Lindstrom88aa1b42002-03-22 01:47:52 +0000368 if (s == NULL)
369 fatal("buffer_put_cstring: s == NULL");
Damien Millerb38eff82000-04-01 11:09:21 +1000370 buffer_put_string(buffer, s, strlen(s));
371}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000372
Damien Miller95def091999-11-25 00:26:21 +1100373/*
374 * Returns a character from the buffer (0 - 255).
375 */
Damien Miller5f056372000-04-16 12:31:48 +1000376int
Darren Tucker50dbe832004-11-05 20:41:24 +1100377buffer_get_char_ret(char *ret, Buffer *buffer)
378{
379 if (buffer_get_ret(buffer, ret, 1) == -1) {
380 error("buffer_get_char_ret: buffer_get_ret failed");
381 return (-1);
382 }
383 return (0);
384}
385
386int
Damien Miller95def091999-11-25 00:26:21 +1100387buffer_get_char(Buffer *buffer)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000388{
Damien Miller95def091999-11-25 00:26:21 +1100389 char ch;
Ben Lindstrome1353632002-06-23 21:29:23 +0000390
Darren Tucker50dbe832004-11-05 20:41:24 +1100391 if (buffer_get_char_ret(&ch, buffer) == -1)
392 fatal("buffer_get_char: buffer error");
Ben Lindstrom46c16222000-12-22 01:43:59 +0000393 return (u_char) ch;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000394}
395
Damien Miller95def091999-11-25 00:26:21 +1100396/*
397 * Stores a character in the buffer.
398 */
Damien Miller5f056372000-04-16 12:31:48 +1000399void
Damien Miller95def091999-11-25 00:26:21 +1100400buffer_put_char(Buffer *buffer, int value)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000401{
Damien Miller95def091999-11-25 00:26:21 +1100402 char ch = value;
Ben Lindstrome1353632002-06-23 21:29:23 +0000403
Damien Miller95def091999-11-25 00:26:21 +1100404 buffer_append(buffer, &ch, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000405}