1c76d662a65b0e8680d52beb9a4cb80dfa4ea9cd
[openssl.git] / crypto / buffer / buffer.c
1 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
2  * All rights reserved.
3  *
4  * This package is an SSL implementation written
5  * by Eric Young (eay@cryptsoft.com).
6  * The implementation was written so as to conform with Netscapes SSL.
7  *
8  * This library is free for commercial and non-commercial use as long as
9  * the following conditions are aheared to.  The following conditions
10  * apply to all code found in this distribution, be it the RC4, RSA,
11  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
12  * included with this distribution is covered by the same copyright terms
13  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
14  *
15  * Copyright remains Eric Young's, and as such any Copyright notices in
16  * the code are not to be removed.
17  * If this package is used in a product, Eric Young should be given attribution
18  * as the author of the parts of the library used.
19  * This can be in the form of a textual message at program startup or
20  * in documentation (online or textual) provided with the package.
21  *
22  * Redistribution and use in source and binary forms, with or without
23  * modification, are permitted provided that the following conditions
24  * are met:
25  * 1. Redistributions of source code must retain the copyright
26  *    notice, this list of conditions and the following disclaimer.
27  * 2. Redistributions in binary form must reproduce the above copyright
28  *    notice, this list of conditions and the following disclaimer in the
29  *    documentation and/or other materials provided with the distribution.
30  * 3. All advertising materials mentioning features or use of this software
31  *    must display the following acknowledgement:
32  *    "This product includes cryptographic software written by
33  *     Eric Young (eay@cryptsoft.com)"
34  *    The word 'cryptographic' can be left out if the rouines from the library
35  *    being used are not cryptographic related :-).
36  * 4. If you include any Windows specific code (or a derivative thereof) from
37  *    the apps directory (application code) you must include an acknowledgement:
38  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
39  *
40  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50  * SUCH DAMAGE.
51  *
52  * The licence and distribution terms for any publically available version or
53  * derivative of this code cannot be changed.  i.e. this code cannot simply be
54  * copied and put under another distribution licence
55  * [including the GNU Public Licence.]
56  */
57
58 #include <stdio.h>
59 #include "internal/cryptlib.h"
60 #include <openssl/buffer.h>
61
62 /*
63  * LIMIT_BEFORE_EXPANSION is the maximum n such that (n+3)/3*4 < 2**31. That
64  * function is applied in several functions in this file and this limit
65  * ensures that the result fits in an int.
66  */
67 #define LIMIT_BEFORE_EXPANSION 0x5ffffffc
68
69 BUF_MEM *BUF_MEM_new_ex(unsigned long flags)
70 {
71     BUF_MEM *ret;
72
73     ret = BUF_MEM_new();
74     if (ret != NULL)
75         ret->flags = flags;
76     return (ret);
77 }
78
79 BUF_MEM *BUF_MEM_new(void)
80 {
81     BUF_MEM *ret;
82
83     ret = OPENSSL_zalloc(sizeof(*ret));
84     if (ret == NULL) {
85         BUFerr(BUF_F_BUF_MEM_NEW, ERR_R_MALLOC_FAILURE);
86         return (NULL);
87     }
88     return (ret);
89 }
90
91 void BUF_MEM_free(BUF_MEM *a)
92 {
93     if (a == NULL)
94         return;
95
96     if (a->data != NULL) {
97         memset(a->data, 0, (unsigned int)a->max);
98         if (a->flags & BUF_MEM_FLAG_SECURE)
99             OPENSSL_secure_free(a->data);
100         else
101             OPENSSL_clear_free(a->data, a->max);
102     }
103     OPENSSL_free(a);
104 }
105
106 /* Allocate a block of secure memory; copy over old data if there
107  * was any, and then free it. */
108 static char *sec_alloc_realloc(BUF_MEM *str, size_t len)
109 {
110     char *ret;
111
112     ret = OPENSSL_secure_malloc(len);
113     if (str->data != NULL) {
114         if (ret != NULL)
115             memcpy(ret, str->data, str->length);
116         OPENSSL_secure_free(str->data);
117     }
118     return (ret);
119 }
120
121 size_t BUF_MEM_grow(BUF_MEM *str, size_t len)
122 {
123     char *ret;
124     size_t n;
125
126     if (str->length >= len) {
127         str->length = len;
128         return (len);
129     }
130     if (str->max >= len) {
131         if (str->data != NULL)
132             memset(&str->data[str->length], 0, len - str->length);
133         str->length = len;
134         return (len);
135     }
136     /* This limit is sufficient to ensure (len+3)/3*4 < 2**31 */
137     if (len > LIMIT_BEFORE_EXPANSION) {
138         BUFerr(BUF_F_BUF_MEM_GROW, ERR_R_MALLOC_FAILURE);
139         return 0;
140     }
141     n = (len + 3) / 3 * 4;
142     if ((str->flags & BUF_MEM_FLAG_SECURE))
143         ret = sec_alloc_realloc(str, n);
144     else
145         ret = OPENSSL_realloc(str->data, n);
146     if (ret == NULL) {
147         BUFerr(BUF_F_BUF_MEM_GROW, ERR_R_MALLOC_FAILURE);
148         len = 0;
149     } else {
150         str->data = ret;
151         str->max = n;
152         memset(&str->data[str->length], 0, len - str->length);
153         str->length = len;
154     }
155     return (len);
156 }
157
158 size_t BUF_MEM_grow_clean(BUF_MEM *str, size_t len)
159 {
160     char *ret;
161     size_t n;
162
163     if (str->length >= len) {
164         if (str->data != NULL)
165             memset(&str->data[len], 0, str->length - len);
166         str->length = len;
167         return (len);
168     }
169     if (str->max >= len) {
170         memset(&str->data[str->length], 0, len - str->length);
171         str->length = len;
172         return (len);
173     }
174     /* This limit is sufficient to ensure (len+3)/3*4 < 2**31 */
175     if (len > LIMIT_BEFORE_EXPANSION) {
176         BUFerr(BUF_F_BUF_MEM_GROW_CLEAN, ERR_R_MALLOC_FAILURE);
177         return 0;
178     }
179     n = (len + 3) / 3 * 4;
180     if ((str->flags & BUF_MEM_FLAG_SECURE))
181         ret = sec_alloc_realloc(str, n);
182     else
183         ret = OPENSSL_clear_realloc(str->data, str->max, n);
184     if (ret == NULL) {
185         BUFerr(BUF_F_BUF_MEM_GROW_CLEAN, ERR_R_MALLOC_FAILURE);
186         len = 0;
187     } else {
188         str->data = ret;
189         str->max = n;
190         memset(&str->data[str->length], 0, len - str->length);
191         str->length = len;
192     }
193     return (len);
194 }
195
196 void BUF_reverse(unsigned char *out, const unsigned char *in, size_t size)
197 {
198     size_t i;
199     if (in) {
200         out += size - 1;
201         for (i = 0; i < size; i++)
202             *out-- = *in++;
203     } else {
204         unsigned char *q;
205         char c;
206         q = out + size - 1;
207         for (i = 0; i < size / 2; i++) {
208             c = *q;
209             *q-- = *out;
210             *out++ = c;
211         }
212     }
213 }