46f00176ab077a7bc9b8b460fa16bfd8ff16a59b
[openssl.git] / crypto / mem.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 <stdlib.h>
60 #include <limits.h>
61 #include <openssl/crypto.h>
62 #include "internal/cryptlib.h"
63
64 /*
65  * the following pointers may be changed as long as 'allow_customize' is set
66  */
67 static int allow_customize = 1;
68
69 static void *(*malloc_impl)(size_t, const char *, int)
70     = CRYPTO_malloc;
71 static void *(*realloc_impl)(void *, size_t, const char *, int)
72     = CRYPTO_realloc;
73 static void (*free_impl)(void *, const char *, int)
74     = CRYPTO_free;
75
76 #ifndef OPENSSL_NO_CRYPTO_MDEBUG
77 static int call_malloc_debug = 1;
78 #else
79 static int call_malloc_debug = 0;
80 #endif
81
82 int CRYPTO_set_mem_functions(
83         void *(*m)(size_t, const char *, int),
84         void *(*r)(void *, size_t, const char *, int),
85         void (*f)(void *, const char *, int))
86 {
87     if (!allow_customize)
88         return 0;
89     if (m)
90         malloc_impl = m;
91     if (r)
92         realloc_impl = r;
93     if (f)
94         free_impl = f;
95     return 1;
96 }
97
98 int CRYPTO_set_mem_debug(int flag)
99 {
100     if (!allow_customize)
101         return 0;
102     call_malloc_debug = flag;
103     return 1;
104 }
105
106 void CRYPTO_get_mem_functions(
107         void *(**m)(size_t, const char *, int),
108         void *(**r)(void *, size_t, const char *, int),
109         void (**f)(void *, const char *, int))
110 {
111     if (m != NULL)
112         *m = malloc_impl;
113     if (r != NULL)
114         *r = realloc_impl;
115     if (f != NULL)
116         *f = free_impl;
117 }
118
119 void *CRYPTO_malloc(size_t num, const char *file, int line)
120 {
121     void *ret = NULL;
122
123     if (malloc_impl != NULL && malloc_impl != CRYPTO_malloc)
124         return malloc_impl(num, file, line);
125
126     if (num <= 0)
127         return NULL;
128
129     allow_customize = 0;
130 #ifndef OPENSSL_NO_CRYPTO_MDEBUG
131     if (call_malloc_debug) {
132         CRYPTO_mem_debug_malloc(NULL, num, 0, file, line);
133         ret = malloc(num);
134         CRYPTO_mem_debug_malloc(ret, num, 1, file, line);
135     } else {
136         ret = malloc(num);
137     }
138 #else
139     (void)file;
140     (void)line;
141     ret = malloc(num);
142 #endif
143
144 #ifndef OPENSSL_CPUID_OBJ
145     /*
146      * Create a dependency on the value of 'cleanse_ctr' so our memory
147      * sanitisation function can't be optimised out. NB: We only do this for
148      * >2Kb so the overhead doesn't bother us.
149      */
150     if (ret && (num > 2048)) {
151         extern unsigned char cleanse_ctr;
152         ((unsigned char *)ret)[0] = cleanse_ctr;
153     }
154 #endif
155
156     return ret;
157 }
158
159 void *CRYPTO_zalloc(size_t num, const char *file, int line)
160 {
161     void *ret = CRYPTO_malloc(num, file, line);
162
163     if (ret != NULL)
164         memset(ret, 0, num);
165     return ret;
166 }
167
168 void *CRYPTO_realloc(void *str, size_t num, const char *file, int line)
169 {
170     if (realloc_impl != NULL && realloc_impl != &CRYPTO_realloc)
171         return realloc_impl(str, num, file, line);
172
173     if (str == NULL)
174         return CRYPTO_malloc(num, file, line);
175
176     if (num == 0) {
177         CRYPTO_free(str, file, line);
178         return NULL;
179     }
180
181     allow_customize = 0;
182 #ifndef OPENSSL_NO_CRYPTO_MDEBUG
183     if (call_malloc_debug) {
184         void *ret;
185         CRYPTO_mem_debug_realloc(str, NULL, num, 0, file, line);
186         ret = realloc(str, num);
187         CRYPTO_mem_debug_realloc(str, ret, num, 1, file, line);
188         return ret;
189     }
190 #else
191     (void)file;
192     (void)line;
193 #endif
194     return realloc(str, num);
195
196 }
197
198 void *CRYPTO_clear_realloc(void *str, size_t old_len, size_t num,
199                            const char *file, int line)
200 {
201     void *ret = NULL;
202
203     if (str == NULL)
204         return CRYPTO_malloc(num, file, line);
205
206     if (num == 0) {
207         CRYPTO_clear_free(str, old_len, file, line);
208         return NULL;
209     }
210
211     /* Can't shrink the buffer since memcpy below copies |old_len| bytes. */
212     if (num < old_len) {
213         memset((char*)str + num, 0, old_len - num);
214         return str;
215     }
216
217     ret = CRYPTO_malloc(num, file, line);
218
219     if (ret)
220         memcpy(ret, str, old_len);
221     CRYPTO_clear_free(str, old_len, file, line);
222     return ret;
223 }
224
225 void CRYPTO_free(void *str, const char *file, int line)
226 {
227     if (free_impl != NULL && free_impl != &CRYPTO_free) {
228         free_impl(str, file, line);
229         return;
230     }
231
232 #ifndef OPENSSL_NO_CRYPTO_MDEBUG
233     if (call_malloc_debug) {
234         CRYPTO_mem_debug_free(str, 0, file, line);
235         free(str);
236         CRYPTO_mem_debug_free(str, 1, file, line);
237     } else {
238         free(str);
239     }
240 #else
241     free(str);
242 #endif
243 }
244
245 void CRYPTO_clear_free(void *str, size_t num, const char *file, int line)
246 {
247     if (str == NULL)
248         return;
249     if (num)
250         OPENSSL_cleanse(str, num);
251     CRYPTO_free(str, file, line);
252 }