]> andersk Git - gssapi-openssh.git/blame - openssh/bufaux.c
Import of OpenSSH 3.8p1
[gssapi-openssh.git] / openssh / bufaux.c
CommitLineData
3c0ef626 1/*
2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
5 * Auxiliary functions for storing and retrieving various data types to/from
6 * Buffers.
7 *
8 * 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".
13 *
14 *
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.
37 */
38
39#include "includes.h"
cdd66111 40RCSID("$OpenBSD: bufaux.c,v 1.32 2004/02/23 15:12:46 markus Exp $");
3c0ef626 41
42#include <openssl/bn.h>
43#include "bufaux.h"
44#include "xmalloc.h"
45#include "getput.h"
46#include "log.h"
47
48/*
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 */
52void
cdd66111 53buffer_put_bignum(Buffer *buffer, const BIGNUM *value)
3c0ef626 54{
55 int bits = BN_num_bits(value);
56 int bin_size = (bits + 7) / 8;
57 u_char *buf = xmalloc(bin_size);
58 int oi;
59 char msg[2];
60
61 /* 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",
e9a17296 65 oi, bin_size);
3c0ef626 66
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. */
71 buffer_append(buffer, (char *)buf, oi);
72
73 memset(buf, 0, bin_size);
74 xfree(buf);
75}
76
77/*
78 * Retrieves an BIGNUM from the buffer.
79 */
e9a17296 80void
3c0ef626 81buffer_get_bignum(Buffer *buffer, BIGNUM *value)
82{
cdd66111 83 u_int bits, bytes;
3c0ef626 84 u_char buf[2], *bin;
85
86 /* 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;
680cee3b 91 if (bytes > 8 * 1024)
92 fatal("buffer_get_bignum: cannot handle BN of size %d", bytes);
3c0ef626 93 if (buffer_len(buffer) < bytes)
94 fatal("buffer_get_bignum: input buffer too small");
e9a17296 95 bin = buffer_ptr(buffer);
3c0ef626 96 BN_bin2bn(bin, bytes, value);
97 buffer_consume(buffer, bytes);
3c0ef626 98}
99
100/*
101 * Stores an BIGNUM in the buffer in SSH2 format.
102 */
103void
cdd66111 104buffer_put_bignum2(Buffer *buffer, const BIGNUM *value)
3c0ef626 105{
cdd66111 106 u_int bytes;
107 u_char *buf;
3c0ef626 108 int oi;
cdd66111 109 u_int hasnohigh = 0;
680cee3b 110
cdd66111 111 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);
3c0ef626 121 buf[0] = '\0';
122 /* Get the value of in binary */
123 oi = BN_bn2bin(value, buf+1);
124 if (oi != bytes-1)
cdd66111 125 fatal("buffer_put_bignum2: BN_bn2bin() failed: "
126 "oi %d != bin_size %d", oi, bytes);
3c0ef626 127 hasnohigh = (buf[1] & 0x80) ? 0 : 1;
3c0ef626 128 buffer_put_string(buffer, buf+hasnohigh, bytes-hasnohigh);
129 memset(buf, 0, bytes);
130 xfree(buf);
131}
132
e9a17296 133void
3c0ef626 134buffer_get_bignum2(Buffer *buffer, BIGNUM *value)
135{
680cee3b 136 u_int len;
137 u_char *bin = buffer_get_string(buffer, &len);
138
cdd66111 139 if (len > 0 && (bin[0] & 0x80))
140 fatal("buffer_get_bignum2: negative numbers not supported");
680cee3b 141 if (len > 8 * 1024)
142 fatal("buffer_get_bignum2: cannot handle BN of size %d", len);
3c0ef626 143 BN_bin2bn(bin, len, value);
144 xfree(bin);
3c0ef626 145}
cdd66111 146
3c0ef626 147/*
700318f3 148 * Returns integers from the buffer (msb first).
3c0ef626 149 */
700318f3 150
151u_short
152buffer_get_short(Buffer *buffer)
153{
154 u_char buf[2];
680cee3b 155
700318f3 156 buffer_get(buffer, (char *) buf, 2);
157 return GET_16BIT(buf);
158}
159
3c0ef626 160u_int
161buffer_get_int(Buffer *buffer)
162{
163 u_char buf[4];
680cee3b 164
3c0ef626 165 buffer_get(buffer, (char *) buf, 4);
166 return GET_32BIT(buf);
167}
168
3c0ef626 169u_int64_t
170buffer_get_int64(Buffer *buffer)
171{
172 u_char buf[8];
680cee3b 173
3c0ef626 174 buffer_get(buffer, (char *) buf, 8);
175 return GET_64BIT(buf);
176}
3c0ef626 177
178/*
700318f3 179 * Stores integers in the buffer, msb first.
3c0ef626 180 */
700318f3 181void
182buffer_put_short(Buffer *buffer, u_short value)
183{
184 char buf[2];
680cee3b 185
700318f3 186 PUT_16BIT(buf, value);
187 buffer_append(buffer, buf, 2);
188}
189
3c0ef626 190void
191buffer_put_int(Buffer *buffer, u_int value)
192{
193 char buf[4];
680cee3b 194
3c0ef626 195 PUT_32BIT(buf, value);
196 buffer_append(buffer, buf, 4);
197}
198
3c0ef626 199void
200buffer_put_int64(Buffer *buffer, u_int64_t value)
201{
202 char buf[8];
680cee3b 203
3c0ef626 204 PUT_64BIT(buf, value);
205 buffer_append(buffer, buf, 8);
206}
3c0ef626 207
208/*
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 */
e9a17296 216void *
3c0ef626 217buffer_get_string(Buffer *buffer, u_int *length_ptr)
218{
e9a17296 219 u_char *value;
680cee3b 220 u_int len;
221
3c0ef626 222 /* Get the length. */
223 len = buffer_get_int(buffer);
224 if (len > 256 * 1024)
6a9b3198 225 fatal("buffer_get_string: bad string length %u", len);
3c0ef626 226 /* 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;
236}
237
238/*
239 * Stores and arbitrary binary string in the buffer.
240 */
241void
242buffer_put_string(Buffer *buffer, const void *buf, u_int len)
243{
244 buffer_put_int(buffer, len);
245 buffer_append(buffer, buf, len);
246}
247void
248buffer_put_cstring(Buffer *buffer, const char *s)
249{
700318f3 250 if (s == NULL)
251 fatal("buffer_put_cstring: s == NULL");
3c0ef626 252 buffer_put_string(buffer, s, strlen(s));
253}
254
255/*
256 * Returns a character from the buffer (0 - 255).
257 */
258int
259buffer_get_char(Buffer *buffer)
260{
261 char ch;
680cee3b 262
3c0ef626 263 buffer_get(buffer, &ch, 1);
264 return (u_char) ch;
265}
266
267/*
268 * Stores a character in the buffer.
269 */
270void
271buffer_put_char(Buffer *buffer, int value)
272{
273 char ch = value;
680cee3b 274
3c0ef626 275 buffer_append(buffer, &ch, 1);
276}
This page took 0.100361 seconds and 5 git commands to generate.