Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1 | /* crypto/mem.c */ |
Ralf S. Engelschall | 58964a4 | 1998-12-21 10:56:39 +0000 | [diff] [blame] | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 3 | * All rights reserved. |
| 4 | * |
| 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. |
| 8 | * |
| 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). |
| 15 | * |
| 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. |
| 22 | * |
| 23 | * Redistribution and use in source and binary forms, with or without |
| 24 | * modification, are permitted provided that the following conditions |
| 25 | * are met: |
| 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)" |
| 40 | * |
| 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 |
| 51 | * SUCH DAMAGE. |
| 52 | * |
| 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.] |
| 57 | */ |
| 58 | |
| 59 | #include <stdio.h> |
| 60 | #include <stdlib.h> |
Bodo Möller | 458cddc | 1999-07-19 09:25:35 +0000 | [diff] [blame] | 61 | #include <openssl/crypto.h> |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 62 | #include "cryptlib.h" |
| 63 | |
Richard Levitte | 1f575f1 | 1999-11-12 02:51:24 +0000 | [diff] [blame] | 64 | |
Bodo Möller | 0cd08cc | 1999-12-18 05:22:50 +0000 | [diff] [blame] | 65 | static int allow_customize = 1; /* we provide flexible functions for */ |
| 66 | static int allow_customize_debug = 1;/* exchanging memory-related functions at |
| 67 | * run-time, but this must be done |
| 68 | * before any blocks are actually |
| 69 | * allocated; or we'll run into huge |
| 70 | * problems when malloc/free pairs |
| 71 | * don't match etc. */ |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 72 | |
Bodo Möller | a5435e8 | 2001-01-10 18:09:57 +0000 | [diff] [blame] | 73 | |
| 74 | |
| 75 | /* the following pointers may be changed as long as 'allow_customize' is set */ |
| 76 | |
Bodo Möller | 0cd08cc | 1999-12-18 05:22:50 +0000 | [diff] [blame] | 77 | static void *(*malloc_func)(size_t) = malloc; |
Bodo Möller | a5435e8 | 2001-01-10 18:09:57 +0000 | [diff] [blame] | 78 | static void *default_malloc_ex(size_t num, const char *file, int line) |
| 79 | { return malloc_func(num); } |
| 80 | static void *(*malloc_ex_func)(size_t, const char *file, int line) |
| 81 | = default_malloc_ex; |
| 82 | |
Bodo Möller | 0cd08cc | 1999-12-18 05:22:50 +0000 | [diff] [blame] | 83 | static void *(*realloc_func)(void *, size_t)= realloc; |
Bodo Möller | a5435e8 | 2001-01-10 18:09:57 +0000 | [diff] [blame] | 84 | static void *default_realloc_ex(void *str, size_t num, |
| 85 | const char *file, int line) |
| 86 | { return realloc_func(str,num); } |
| 87 | static void *(*realloc_ex_func)(void *, size_t, const char *file, int line) |
| 88 | = default_realloc_ex; |
| 89 | |
Bodo Möller | 0cd08cc | 1999-12-18 05:22:50 +0000 | [diff] [blame] | 90 | static void (*free_func)(void *) = free; |
| 91 | |
Bodo Möller | a5435e8 | 2001-01-10 18:09:57 +0000 | [diff] [blame] | 92 | static void *(*malloc_locked_func)(size_t) = malloc; |
| 93 | static void *default_malloc_locked_ex(size_t num, const char *file, int line) |
| 94 | { return malloc_locked_func(num); } |
Richard Levitte | 65a22e8 | 2001-01-10 13:14:58 +0000 | [diff] [blame] | 95 | static void *(*malloc_locked_ex_func)(size_t, const char *file, int line) |
Bodo Möller | a5435e8 | 2001-01-10 18:09:57 +0000 | [diff] [blame] | 96 | = default_malloc_locked_ex; |
Richard Levitte | 65a22e8 | 2001-01-10 13:14:58 +0000 | [diff] [blame] | 97 | |
Bodo Möller | a5435e8 | 2001-01-10 18:09:57 +0000 | [diff] [blame] | 98 | static void (*free_locked_func)(void *) = free; |
| 99 | |
| 100 | |
| 101 | |
| 102 | /* may be changed as long as 'allow_customize_debug' is set */ |
Bodo Möller | 0cd08cc | 1999-12-18 05:22:50 +0000 | [diff] [blame] | 103 | /* XXX use correct function pointer types */ |
Dr. Stephen Henson | 364ce53 | 2011-04-12 13:01:40 +0000 | [diff] [blame] | 104 | #if defined(CRYPTO_MDEBUG) |
Richard Levitte | 6596268 | 2000-05-02 13:36:50 +0000 | [diff] [blame] | 105 | /* use default functions from mem_dbg.c */ |
Geoff Thorpe | 6343829 | 2008-11-12 03:58:08 +0000 | [diff] [blame] | 106 | static void (*malloc_debug_func)(void *,int,const char *,int,int) |
Richard Levitte | 6596268 | 2000-05-02 13:36:50 +0000 | [diff] [blame] | 107 | = CRYPTO_dbg_malloc; |
Geoff Thorpe | 6343829 | 2008-11-12 03:58:08 +0000 | [diff] [blame] | 108 | static void (*realloc_debug_func)(void *,void *,int,const char *,int,int) |
Richard Levitte | 6596268 | 2000-05-02 13:36:50 +0000 | [diff] [blame] | 109 | = CRYPTO_dbg_realloc; |
| 110 | static void (*free_debug_func)(void *,int) = CRYPTO_dbg_free; |
| 111 | static void (*set_debug_options_func)(long) = CRYPTO_dbg_set_options; |
| 112 | static long (*get_debug_options_func)(void) = CRYPTO_dbg_get_options; |
Richard Levitte | f3a2a04 | 1999-12-18 02:34:37 +0000 | [diff] [blame] | 113 | #else |
Richard Levitte | 6596268 | 2000-05-02 13:36:50 +0000 | [diff] [blame] | 114 | /* applications can use CRYPTO_malloc_debug_init() to select above case |
| 115 | * at run-time */ |
Geoff Thorpe | 6343829 | 2008-11-12 03:58:08 +0000 | [diff] [blame] | 116 | static void (*malloc_debug_func)(void *,int,const char *,int,int) = NULL; |
| 117 | static void (*realloc_debug_func)(void *,void *,int,const char *,int,int) |
Richard Levitte | 6596268 | 2000-05-02 13:36:50 +0000 | [diff] [blame] | 118 | = NULL; |
| 119 | static void (*free_debug_func)(void *,int) = NULL; |
| 120 | static void (*set_debug_options_func)(long) = NULL; |
| 121 | static long (*get_debug_options_func)(void) = NULL; |
Richard Levitte | f3a2a04 | 1999-12-18 02:34:37 +0000 | [diff] [blame] | 122 | #endif |
Richard Levitte | 9ac42ed | 1999-12-17 12:56:24 +0000 | [diff] [blame] | 123 | |
Dr. Stephen Henson | c4acfb1 | 2011-04-01 15:46:03 +0000 | [diff] [blame] | 124 | extern void OPENSSL_init(void); |
Bodo Möller | 0cd08cc | 1999-12-18 05:22:50 +0000 | [diff] [blame] | 125 | |
| 126 | int CRYPTO_set_mem_functions(void *(*m)(size_t), void *(*r)(void *, size_t), |
| 127 | void (*f)(void *)) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 128 | { |
Dr. Stephen Henson | c4acfb1 | 2011-04-01 15:46:03 +0000 | [diff] [blame] | 129 | /* Dummy call just to ensure OPENSSL_init() gets linked in */ |
| 130 | OPENSSL_init(); |
Bodo Möller | 0cd08cc | 1999-12-18 05:22:50 +0000 | [diff] [blame] | 131 | if (!allow_customize) |
| 132 | return 0; |
Bodo Möller | a5435e8 | 2001-01-10 18:09:57 +0000 | [diff] [blame] | 133 | if ((m == 0) || (r == 0) || (f == 0)) |
Bodo Möller | 0cd08cc | 1999-12-18 05:22:50 +0000 | [diff] [blame] | 134 | return 0; |
Bodo Möller | a5435e8 | 2001-01-10 18:09:57 +0000 | [diff] [blame] | 135 | malloc_func=m; malloc_ex_func=default_malloc_ex; |
| 136 | realloc_func=r; realloc_ex_func=default_realloc_ex; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 137 | free_func=f; |
Bodo Möller | a5435e8 | 2001-01-10 18:09:57 +0000 | [diff] [blame] | 138 | malloc_locked_func=m; malloc_locked_ex_func=default_malloc_locked_ex; |
Ralf S. Engelschall | dfeab06 | 1998-12-21 11:00:56 +0000 | [diff] [blame] | 139 | free_locked_func=f; |
Bodo Möller | 0cd08cc | 1999-12-18 05:22:50 +0000 | [diff] [blame] | 140 | return 1; |
Ralf S. Engelschall | dfeab06 | 1998-12-21 11:00:56 +0000 | [diff] [blame] | 141 | } |
| 142 | |
Richard Levitte | 65a22e8 | 2001-01-10 13:14:58 +0000 | [diff] [blame] | 143 | int CRYPTO_set_mem_ex_functions( |
| 144 | void *(*m)(size_t,const char *,int), |
| 145 | void *(*r)(void *, size_t,const char *,int), |
| 146 | void (*f)(void *)) |
| 147 | { |
| 148 | if (!allow_customize) |
| 149 | return 0; |
Bodo Möller | a5435e8 | 2001-01-10 18:09:57 +0000 | [diff] [blame] | 150 | if ((m == 0) || (r == 0) || (f == 0)) |
| 151 | return 0; |
| 152 | malloc_func=0; malloc_ex_func=m; |
| 153 | realloc_func=0; realloc_ex_func=r; |
| 154 | free_func=f; |
| 155 | malloc_locked_func=0; malloc_locked_ex_func=m; |
| 156 | free_locked_func=f; |
Richard Levitte | 65a22e8 | 2001-01-10 13:14:58 +0000 | [diff] [blame] | 157 | return 1; |
| 158 | } |
| 159 | |
Bodo Möller | 0cd08cc | 1999-12-18 05:22:50 +0000 | [diff] [blame] | 160 | int CRYPTO_set_locked_mem_functions(void *(*m)(size_t), void (*f)(void *)) |
Richard Levitte | 9ac42ed | 1999-12-17 12:56:24 +0000 | [diff] [blame] | 161 | { |
Bodo Möller | 0cd08cc | 1999-12-18 05:22:50 +0000 | [diff] [blame] | 162 | if (!allow_customize) |
| 163 | return 0; |
| 164 | if ((m == NULL) || (f == NULL)) |
| 165 | return 0; |
Bodo Möller | a5435e8 | 2001-01-10 18:09:57 +0000 | [diff] [blame] | 166 | malloc_locked_func=m; malloc_locked_ex_func=default_malloc_locked_ex; |
Bodo Möller | 0cd08cc | 1999-12-18 05:22:50 +0000 | [diff] [blame] | 167 | free_locked_func=f; |
| 168 | return 1; |
| 169 | } |
| 170 | |
Richard Levitte | 65a22e8 | 2001-01-10 13:14:58 +0000 | [diff] [blame] | 171 | int CRYPTO_set_locked_mem_ex_functions( |
| 172 | void *(*m)(size_t,const char *,int), |
| 173 | void (*f)(void *)) |
| 174 | { |
| 175 | if (!allow_customize) |
| 176 | return 0; |
Bodo Möller | a5435e8 | 2001-01-10 18:09:57 +0000 | [diff] [blame] | 177 | if ((m == NULL) || (f == NULL)) |
| 178 | return 0; |
| 179 | malloc_locked_func=0; malloc_locked_ex_func=m; |
| 180 | free_func=f; |
Richard Levitte | 65a22e8 | 2001-01-10 13:14:58 +0000 | [diff] [blame] | 181 | return 1; |
| 182 | } |
| 183 | |
Geoff Thorpe | 6343829 | 2008-11-12 03:58:08 +0000 | [diff] [blame] | 184 | int CRYPTO_set_mem_debug_functions(void (*m)(void *,int,const char *,int,int), |
| 185 | void (*r)(void *,void *,int,const char *,int,int), |
Richard Levitte | 6596268 | 2000-05-02 13:36:50 +0000 | [diff] [blame] | 186 | void (*f)(void *,int), |
| 187 | void (*so)(long), |
| 188 | long (*go)(void)) |
Bodo Möller | 0cd08cc | 1999-12-18 05:22:50 +0000 | [diff] [blame] | 189 | { |
| 190 | if (!allow_customize_debug) |
| 191 | return 0; |
Richard Levitte | 9ac42ed | 1999-12-17 12:56:24 +0000 | [diff] [blame] | 192 | malloc_debug_func=m; |
| 193 | realloc_debug_func=r; |
| 194 | free_debug_func=f; |
| 195 | set_debug_options_func=so; |
| 196 | get_debug_options_func=go; |
Bodo Möller | 0cd08cc | 1999-12-18 05:22:50 +0000 | [diff] [blame] | 197 | return 1; |
Richard Levitte | 9ac42ed | 1999-12-17 12:56:24 +0000 | [diff] [blame] | 198 | } |
| 199 | |
Bodo Möller | a5435e8 | 2001-01-10 18:09:57 +0000 | [diff] [blame] | 200 | |
Bodo Möller | 0cd08cc | 1999-12-18 05:22:50 +0000 | [diff] [blame] | 201 | void CRYPTO_get_mem_functions(void *(**m)(size_t), void *(**r)(void *, size_t), |
| 202 | void (**f)(void *)) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 203 | { |
Bodo Möller | b93642c | 2001-01-10 19:26:34 +0000 | [diff] [blame] | 204 | if (m != NULL) *m = (malloc_ex_func == default_malloc_ex) ? |
| 205 | malloc_func : 0; |
| 206 | if (r != NULL) *r = (realloc_ex_func == default_realloc_ex) ? |
| 207 | realloc_func : 0; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 208 | if (f != NULL) *f=free_func; |
| 209 | } |
| 210 | |
Richard Levitte | 65a22e8 | 2001-01-10 13:14:58 +0000 | [diff] [blame] | 211 | void CRYPTO_get_mem_ex_functions( |
| 212 | void *(**m)(size_t,const char *,int), |
| 213 | void *(**r)(void *, size_t,const char *,int), |
| 214 | void (**f)(void *)) |
| 215 | { |
Bodo Möller | a5435e8 | 2001-01-10 18:09:57 +0000 | [diff] [blame] | 216 | if (m != NULL) *m = (malloc_ex_func != default_malloc_ex) ? |
| 217 | malloc_ex_func : 0; |
| 218 | if (r != NULL) *r = (realloc_ex_func != default_realloc_ex) ? |
| 219 | realloc_ex_func : 0; |
| 220 | if (f != NULL) *f=free_func; |
Richard Levitte | 65a22e8 | 2001-01-10 13:14:58 +0000 | [diff] [blame] | 221 | } |
| 222 | |
Bodo Möller | 0cd08cc | 1999-12-18 05:22:50 +0000 | [diff] [blame] | 223 | void CRYPTO_get_locked_mem_functions(void *(**m)(size_t), void (**f)(void *)) |
| 224 | { |
Bodo Möller | b93642c | 2001-01-10 19:26:34 +0000 | [diff] [blame] | 225 | if (m != NULL) *m = (malloc_locked_ex_func == default_malloc_locked_ex) ? |
| 226 | malloc_locked_func : 0; |
Bodo Möller | 0cd08cc | 1999-12-18 05:22:50 +0000 | [diff] [blame] | 227 | if (f != NULL) *f=free_locked_func; |
| 228 | } |
| 229 | |
Richard Levitte | 65a22e8 | 2001-01-10 13:14:58 +0000 | [diff] [blame] | 230 | void CRYPTO_get_locked_mem_ex_functions( |
| 231 | void *(**m)(size_t,const char *,int), |
| 232 | void (**f)(void *)) |
| 233 | { |
Bodo Möller | a5435e8 | 2001-01-10 18:09:57 +0000 | [diff] [blame] | 234 | if (m != NULL) *m = (malloc_locked_ex_func != default_malloc_locked_ex) ? |
| 235 | malloc_locked_ex_func : 0; |
| 236 | if (f != NULL) *f=free_locked_func; |
Richard Levitte | 65a22e8 | 2001-01-10 13:14:58 +0000 | [diff] [blame] | 237 | } |
| 238 | |
Geoff Thorpe | 6343829 | 2008-11-12 03:58:08 +0000 | [diff] [blame] | 239 | void CRYPTO_get_mem_debug_functions(void (**m)(void *,int,const char *,int,int), |
| 240 | void (**r)(void *,void *,int,const char *,int,int), |
Richard Levitte | 6596268 | 2000-05-02 13:36:50 +0000 | [diff] [blame] | 241 | void (**f)(void *,int), |
| 242 | void (**so)(long), |
| 243 | long (**go)(void)) |
Richard Levitte | 9ac42ed | 1999-12-17 12:56:24 +0000 | [diff] [blame] | 244 | { |
| 245 | if (m != NULL) *m=malloc_debug_func; |
| 246 | if (r != NULL) *r=realloc_debug_func; |
| 247 | if (f != NULL) *f=free_debug_func; |
| 248 | if (so != NULL) *so=set_debug_options_func; |
| 249 | if (go != NULL) *go=get_debug_options_func; |
| 250 | } |
| 251 | |
Ralf S. Engelschall | dfeab06 | 1998-12-21 11:00:56 +0000 | [diff] [blame] | 252 | |
Geoff Thorpe | 6343829 | 2008-11-12 03:58:08 +0000 | [diff] [blame] | 253 | void *CRYPTO_malloc_locked(int num, const char *file, int line) |
Ralf S. Engelschall | dfeab06 | 1998-12-21 11:00:56 +0000 | [diff] [blame] | 254 | { |
Richard Levitte | 6596268 | 2000-05-02 13:36:50 +0000 | [diff] [blame] | 255 | void *ret = NULL; |
Richard Levitte | 9ac42ed | 1999-12-17 12:56:24 +0000 | [diff] [blame] | 256 | |
Richard Levitte | 6781efb | 2003-12-01 12:06:15 +0000 | [diff] [blame] | 257 | if (num <= 0) return NULL; |
Richard Levitte | d5234c7 | 2003-02-19 11:54:42 +0000 | [diff] [blame] | 258 | |
Bodo Möller | 0cd08cc | 1999-12-18 05:22:50 +0000 | [diff] [blame] | 259 | allow_customize = 0; |
Richard Levitte | f3a2a04 | 1999-12-18 02:34:37 +0000 | [diff] [blame] | 260 | if (malloc_debug_func != NULL) |
Bodo Möller | 0cd08cc | 1999-12-18 05:22:50 +0000 | [diff] [blame] | 261 | { |
| 262 | allow_customize_debug = 0; |
Richard Levitte | f3a2a04 | 1999-12-18 02:34:37 +0000 | [diff] [blame] | 263 | malloc_debug_func(NULL, num, file, line, 0); |
Bodo Möller | 0cd08cc | 1999-12-18 05:22:50 +0000 | [diff] [blame] | 264 | } |
Richard Levitte | 65a22e8 | 2001-01-10 13:14:58 +0000 | [diff] [blame] | 265 | ret = malloc_locked_ex_func(num,file,line); |
Richard Levitte | 8d28d5f | 2000-12-13 17:15:03 +0000 | [diff] [blame] | 266 | #ifdef LEVITTE_DEBUG_MEM |
| 267 | fprintf(stderr, "LEVITTE_DEBUG_MEM: > 0x%p (%d)\n", ret, num); |
Richard Levitte | 9ac42ed | 1999-12-17 12:56:24 +0000 | [diff] [blame] | 268 | #endif |
Richard Levitte | f3a2a04 | 1999-12-18 02:34:37 +0000 | [diff] [blame] | 269 | if (malloc_debug_func != NULL) |
| 270 | malloc_debug_func(ret, num, file, line, 1); |
Richard Levitte | 9ac42ed | 1999-12-17 12:56:24 +0000 | [diff] [blame] | 271 | |
Andy Polyakov | b2dba9b | 2007-05-14 21:35:25 +0000 | [diff] [blame] | 272 | #ifndef OPENSSL_CPUID_OBJ |
Richard Levitte | df29cc8 | 2002-11-27 12:24:05 +0000 | [diff] [blame] | 273 | /* Create a dependency on the value of 'cleanse_ctr' so our memory |
| 274 | * sanitisation function can't be optimised out. NB: We only do |
| 275 | * this for >2Kb so the overhead doesn't bother us. */ |
| 276 | if(ret && (num > 2048)) |
Andy Polyakov | b2dba9b | 2007-05-14 21:35:25 +0000 | [diff] [blame] | 277 | { extern unsigned char cleanse_ctr; |
Richard Levitte | df29cc8 | 2002-11-27 12:24:05 +0000 | [diff] [blame] | 278 | ((unsigned char *)ret)[0] = cleanse_ctr; |
Andy Polyakov | b2dba9b | 2007-05-14 21:35:25 +0000 | [diff] [blame] | 279 | } |
| 280 | #endif |
Richard Levitte | df29cc8 | 2002-11-27 12:24:05 +0000 | [diff] [blame] | 281 | |
Richard Levitte | 9ac42ed | 1999-12-17 12:56:24 +0000 | [diff] [blame] | 282 | return ret; |
Ralf S. Engelschall | dfeab06 | 1998-12-21 11:00:56 +0000 | [diff] [blame] | 283 | } |
| 284 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 285 | void CRYPTO_free_locked(void *str) |
Ralf S. Engelschall | dfeab06 | 1998-12-21 11:00:56 +0000 | [diff] [blame] | 286 | { |
Richard Levitte | f3a2a04 | 1999-12-18 02:34:37 +0000 | [diff] [blame] | 287 | if (free_debug_func != NULL) |
| 288 | free_debug_func(str, 0); |
Richard Levitte | 8d28d5f | 2000-12-13 17:15:03 +0000 | [diff] [blame] | 289 | #ifdef LEVITTE_DEBUG_MEM |
| 290 | fprintf(stderr, "LEVITTE_DEBUG_MEM: < 0x%p\n", str); |
Richard Levitte | 9ac42ed | 1999-12-17 12:56:24 +0000 | [diff] [blame] | 291 | #endif |
Bodo Möller | a5435e8 | 2001-01-10 18:09:57 +0000 | [diff] [blame] | 292 | free_locked_func(str); |
Richard Levitte | f3a2a04 | 1999-12-18 02:34:37 +0000 | [diff] [blame] | 293 | if (free_debug_func != NULL) |
| 294 | free_debug_func(NULL, 1); |
Ralf S. Engelschall | dfeab06 | 1998-12-21 11:00:56 +0000 | [diff] [blame] | 295 | } |
| 296 | |
Geoff Thorpe | 6343829 | 2008-11-12 03:58:08 +0000 | [diff] [blame] | 297 | void *CRYPTO_malloc(int num, const char *file, int line) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 298 | { |
Richard Levitte | 6596268 | 2000-05-02 13:36:50 +0000 | [diff] [blame] | 299 | void *ret = NULL; |
Richard Levitte | 9ac42ed | 1999-12-17 12:56:24 +0000 | [diff] [blame] | 300 | |
Richard Levitte | 6781efb | 2003-12-01 12:06:15 +0000 | [diff] [blame] | 301 | if (num <= 0) return NULL; |
Richard Levitte | d5234c7 | 2003-02-19 11:54:42 +0000 | [diff] [blame] | 302 | |
Bodo Möller | 0cd08cc | 1999-12-18 05:22:50 +0000 | [diff] [blame] | 303 | allow_customize = 0; |
Richard Levitte | f3a2a04 | 1999-12-18 02:34:37 +0000 | [diff] [blame] | 304 | if (malloc_debug_func != NULL) |
Bodo Möller | 0cd08cc | 1999-12-18 05:22:50 +0000 | [diff] [blame] | 305 | { |
| 306 | allow_customize_debug = 0; |
Richard Levitte | f3a2a04 | 1999-12-18 02:34:37 +0000 | [diff] [blame] | 307 | malloc_debug_func(NULL, num, file, line, 0); |
Bodo Möller | 0cd08cc | 1999-12-18 05:22:50 +0000 | [diff] [blame] | 308 | } |
Richard Levitte | 65a22e8 | 2001-01-10 13:14:58 +0000 | [diff] [blame] | 309 | ret = malloc_ex_func(num,file,line); |
Richard Levitte | 8d28d5f | 2000-12-13 17:15:03 +0000 | [diff] [blame] | 310 | #ifdef LEVITTE_DEBUG_MEM |
| 311 | fprintf(stderr, "LEVITTE_DEBUG_MEM: > 0x%p (%d)\n", ret, num); |
Richard Levitte | 9ac42ed | 1999-12-17 12:56:24 +0000 | [diff] [blame] | 312 | #endif |
Richard Levitte | f3a2a04 | 1999-12-18 02:34:37 +0000 | [diff] [blame] | 313 | if (malloc_debug_func != NULL) |
| 314 | malloc_debug_func(ret, num, file, line, 1); |
Richard Levitte | 9ac42ed | 1999-12-17 12:56:24 +0000 | [diff] [blame] | 315 | |
Andy Polyakov | b2dba9b | 2007-05-14 21:35:25 +0000 | [diff] [blame] | 316 | #ifndef OPENSSL_CPUID_OBJ |
Richard Levitte | df29cc8 | 2002-11-27 12:24:05 +0000 | [diff] [blame] | 317 | /* Create a dependency on the value of 'cleanse_ctr' so our memory |
| 318 | * sanitisation function can't be optimised out. NB: We only do |
| 319 | * this for >2Kb so the overhead doesn't bother us. */ |
| 320 | if(ret && (num > 2048)) |
Andy Polyakov | b2dba9b | 2007-05-14 21:35:25 +0000 | [diff] [blame] | 321 | { extern unsigned char cleanse_ctr; |
Richard Levitte | df29cc8 | 2002-11-27 12:24:05 +0000 | [diff] [blame] | 322 | ((unsigned char *)ret)[0] = cleanse_ctr; |
Andy Polyakov | b2dba9b | 2007-05-14 21:35:25 +0000 | [diff] [blame] | 323 | } |
| 324 | #endif |
Richard Levitte | df29cc8 | 2002-11-27 12:24:05 +0000 | [diff] [blame] | 325 | |
Richard Levitte | 9ac42ed | 1999-12-17 12:56:24 +0000 | [diff] [blame] | 326 | return ret; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 327 | } |
Ben Laurie | 6caa4ed | 2008-10-26 18:40:52 +0000 | [diff] [blame] | 328 | char *CRYPTO_strdup(const char *str, const char *file, int line) |
| 329 | { |
| 330 | char *ret = CRYPTO_malloc(strlen(str)+1, file, line); |
| 331 | |
| 332 | strcpy(ret, str); |
| 333 | return ret; |
| 334 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 335 | |
Geoff Thorpe | 6343829 | 2008-11-12 03:58:08 +0000 | [diff] [blame] | 336 | void *CRYPTO_realloc(void *str, int num, const char *file, int line) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 337 | { |
Richard Levitte | 6596268 | 2000-05-02 13:36:50 +0000 | [diff] [blame] | 338 | void *ret = NULL; |
Richard Levitte | 9ac42ed | 1999-12-17 12:56:24 +0000 | [diff] [blame] | 339 | |
Richard Levitte | 0472883 | 2002-08-01 10:08:37 +0000 | [diff] [blame] | 340 | if (str == NULL) |
| 341 | return CRYPTO_malloc(num, file, line); |
Richard Levitte | d5234c7 | 2003-02-19 11:54:42 +0000 | [diff] [blame] | 342 | |
Richard Levitte | 6781efb | 2003-12-01 12:06:15 +0000 | [diff] [blame] | 343 | if (num <= 0) return NULL; |
Richard Levitte | d5234c7 | 2003-02-19 11:54:42 +0000 | [diff] [blame] | 344 | |
Richard Levitte | f3a2a04 | 1999-12-18 02:34:37 +0000 | [diff] [blame] | 345 | if (realloc_debug_func != NULL) |
| 346 | realloc_debug_func(str, NULL, num, file, line, 0); |
Richard Levitte | 65a22e8 | 2001-01-10 13:14:58 +0000 | [diff] [blame] | 347 | ret = realloc_ex_func(str,num,file,line); |
Richard Levitte | 8d28d5f | 2000-12-13 17:15:03 +0000 | [diff] [blame] | 348 | #ifdef LEVITTE_DEBUG_MEM |
| 349 | fprintf(stderr, "LEVITTE_DEBUG_MEM: | 0x%p -> 0x%p (%d)\n", str, ret, num); |
Richard Levitte | 9ac42ed | 1999-12-17 12:56:24 +0000 | [diff] [blame] | 350 | #endif |
Richard Levitte | f3a2a04 | 1999-12-18 02:34:37 +0000 | [diff] [blame] | 351 | if (realloc_debug_func != NULL) |
| 352 | realloc_debug_func(str, ret, num, file, line, 1); |
Richard Levitte | 9ac42ed | 1999-12-17 12:56:24 +0000 | [diff] [blame] | 353 | |
| 354 | return ret; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 355 | } |
| 356 | |
Geoff Thorpe | 6343829 | 2008-11-12 03:58:08 +0000 | [diff] [blame] | 357 | void *CRYPTO_realloc_clean(void *str, int old_len, int num, const char *file, |
| 358 | int line) |
Ben Laurie | 54a656e | 2002-11-13 15:43:43 +0000 | [diff] [blame] | 359 | { |
| 360 | void *ret = NULL; |
| 361 | |
| 362 | if (str == NULL) |
| 363 | return CRYPTO_malloc(num, file, line); |
Richard Levitte | d5234c7 | 2003-02-19 11:54:42 +0000 | [diff] [blame] | 364 | |
Richard Levitte | 6781efb | 2003-12-01 12:06:15 +0000 | [diff] [blame] | 365 | if (num <= 0) return NULL; |
Richard Levitte | d5234c7 | 2003-02-19 11:54:42 +0000 | [diff] [blame] | 366 | |
Ben Laurie | 54a656e | 2002-11-13 15:43:43 +0000 | [diff] [blame] | 367 | if (realloc_debug_func != NULL) |
| 368 | realloc_debug_func(str, NULL, num, file, line, 0); |
| 369 | ret=malloc_ex_func(num,file,line); |
| 370 | if(ret) |
Richard Levitte | 83eb412 | 2003-10-07 12:09:39 +0000 | [diff] [blame] | 371 | { |
Ben Laurie | 54a656e | 2002-11-13 15:43:43 +0000 | [diff] [blame] | 372 | memcpy(ret,str,old_len); |
Richard Levitte | 83eb412 | 2003-10-07 12:09:39 +0000 | [diff] [blame] | 373 | OPENSSL_cleanse(str,old_len); |
| 374 | free_func(str); |
| 375 | } |
Ben Laurie | 54a656e | 2002-11-13 15:43:43 +0000 | [diff] [blame] | 376 | #ifdef LEVITTE_DEBUG_MEM |
Richard Levitte | 83eb412 | 2003-10-07 12:09:39 +0000 | [diff] [blame] | 377 | fprintf(stderr, |
| 378 | "LEVITTE_DEBUG_MEM: | 0x%p -> 0x%p (%d)\n", |
| 379 | str, ret, num); |
Ben Laurie | 54a656e | 2002-11-13 15:43:43 +0000 | [diff] [blame] | 380 | #endif |
| 381 | if (realloc_debug_func != NULL) |
| 382 | realloc_debug_func(str, ret, num, file, line, 1); |
| 383 | |
| 384 | return ret; |
| 385 | } |
| 386 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 387 | void CRYPTO_free(void *str) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 388 | { |
Richard Levitte | f3a2a04 | 1999-12-18 02:34:37 +0000 | [diff] [blame] | 389 | if (free_debug_func != NULL) |
| 390 | free_debug_func(str, 0); |
Richard Levitte | 8d28d5f | 2000-12-13 17:15:03 +0000 | [diff] [blame] | 391 | #ifdef LEVITTE_DEBUG_MEM |
| 392 | fprintf(stderr, "LEVITTE_DEBUG_MEM: < 0x%p\n", str); |
Richard Levitte | 9ac42ed | 1999-12-17 12:56:24 +0000 | [diff] [blame] | 393 | #endif |
Bodo Möller | a5435e8 | 2001-01-10 18:09:57 +0000 | [diff] [blame] | 394 | free_func(str); |
Richard Levitte | f3a2a04 | 1999-12-18 02:34:37 +0000 | [diff] [blame] | 395 | if (free_debug_func != NULL) |
| 396 | free_debug_func(NULL, 1); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 397 | } |
| 398 | |
Geoff Thorpe | 6343829 | 2008-11-12 03:58:08 +0000 | [diff] [blame] | 399 | void *CRYPTO_remalloc(void *a, int num, const char *file, int line) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 400 | { |
Richard Levitte | 26a3a48 | 2000-06-01 22:19:21 +0000 | [diff] [blame] | 401 | if (a != NULL) OPENSSL_free(a); |
Geoff Thorpe | 6343829 | 2008-11-12 03:58:08 +0000 | [diff] [blame] | 402 | a=(char *)OPENSSL_malloc(num); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 403 | return(a); |
| 404 | } |
| 405 | |
Bodo Möller | 0cd08cc | 1999-12-18 05:22:50 +0000 | [diff] [blame] | 406 | void CRYPTO_set_mem_debug_options(long bits) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 407 | { |
Richard Levitte | f3a2a04 | 1999-12-18 02:34:37 +0000 | [diff] [blame] | 408 | if (set_debug_options_func != NULL) |
| 409 | set_debug_options_func(bits); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 410 | } |
| 411 | |
Ralf S. Engelschall | 667ac4e | 2000-02-11 09:47:18 +0000 | [diff] [blame] | 412 | long CRYPTO_get_mem_debug_options(void) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 413 | { |
Richard Levitte | f3a2a04 | 1999-12-18 02:34:37 +0000 | [diff] [blame] | 414 | if (get_debug_options_func != NULL) |
| 415 | return get_debug_options_func(); |
Bodo Möller | 0cd08cc | 1999-12-18 05:22:50 +0000 | [diff] [blame] | 416 | return 0; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 417 | } |