blob: bf148316d10be51202df8d6ebc0c086d5a92aec5 [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"
Darren Tucker0acc92a2004-02-24 09:21:41 +110040RCSID("$OpenBSD: bufaux.c,v 1.32 2004/02/23 15:12:46 markus Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100041
Damien Millerd4a8b7e1999-10-27 13:42:43 +100042#include <openssl/bn.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100043#include "bufaux.h"
44#include "xmalloc.h"
45#include "getput.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000046#include "log.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100047
Damien Miller95def091999-11-25 00:26:21 +110048/*
49 * Stores an BIGNUM in the buffer with a 2-byte msb first bit count, followed
50 * by (bits+7)/8 bytes of binary data, msb first.
51 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100052void
Damien Millerf58b58c2003-11-17 21:18:23 +110053buffer_put_bignum(Buffer *buffer, const BIGNUM *value)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100054{
Damien Miller95def091999-11-25 00:26:21 +110055 int bits = BN_num_bits(value);
56 int bin_size = (bits + 7) / 8;
Ben Lindstrom46c16222000-12-22 01:43:59 +000057 u_char *buf = xmalloc(bin_size);
Damien Miller95def091999-11-25 00:26:21 +110058 int oi;
59 char msg[2];
Damien Millerd4a8b7e1999-10-27 13:42:43 +100060
Damien Miller95def091999-11-25 00:26:21 +110061 /* Get the value of in binary */
62 oi = BN_bn2bin(value, buf);
63 if (oi != bin_size)
64 fatal("buffer_put_bignum: BN_bn2bin() failed: oi %d != bin_size %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +110065 oi, bin_size);
Damien Miller95def091999-11-25 00:26:21 +110066
67 /* Store the number of bits in the buffer in two bytes, msb first. */
68 PUT_16BIT(msg, bits);
69 buffer_append(buffer, msg, 2);
70 /* Store the binary data. */
Damien Miller7684ee12000-03-17 23:40:15 +110071 buffer_append(buffer, (char *)buf, oi);
Damien Miller5428f641999-11-25 11:54:57 +110072
Damien Miller95def091999-11-25 00:26:21 +110073 memset(buf, 0, bin_size);
74 xfree(buf);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100075}
76
Damien Miller95def091999-11-25 00:26:21 +110077/*
78 * Retrieves an BIGNUM from the buffer.
79 */
Damien Miller76e1e362002-01-22 23:15:57 +110080void
Damien Millerd4a8b7e1999-10-27 13:42:43 +100081buffer_get_bignum(Buffer *buffer, BIGNUM *value)
82{
Darren Tuckerc0815c92003-09-22 21:05:50 +100083 u_int bits, bytes;
Ben Lindstrom46c16222000-12-22 01:43:59 +000084 u_char buf[2], *bin;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100085
Damien Miller95def091999-11-25 00:26:21 +110086 /* Get the number for bits. */
87 buffer_get(buffer, (char *) buf, 2);
88 bits = GET_16BIT(buf);
89 /* Compute the number of binary bytes that follow. */
90 bytes = (bits + 7) / 8;
Damien Milleraa151372002-06-26 19:14:08 +100091 if (bytes > 8 * 1024)
92 fatal("buffer_get_bignum: cannot handle BN of size %d", bytes);
Damien Miller95def091999-11-25 00:26:21 +110093 if (buffer_len(buffer) < bytes)
94 fatal("buffer_get_bignum: input buffer too small");
Damien Miller4a8ed542002-01-22 23:33:31 +110095 bin = buffer_ptr(buffer);
Damien Miller95def091999-11-25 00:26:21 +110096 BN_bin2bn(bin, bytes, value);
97 buffer_consume(buffer, bytes);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100098}
99
Damien Miller95def091999-11-25 00:26:21 +1100100/*
Damien Millerb38eff82000-04-01 11:09:21 +1000101 * Stores an BIGNUM in the buffer in SSH2 format.
102 */
103void
Damien Millerf58b58c2003-11-17 21:18:23 +1100104buffer_put_bignum2(Buffer *buffer, const BIGNUM *value)
Damien Millerb38eff82000-04-01 11:09:21 +1000105{
Darren Tucker0acc92a2004-02-24 09:21:41 +1100106 u_int bytes;
107 u_char *buf;
Damien Millerb38eff82000-04-01 11:09:21 +1000108 int oi;
Darren Tuckerc0815c92003-09-22 21:05:50 +1000109 u_int hasnohigh = 0;
Ben Lindstrome1353632002-06-23 21:29:23 +0000110
Darren Tucker0acc92a2004-02-24 09:21:41 +1100111 if (BN_is_zero(value)) {
112 buffer_put_int(buffer, 0);
113 return;
114 }
115 if (value->neg)
116 fatal("buffer_put_bignum2: negative numbers not supported");
117 bytes = BN_num_bytes(value) + 1; /* extra padding byte */
118 if (bytes < 2)
119 fatal("buffer_put_bignum2: BN too small");
120 buf = xmalloc(bytes);
Damien Millerb38eff82000-04-01 11:09:21 +1000121 buf[0] = '\0';
122 /* Get the value of in binary */
123 oi = BN_bn2bin(value, buf+1);
124 if (oi != bytes-1)
Darren Tucker0acc92a2004-02-24 09:21:41 +1100125 fatal("buffer_put_bignum2: BN_bn2bin() failed: "
126 "oi %d != bin_size %d", oi, bytes);
Damien Millerb38eff82000-04-01 11:09:21 +1000127 hasnohigh = (buf[1] & 0x80) ? 0 : 1;
Damien Millerb38eff82000-04-01 11:09:21 +1000128 buffer_put_string(buffer, buf+hasnohigh, bytes-hasnohigh);
129 memset(buf, 0, bytes);
130 xfree(buf);
131}
132
Damien Miller76e1e362002-01-22 23:15:57 +1100133void
Damien Millerb38eff82000-04-01 11:09:21 +1000134buffer_get_bignum2(Buffer *buffer, BIGNUM *value)
135{
Damien Milleraa151372002-06-26 19:14:08 +1000136 u_int len;
137 u_char *bin = buffer_get_string(buffer, &len);
Ben Lindstrome1353632002-06-23 21:29:23 +0000138
Darren Tucker0acc92a2004-02-24 09:21:41 +1100139 if (len > 0 && (bin[0] & 0x80))
140 fatal("buffer_get_bignum2: negative numbers not supported");
Damien Milleraa151372002-06-26 19:14:08 +1000141 if (len > 8 * 1024)
142 fatal("buffer_get_bignum2: cannot handle BN of size %d", len);
Damien Millerb38eff82000-04-01 11:09:21 +1000143 BN_bin2bn(bin, len, value);
144 xfree(bin);
Damien Millerb38eff82000-04-01 11:09:21 +1000145}
Darren Tucker0acc92a2004-02-24 09:21:41 +1100146
Damien Millerb38eff82000-04-01 11:09:21 +1000147/*
Damien Miller3b235662002-04-23 20:42:36 +1000148 * Returns integers from the buffer (msb first).
Damien Miller95def091999-11-25 00:26:21 +1100149 */
Damien Miller3b235662002-04-23 20:42:36 +1000150
151u_short
152buffer_get_short(Buffer *buffer)
153{
154 u_char buf[2];
Ben Lindstrome1353632002-06-23 21:29:23 +0000155
Damien Miller3b235662002-04-23 20:42:36 +1000156 buffer_get(buffer, (char *) buf, 2);
157 return GET_16BIT(buf);
158}
159
Ben Lindstrom46c16222000-12-22 01:43:59 +0000160u_int
Damien Miller95def091999-11-25 00:26:21 +1100161buffer_get_int(Buffer *buffer)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000162{
Ben Lindstrom46c16222000-12-22 01:43:59 +0000163 u_char buf[4];
Ben Lindstrome1353632002-06-23 21:29:23 +0000164
Damien Miller95def091999-11-25 00:26:21 +1100165 buffer_get(buffer, (char *) buf, 4);
166 return GET_32BIT(buf);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000167}
168
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000169u_int64_t
170buffer_get_int64(Buffer *buffer)
171{
172 u_char buf[8];
Ben Lindstrome1353632002-06-23 21:29:23 +0000173
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000174 buffer_get(buffer, (char *) buf, 8);
175 return GET_64BIT(buf);
176}
177
Damien Miller95def091999-11-25 00:26:21 +1100178/*
Damien Miller3b235662002-04-23 20:42:36 +1000179 * Stores integers in the buffer, msb first.
Damien Miller95def091999-11-25 00:26:21 +1100180 */
Damien Miller5f056372000-04-16 12:31:48 +1000181void
Damien Miller3b235662002-04-23 20:42:36 +1000182buffer_put_short(Buffer *buffer, u_short value)
183{
184 char buf[2];
Ben Lindstrome1353632002-06-23 21:29:23 +0000185
Damien Miller3b235662002-04-23 20:42:36 +1000186 PUT_16BIT(buf, value);
187 buffer_append(buffer, buf, 2);
188}
189
190void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000191buffer_put_int(Buffer *buffer, u_int value)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000192{
Damien Miller95def091999-11-25 00:26:21 +1100193 char buf[4];
Ben Lindstrome1353632002-06-23 21:29:23 +0000194
Damien Miller95def091999-11-25 00:26:21 +1100195 PUT_32BIT(buf, value);
196 buffer_append(buffer, buf, 4);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000197}
198
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000199void
200buffer_put_int64(Buffer *buffer, u_int64_t value)
201{
202 char buf[8];
Ben Lindstrome1353632002-06-23 21:29:23 +0000203
Ben Lindstrom2f959b42001-01-11 06:20:23 +0000204 PUT_64BIT(buf, value);
205 buffer_append(buffer, buf, 8);
206}
207
Damien Miller95def091999-11-25 00:26:21 +1100208/*
209 * Returns an arbitrary binary string from the buffer. The string cannot
210 * be longer than 256k. The returned value points to memory allocated
211 * with xmalloc; it is the responsibility of the calling function to free
212 * the data. If length_ptr is non-NULL, the length of the returned data
213 * will be stored there. A null character will be automatically appended
214 * to the returned string, and is not counted in length.
215 */
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100216void *
Ben Lindstrom46c16222000-12-22 01:43:59 +0000217buffer_get_string(Buffer *buffer, u_int *length_ptr)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000218{
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100219 u_char *value;
Ben Lindstrome1353632002-06-23 21:29:23 +0000220 u_int len;
221
Damien Miller95def091999-11-25 00:26:21 +1100222 /* Get the length. */
223 len = buffer_get_int(buffer);
224 if (len > 256 * 1024)
Ben Lindstromee844912002-11-09 15:43:23 +0000225 fatal("buffer_get_string: bad string length %u", len);
Damien Miller95def091999-11-25 00:26:21 +1100226 /* Allocate space for the string. Add one byte for a null character. */
227 value = xmalloc(len + 1);
228 /* Get the string. */
229 buffer_get(buffer, value, len);
230 /* Append a null character to make processing easier. */
231 value[len] = 0;
232 /* Optionally return the length of the string. */
233 if (length_ptr)
234 *length_ptr = len;
235 return value;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000236}
237
Damien Miller95def091999-11-25 00:26:21 +1100238/*
239 * Stores and arbitrary binary string in the buffer.
240 */
Damien Miller5f056372000-04-16 12:31:48 +1000241void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000242buffer_put_string(Buffer *buffer, const void *buf, u_int len)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000243{
Damien Miller95def091999-11-25 00:26:21 +1100244 buffer_put_int(buffer, len);
245 buffer_append(buffer, buf, len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000246}
Damien Miller5f056372000-04-16 12:31:48 +1000247void
Damien Millerb38eff82000-04-01 11:09:21 +1000248buffer_put_cstring(Buffer *buffer, const char *s)
249{
Ben Lindstrom88aa1b42002-03-22 01:47:52 +0000250 if (s == NULL)
251 fatal("buffer_put_cstring: s == NULL");
Damien Millerb38eff82000-04-01 11:09:21 +1000252 buffer_put_string(buffer, s, strlen(s));
253}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000254
Damien Miller95def091999-11-25 00:26:21 +1100255/*
256 * Returns a character from the buffer (0 - 255).
257 */
Damien Miller5f056372000-04-16 12:31:48 +1000258int
Damien Miller95def091999-11-25 00:26:21 +1100259buffer_get_char(Buffer *buffer)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000260{
Damien Miller95def091999-11-25 00:26:21 +1100261 char ch;
Ben Lindstrome1353632002-06-23 21:29:23 +0000262
Damien Miller95def091999-11-25 00:26:21 +1100263 buffer_get(buffer, &ch, 1);
Ben Lindstrom46c16222000-12-22 01:43:59 +0000264 return (u_char) ch;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000265}
266
Damien Miller95def091999-11-25 00:26:21 +1100267/*
268 * Stores a character in the buffer.
269 */
Damien Miller5f056372000-04-16 12:31:48 +1000270void
Damien Miller95def091999-11-25 00:26:21 +1100271buffer_put_char(Buffer *buffer, int value)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000272{
Damien Miller95def091999-11-25 00:26:21 +1100273 char ch = value;
Ben Lindstrome1353632002-06-23 21:29:23 +0000274
Damien Miller95def091999-11-25 00:26:21 +1100275 buffer_append(buffer, &ch, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000276}