- Made sure some changed behavior is documented in CHANGES.
[openssl.git] / crypto / mem.c
1 /* crypto/mem.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
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>
61 #include <openssl/crypto.h>
62 #include "cryptlib.h"
63
64
65 static char *(*malloc_locked_func)()=(char *(*)())malloc;
66 static void (*free_locked_func)()=(void (*)())free;
67 static char *(*malloc_func)()=  (char *(*)())malloc;
68 static char *(*realloc_func)()= (char *(*)())realloc;
69 static void (*free_func)()=     (void (*)())free;
70
71 static void (*malloc_debug_func)()= (void (*)())CRYPTO_dbg_malloc;
72 static void (*realloc_debug_func)()= (void (*)())CRYPTO_dbg_realloc;
73 static void (*free_debug_func)()= (void (*)())CRYPTO_dbg_free;
74 static void (*set_debug_options_func)()= (void (*)())CRYPTO_dbg_set_options;
75 static int (*get_debug_options_func)()= (int (*)())CRYPTO_dbg_get_options;
76
77 void CRYPTO_set_mem_functions(char *(*m)(), char *(*r)(), void (*f)())
78         {
79         if ((m == NULL) || (r == NULL) || (f == NULL)) return;
80         malloc_func=m;
81         realloc_func=r;
82         free_func=f;
83         malloc_locked_func=m;
84         free_locked_func=f;
85         }
86
87 void CRYPTO_set_mem_debug_functions(void (*m)(), void (*r)(), void (*f)(),void (*so)(),int (*go)())
88         {
89         if ((m == NULL) || (r == NULL) || (f == NULL) || (so == NULL) || (go == NULL))
90                 return;
91         malloc_debug_func=m;
92         realloc_debug_func=r;
93         free_debug_func=f;
94         set_debug_options_func=so;
95         get_debug_options_func=go;
96         }
97
98 void CRYPTO_set_locked_mem_functions(char *(*m)(), void (*f)())
99         {
100         if ((m == NULL) || (f == NULL)) return;
101         malloc_locked_func=m;
102         free_locked_func=f;
103         }
104
105 void CRYPTO_get_mem_functions(char *(**m)(), char *(**r)(), void (**f)())
106         {
107         if (m != NULL) *m=malloc_func;
108         if (r != NULL) *r=realloc_func;
109         if (f != NULL) *f=free_func;
110         }
111
112 void CRYPTO_get_mem_debug_functions(void (**m)(), void (**r)(), void (**f)(),void (**so)(),int (**go)())
113         {
114         if (m != NULL) *m=malloc_debug_func;
115         if (r != NULL) *r=realloc_debug_func;
116         if (f != NULL) *f=free_debug_func;
117         if (so != NULL) *so=set_debug_options_func;
118         if (go != NULL) *go=get_debug_options_func;
119         }
120
121 void CRYPTO_get_locked_mem_functions(char *(**m)(), void (**f)())
122         {
123         if (m != NULL) *m=malloc_locked_func;
124         if (f != NULL) *f=free_locked_func;
125         }
126
127 void *CRYPTO_malloc_locked(int num, char *file, int line)
128         {
129         char *ret = NULL;
130
131         malloc_debug_func(NULL, num, file, line, 0);
132         ret = malloc_locked_func(num);
133 #ifdef LEVITTE_DEBUG
134         fprintf(stderr, "LEVITTE_DEBUG:         > 0x%p (%d)\n", ret, num);
135 #endif
136         malloc_debug_func(ret, num, file, line, 1);
137
138         return ret;
139         }
140
141 void CRYPTO_free_locked(void *str)
142         {
143         free_debug_func(str, 0);
144 #ifdef LEVITTE_DEBUG
145         fprintf(stderr, "LEVITTE_DEBUG:         < 0x%p\n", str);
146 #endif
147         free_locked_func(str);
148         free_debug_func(NULL, 1);
149         }
150
151 void *CRYPTO_malloc(int num, char *file, int line)
152         {
153         char *ret = NULL;
154
155         malloc_debug_func(NULL, num, file, line, 0);
156         ret = malloc_func(num);
157 #ifdef LEVITTE_DEBUG
158         fprintf(stderr, "LEVITTE_DEBUG:         > 0x%p (%d)\n", ret, num);
159 #endif
160         malloc_debug_func(ret, num, file, line, 1);
161
162         return ret;
163         }
164
165 void *CRYPTO_realloc(void *str, int num, char *file, int line)
166         {
167         char *ret = NULL;
168
169         realloc_debug_func(str, NULL, num, file, line, 0);
170         ret = realloc_func(str,num);
171 #ifdef LEVITTE_DEBUG
172         fprintf(stderr, "LEVITTE_DEBUG:         | 0x%p -> 0x%p (%d)\n", str, ret, num);
173 #endif
174         realloc_debug_func(str, ret, num, file, line, 1);
175
176         return ret;
177         }
178
179 void CRYPTO_free(void *str)
180         {
181         free_debug_func(str, 0);
182 #ifdef LEVITTE_DEBUG
183         fprintf(stderr, "LEVITTE_DEBUG:         < 0x%p\n", str);
184 #endif
185         free_func(str);
186         free_debug_func(NULL, 1);
187         }
188
189
190 void *CRYPTO_remalloc(void *a, int num, char *file, int line)
191         {
192         if (a != NULL) Free(a);
193         a=(char *)Malloc(num);
194         return(a);
195         }
196
197 void CRYPTO_set_mem_debug_options(int bits)
198         {
199         set_debug_options_func(bits);
200         }
201
202 int CRYPTO_get_mem_debug_options()
203         {
204         return get_debug_options_func();
205         }