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 | |
Ralf S. Engelschall | dfeab06 | 1998-12-21 11:00:56 +0000 | [diff] [blame] | 65 | static char *(*malloc_locked_func)()=(char *(*)())malloc; |
| 66 | static void (*free_locked_func)()=(void (*)())free; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 67 | static char *(*malloc_func)()= (char *(*)())malloc; |
| 68 | static char *(*realloc_func)()= (char *(*)())realloc; |
| 69 | static void (*free_func)()= (void (*)())free; |
| 70 | |
Richard Levitte | f3a2a04 | 1999-12-18 02:34:37 +0000 | [diff] [blame^] | 71 | #ifdef CRYPTO_MDEBUG |
Richard Levitte | 9ac42ed | 1999-12-17 12:56:24 +0000 | [diff] [blame] | 72 | static void (*malloc_debug_func)()= (void (*)())CRYPTO_dbg_malloc; |
| 73 | static void (*realloc_debug_func)()= (void (*)())CRYPTO_dbg_realloc; |
| 74 | static void (*free_debug_func)()= (void (*)())CRYPTO_dbg_free; |
| 75 | static void (*set_debug_options_func)()= (void (*)())CRYPTO_dbg_set_options; |
| 76 | static int (*get_debug_options_func)()= (int (*)())CRYPTO_dbg_get_options; |
Richard Levitte | f3a2a04 | 1999-12-18 02:34:37 +0000 | [diff] [blame^] | 77 | #else |
| 78 | static void (*malloc_debug_func)()= (void (*)())NULL; |
| 79 | static void (*realloc_debug_func)()= (void (*)())NULL; |
| 80 | static void (*free_debug_func)()= (void (*)())NULL; |
| 81 | static void (*set_debug_options_func)()= (void (*)())NULL; |
| 82 | static int (*get_debug_options_func)()= (int (*)())NULL; |
| 83 | #endif |
Richard Levitte | 9ac42ed | 1999-12-17 12:56:24 +0000 | [diff] [blame] | 84 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 85 | void CRYPTO_set_mem_functions(char *(*m)(), char *(*r)(), void (*f)()) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 86 | { |
| 87 | if ((m == NULL) || (r == NULL) || (f == NULL)) return; |
| 88 | malloc_func=m; |
| 89 | realloc_func=r; |
| 90 | free_func=f; |
Ralf S. Engelschall | dfeab06 | 1998-12-21 11:00:56 +0000 | [diff] [blame] | 91 | malloc_locked_func=m; |
| 92 | free_locked_func=f; |
| 93 | } |
| 94 | |
Richard Levitte | 9ac42ed | 1999-12-17 12:56:24 +0000 | [diff] [blame] | 95 | void CRYPTO_set_mem_debug_functions(void (*m)(), void (*r)(), void (*f)(),void (*so)(),int (*go)()) |
| 96 | { |
| 97 | if ((m == NULL) || (r == NULL) || (f == NULL) || (so == NULL) || (go == NULL)) |
| 98 | return; |
| 99 | malloc_debug_func=m; |
| 100 | realloc_debug_func=r; |
| 101 | free_debug_func=f; |
| 102 | set_debug_options_func=so; |
| 103 | get_debug_options_func=go; |
| 104 | } |
| 105 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 106 | void CRYPTO_set_locked_mem_functions(char *(*m)(), void (*f)()) |
Ralf S. Engelschall | dfeab06 | 1998-12-21 11:00:56 +0000 | [diff] [blame] | 107 | { |
| 108 | if ((m == NULL) || (f == NULL)) return; |
| 109 | malloc_locked_func=m; |
| 110 | free_locked_func=f; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 111 | } |
| 112 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 113 | void CRYPTO_get_mem_functions(char *(**m)(), char *(**r)(), void (**f)()) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 114 | { |
| 115 | if (m != NULL) *m=malloc_func; |
| 116 | if (r != NULL) *r=realloc_func; |
| 117 | if (f != NULL) *f=free_func; |
| 118 | } |
| 119 | |
Richard Levitte | 9ac42ed | 1999-12-17 12:56:24 +0000 | [diff] [blame] | 120 | void CRYPTO_get_mem_debug_functions(void (**m)(), void (**r)(), void (**f)(),void (**so)(),int (**go)()) |
| 121 | { |
| 122 | if (m != NULL) *m=malloc_debug_func; |
| 123 | if (r != NULL) *r=realloc_debug_func; |
| 124 | if (f != NULL) *f=free_debug_func; |
| 125 | if (so != NULL) *so=set_debug_options_func; |
| 126 | if (go != NULL) *go=get_debug_options_func; |
| 127 | } |
| 128 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 129 | void CRYPTO_get_locked_mem_functions(char *(**m)(), void (**f)()) |
Ralf S. Engelschall | dfeab06 | 1998-12-21 11:00:56 +0000 | [diff] [blame] | 130 | { |
| 131 | if (m != NULL) *m=malloc_locked_func; |
| 132 | if (f != NULL) *f=free_locked_func; |
| 133 | } |
| 134 | |
Richard Levitte | 9ac42ed | 1999-12-17 12:56:24 +0000 | [diff] [blame] | 135 | void *CRYPTO_malloc_locked(int num, char *file, int line) |
Ralf S. Engelschall | dfeab06 | 1998-12-21 11:00:56 +0000 | [diff] [blame] | 136 | { |
Richard Levitte | 9ac42ed | 1999-12-17 12:56:24 +0000 | [diff] [blame] | 137 | char *ret = NULL; |
| 138 | |
Richard Levitte | f3a2a04 | 1999-12-18 02:34:37 +0000 | [diff] [blame^] | 139 | if (malloc_debug_func != NULL) |
| 140 | malloc_debug_func(NULL, num, file, line, 0); |
Richard Levitte | 9ac42ed | 1999-12-17 12:56:24 +0000 | [diff] [blame] | 141 | ret = malloc_locked_func(num); |
| 142 | #ifdef LEVITTE_DEBUG |
| 143 | fprintf(stderr, "LEVITTE_DEBUG: > 0x%p (%d)\n", ret, num); |
| 144 | #endif |
Richard Levitte | f3a2a04 | 1999-12-18 02:34:37 +0000 | [diff] [blame^] | 145 | if (malloc_debug_func != NULL) |
| 146 | malloc_debug_func(ret, num, file, line, 1); |
Richard Levitte | 9ac42ed | 1999-12-17 12:56:24 +0000 | [diff] [blame] | 147 | |
| 148 | return ret; |
Ralf S. Engelschall | dfeab06 | 1998-12-21 11:00:56 +0000 | [diff] [blame] | 149 | } |
| 150 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 151 | void CRYPTO_free_locked(void *str) |
Ralf S. Engelschall | dfeab06 | 1998-12-21 11:00:56 +0000 | [diff] [blame] | 152 | { |
Richard Levitte | f3a2a04 | 1999-12-18 02:34:37 +0000 | [diff] [blame^] | 153 | if (free_debug_func != NULL) |
| 154 | free_debug_func(str, 0); |
Richard Levitte | 9ac42ed | 1999-12-17 12:56:24 +0000 | [diff] [blame] | 155 | #ifdef LEVITTE_DEBUG |
| 156 | fprintf(stderr, "LEVITTE_DEBUG: < 0x%p\n", str); |
| 157 | #endif |
Ralf S. Engelschall | dfeab06 | 1998-12-21 11:00:56 +0000 | [diff] [blame] | 158 | free_locked_func(str); |
Richard Levitte | f3a2a04 | 1999-12-18 02:34:37 +0000 | [diff] [blame^] | 159 | if (free_debug_func != NULL) |
| 160 | free_debug_func(NULL, 1); |
Ralf S. Engelschall | dfeab06 | 1998-12-21 11:00:56 +0000 | [diff] [blame] | 161 | } |
| 162 | |
Richard Levitte | 9ac42ed | 1999-12-17 12:56:24 +0000 | [diff] [blame] | 163 | void *CRYPTO_malloc(int num, char *file, int line) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 164 | { |
Richard Levitte | 9ac42ed | 1999-12-17 12:56:24 +0000 | [diff] [blame] | 165 | char *ret = NULL; |
| 166 | |
Richard Levitte | f3a2a04 | 1999-12-18 02:34:37 +0000 | [diff] [blame^] | 167 | if (malloc_debug_func != NULL) |
| 168 | malloc_debug_func(NULL, num, file, line, 0); |
Richard Levitte | 9ac42ed | 1999-12-17 12:56:24 +0000 | [diff] [blame] | 169 | ret = malloc_func(num); |
| 170 | #ifdef LEVITTE_DEBUG |
| 171 | fprintf(stderr, "LEVITTE_DEBUG: > 0x%p (%d)\n", ret, num); |
| 172 | #endif |
Richard Levitte | f3a2a04 | 1999-12-18 02:34:37 +0000 | [diff] [blame^] | 173 | if (malloc_debug_func != NULL) |
| 174 | malloc_debug_func(ret, num, file, line, 1); |
Richard Levitte | 9ac42ed | 1999-12-17 12:56:24 +0000 | [diff] [blame] | 175 | |
| 176 | return ret; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 177 | } |
| 178 | |
Richard Levitte | 9ac42ed | 1999-12-17 12:56:24 +0000 | [diff] [blame] | 179 | void *CRYPTO_realloc(void *str, int num, char *file, int line) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 180 | { |
Richard Levitte | 9ac42ed | 1999-12-17 12:56:24 +0000 | [diff] [blame] | 181 | char *ret = NULL; |
| 182 | |
Richard Levitte | f3a2a04 | 1999-12-18 02:34:37 +0000 | [diff] [blame^] | 183 | if (realloc_debug_func != NULL) |
| 184 | realloc_debug_func(str, NULL, num, file, line, 0); |
Richard Levitte | 9ac42ed | 1999-12-17 12:56:24 +0000 | [diff] [blame] | 185 | ret = realloc_func(str,num); |
| 186 | #ifdef LEVITTE_DEBUG |
| 187 | fprintf(stderr, "LEVITTE_DEBUG: | 0x%p -> 0x%p (%d)\n", str, ret, num); |
| 188 | #endif |
Richard Levitte | f3a2a04 | 1999-12-18 02:34:37 +0000 | [diff] [blame^] | 189 | if (realloc_debug_func != NULL) |
| 190 | realloc_debug_func(str, ret, num, file, line, 1); |
Richard Levitte | 9ac42ed | 1999-12-17 12:56:24 +0000 | [diff] [blame] | 191 | |
| 192 | return ret; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 193 | } |
| 194 | |
Ulf Möller | 6b691a5 | 1999-04-19 21:31:43 +0000 | [diff] [blame] | 195 | void CRYPTO_free(void *str) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 196 | { |
Richard Levitte | f3a2a04 | 1999-12-18 02:34:37 +0000 | [diff] [blame^] | 197 | if (free_debug_func != NULL) |
| 198 | free_debug_func(str, 0); |
Richard Levitte | 9ac42ed | 1999-12-17 12:56:24 +0000 | [diff] [blame] | 199 | #ifdef LEVITTE_DEBUG |
| 200 | fprintf(stderr, "LEVITTE_DEBUG: < 0x%p\n", str); |
| 201 | #endif |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 202 | free_func(str); |
Richard Levitte | f3a2a04 | 1999-12-18 02:34:37 +0000 | [diff] [blame^] | 203 | if (free_debug_func != NULL) |
| 204 | free_debug_func(NULL, 1); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 205 | } |
| 206 | |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 207 | |
Richard Levitte | 9ac42ed | 1999-12-17 12:56:24 +0000 | [diff] [blame] | 208 | void *CRYPTO_remalloc(void *a, int num, char *file, int line) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 209 | { |
| 210 | if (a != NULL) Free(a); |
Richard Levitte | 9ac42ed | 1999-12-17 12:56:24 +0000 | [diff] [blame] | 211 | a=(char *)Malloc(num); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 212 | return(a); |
| 213 | } |
| 214 | |
Richard Levitte | 9ac42ed | 1999-12-17 12:56:24 +0000 | [diff] [blame] | 215 | void CRYPTO_set_mem_debug_options(int bits) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 216 | { |
Richard Levitte | f3a2a04 | 1999-12-18 02:34:37 +0000 | [diff] [blame^] | 217 | if (set_debug_options_func != NULL) |
| 218 | set_debug_options_func(bits); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 219 | } |
| 220 | |
Richard Levitte | 9ac42ed | 1999-12-17 12:56:24 +0000 | [diff] [blame] | 221 | int CRYPTO_get_mem_debug_options() |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 222 | { |
Richard Levitte | f3a2a04 | 1999-12-18 02:34:37 +0000 | [diff] [blame^] | 223 | if (get_debug_options_func != NULL) |
| 224 | return get_debug_options_func(); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 225 | } |