2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
5 * This package is an SSL implementation written
6 * by Eric Young (eay@cryptsoft.com).
7 * The implementation was written so as to conform with Netscapes SSL.
9 * This library is free for commercial and non-commercial use as long as
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
12 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
13 * included with this distribution is covered by the same copyright terms
14 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
16 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * the code are not to be removed.
18 * If this package is used in a product, Eric Young should be given attribution
19 * as the author of the parts of the library used.
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
26 * 1. Redistributions of source code must retain the copyright
27 * notice, this list of conditions and the following disclaimer.
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
30 * documentation and/or other materials provided with the distribution.
31 * 3. All advertising materials mentioning features or use of this software
32 * must display the following acknowledgement:
33 * "This product includes cryptographic software written by
34 * Eric Young (eay@cryptsoft.com)"
35 * The word 'cryptographic' can be left out if the rouines from the library
36 * being used are not cryptographic related :-).
37 * 4. If you include any Windows specific code (or a derivative thereof) from
38 * the apps directory (application code) you must include an acknowledgement:
39 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
41 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
53 * The licence and distribution terms for any publically available version or
54 * derivative of this code cannot be changed. i.e. this code cannot simply be
55 * copied and put under another distribution licence
56 * [including the GNU Public Licence.]
61 #include <openssl/crypto.h>
62 #include "internal/cryptlib.h"
64 static int allow_customize = 1; /* we provide flexible functions for */
65 static int allow_customize_debug = 1; /* exchanging memory-related functions
66 * at run-time, but this must be done
67 * before any blocks are actually
68 * allocated; or we'll run into huge
69 * problems when malloc/free pairs
73 * the following pointers may be changed as long as 'allow_customize' is set
76 static void *(*malloc_func) (size_t) = malloc;
77 static void *default_malloc_ex(size_t num, const char *file, int line)
79 return malloc_func(num);
82 static void *(*malloc_ex_func) (size_t, const char *file, int line)
85 static void *(*realloc_func) (void *, size_t) = realloc;
86 static void *default_realloc_ex(void *str, size_t num,
87 const char *file, int line)
89 return realloc_func(str, num);
92 static void *(*realloc_ex_func) (void *, size_t, const char *file, int line)
95 static void (*free_func) (void *) = free;
97 static void *(*malloc_secure_func)(size_t) = malloc;
98 static void *default_malloc_secure_ex(size_t num, const char *file, int line)
100 return malloc_secure_func(num);
102 static void *(*malloc_secure_ex_func)(size_t, const char *file, int line)
103 = default_malloc_secure_ex;
104 static void (*free_secure_func)(void *) = free;
106 /* may be changed as long as 'allow_customize_debug' is set */
107 /* XXX use correct function pointer types */
109 /* use default functions from mem_dbg.c */
110 static void (*malloc_debug_func) (void *, int, const char *, int, int)
112 static void (*realloc_debug_func) (void *, void *, int, const char *, int,
114 = CRYPTO_dbg_realloc;
115 static void (*free_debug_func) (void *, int) = CRYPTO_dbg_free;
116 static void (*set_debug_options_func) (long) = CRYPTO_dbg_set_options;
117 static long (*get_debug_options_func) (void) = CRYPTO_dbg_get_options;
120 * applications can use CRYPTO_malloc_debug_init() to select above case at
123 static void (*malloc_debug_func) (void *, int, const char *, int, int) = NULL;
124 static void (*realloc_debug_func) (void *, void *, int, const char *, int,
127 static void (*free_debug_func) (void *, int) = NULL;
128 static void (*set_debug_options_func) (long) = NULL;
129 static long (*get_debug_options_func) (void) = NULL;
132 int CRYPTO_set_mem_functions(void *(*m) (size_t), void *(*r) (void *, size_t),
135 /* Dummy call just to ensure OPENSSL_init() gets linked in */
137 if (!allow_customize)
139 if ((m == 0) || (r == 0) || (f == 0))
142 malloc_ex_func = default_malloc_ex;
144 realloc_ex_func = default_realloc_ex;
146 /* If user wants to intercept the secure or locked functions, do it
147 * after the basic functions. */
148 malloc_secure_func = m;
149 malloc_secure_ex_func = default_malloc_secure_ex;
150 free_secure_func = f;
154 int CRYPTO_set_mem_ex_functions(void *(*m) (size_t, const char *, int),
155 void *(*r) (void *, size_t, const char *,
156 int), void (*f) (void *))
158 if (!allow_customize)
160 if ((m == 0) || (r == 0) || (f == 0))
167 malloc_secure_func = 0;
168 malloc_secure_ex_func = m;
169 free_secure_func = f;
173 int CRYPTO_set_secure_mem_functions(void *(*m)(size_t), void (*f)(void *))
175 /* Dummy call just to ensure OPENSSL_init() gets linked in */
177 if (!allow_customize)
179 if ((m == 0) || (f == 0))
181 malloc_secure_func = m;
182 malloc_secure_ex_func = default_malloc_secure_ex;
183 free_secure_func = f;
187 int CRYPTO_set_secure_mem_ex_functions(void *(*m)(size_t, const char *, int),
190 if (!allow_customize)
192 if ((m == NULL) || (f == NULL))
194 malloc_secure_func = 0;
195 malloc_secure_ex_func = m;
196 free_secure_func = f;
200 int CRYPTO_set_mem_debug_functions(void (*m)
201 (void *, int, const char *, int, int),
202 void (*r) (void *, void *, int,
203 const char *, int, int),
204 void (*f) (void *, int), void (*so) (long),
207 if (!allow_customize_debug)
209 malloc_debug_func = m;
210 realloc_debug_func = r;
212 set_debug_options_func = so;
213 get_debug_options_func = go;
217 void CRYPTO_get_mem_functions(void *(**m) (size_t),
218 void *(**r) (void *, size_t),
222 *m = (malloc_ex_func == default_malloc_ex) ? malloc_func : 0;
224 *r = (realloc_ex_func == default_realloc_ex) ? realloc_func : 0;
229 void CRYPTO_get_mem_ex_functions(void *(**m) (size_t, const char *, int),
230 void *(**r) (void *, size_t, const char *,
231 int), void (**f) (void *))
234 *m = (malloc_ex_func != default_malloc_ex) ? malloc_ex_func : 0;
236 *r = (realloc_ex_func != default_realloc_ex) ? realloc_ex_func : 0;
241 void CRYPTO_get_secure_mem_functions(void *(**m)(size_t), void (**f)(void *))
244 *m = (malloc_secure_ex_func == default_malloc_secure_ex) ?
245 malloc_secure_func : 0;
250 void CRYPTO_get_secure_mem_ex_functions(void *(**m)(size_t,const char *,int),
254 *m = (malloc_secure_ex_func != default_malloc_secure_ex) ?
255 malloc_secure_ex_func : 0;
260 void CRYPTO_get_mem_debug_functions(void (**m)
261 (void *, int, const char *, int, int),
262 void (**r) (void *, void *, int,
263 const char *, int, int),
264 void (**f) (void *, int),
265 void (**so) (long), long (**go) (void))
268 *m = malloc_debug_func;
270 *r = realloc_debug_func;
272 *f = free_debug_func;
274 *so = set_debug_options_func;
276 *go = get_debug_options_func;
279 void *CRYPTO_malloc(int num, const char *file, int line)
288 if (malloc_debug_func != NULL) {
289 if (allow_customize_debug)
290 allow_customize_debug = 0;
291 malloc_debug_func(NULL, num, file, line, 0);
293 ret = malloc_ex_func(num, file, line);
294 #ifdef LEVITTE_DEBUG_MEM
295 fprintf(stderr, "LEVITTE_DEBUG_MEM: > 0x%p (%d)\n", ret, num);
297 if (malloc_debug_func != NULL)
298 malloc_debug_func(ret, num, file, line, 1);
300 #ifndef OPENSSL_CPUID_OBJ
302 * Create a dependency on the value of 'cleanse_ctr' so our memory
303 * sanitisation function can't be optimised out. NB: We only do this for
304 * >2Kb so the overhead doesn't bother us.
306 if (ret && (num > 2048)) {
307 extern unsigned char cleanse_ctr;
308 ((unsigned char *)ret)[0] = cleanse_ctr;
315 void *CRYPTO_zalloc(int num, const char *file, int line)
317 void *ret = CRYPTO_malloc(num, file, line);
324 char *CRYPTO_strdup(const char *str, const char *file, int line)
326 char *ret = CRYPTO_malloc(strlen(str) + 1, file, line);
333 void *CRYPTO_realloc(void *str, int num, const char *file, int line)
338 return CRYPTO_malloc(num, file, line);
343 if (realloc_debug_func != NULL)
344 realloc_debug_func(str, NULL, num, file, line, 0);
345 ret = realloc_ex_func(str, num, file, line);
346 #ifdef LEVITTE_DEBUG_MEM
347 fprintf(stderr, "LEVITTE_DEBUG_MEM: | 0x%p -> 0x%p (%d)\n", str,
350 if (realloc_debug_func != NULL)
351 realloc_debug_func(str, ret, num, file, line, 1);
356 void *CRYPTO_realloc_clean(void *str, int old_len, int num, const char *file,
362 return CRYPTO_malloc(num, file, line);
368 * We don't support shrinking the buffer. Note the memcpy that copies
369 * |old_len| bytes to the new buffer, below.
374 if (realloc_debug_func != NULL)
375 realloc_debug_func(str, NULL, num, file, line, 0);
376 ret = malloc_ex_func(num, file, line);
378 memcpy(ret, str, old_len);
379 OPENSSL_clear_free(str, old_len);
381 #ifdef LEVITTE_DEBUG_MEM
383 "LEVITTE_DEBUG_MEM: | 0x%p -> 0x%p (%d)\n",
386 if (realloc_debug_func != NULL)
387 realloc_debug_func(str, ret, num, file, line, 1);
392 void CRYPTO_free(void *str)
394 if (free_debug_func != NULL)
395 free_debug_func(str, 0);
396 #ifdef LEVITTE_DEBUG_MEM
397 fprintf(stderr, "LEVITTE_DEBUG_MEM: < 0x%p\n", str);
400 if (free_debug_func != NULL)
401 free_debug_func(NULL, 1);
404 void CRYPTO_clear_free(void *str, size_t num)
409 OPENSSL_cleanse(str, num);
413 void *CRYPTO_remalloc(void *a, int num, const char *file, int line)
416 a = OPENSSL_malloc(num);
420 void CRYPTO_set_mem_debug_options(long bits)
422 if (set_debug_options_func != NULL)
423 set_debug_options_func(bits);
426 long CRYPTO_get_mem_debug_options(void)
428 if (get_debug_options_func != NULL)
429 return get_debug_options_func();