mem.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446
  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. #include <stdio.h>
  59. #include <stdlib.h>
  60. #include <openssl/crypto.h>
  61. #include "cryptlib.h"
  62. static int allow_customize = 1; /* we provide flexible functions for */
  63. static int allow_customize_debug = 1;/* exchanging memory-related functions at
  64. * run-time, but this must be done
  65. * before any blocks are actually
  66. * allocated; or we'll run into huge
  67. * problems when malloc/free pairs
  68. * don't match etc. */
  69. /* the following pointers may be changed as long as 'allow_customize' is set */
  70. static void *(*malloc_func)(size_t) = malloc;
  71. static void *default_malloc_ex(size_t num, const char *file, int line)
  72. { return malloc_func(num); }
  73. static void *(*malloc_ex_func)(size_t, const char *file, int line)
  74. = default_malloc_ex;
  75. static void *(*realloc_func)(void *, size_t)= realloc;
  76. static void *default_realloc_ex(void *str, size_t num,
  77. const char *file, int line)
  78. { return realloc_func(str,num); }
  79. static void *(*realloc_ex_func)(void *, size_t, const char *file, int line)
  80. = default_realloc_ex;
  81. static void (*free_func)(void *) = free;
  82. static void *(*malloc_locked_func)(size_t) = malloc;
  83. static void *default_malloc_locked_ex(size_t num, const char *file, int line)
  84. { return malloc_locked_func(num); }
  85. static void *(*malloc_locked_ex_func)(size_t, const char *file, int line)
  86. = default_malloc_locked_ex;
  87. static void (*free_locked_func)(void *) = free;
  88. /* may be changed as long as 'allow_customize_debug' is set */
  89. /* XXX use correct function pointer types */
  90. #if defined(CRYPTO_MDEBUG) && !defined(OPENSSL_FIPS)
  91. /* use default functions from mem_dbg.c */
  92. static void (*malloc_debug_func)(void *,int,const char *,int,int)
  93. = CRYPTO_dbg_malloc;
  94. static void (*realloc_debug_func)(void *,void *,int,const char *,int,int)
  95. = CRYPTO_dbg_realloc;
  96. static void (*free_debug_func)(void *,int) = CRYPTO_dbg_free;
  97. static void (*set_debug_options_func)(long) = CRYPTO_dbg_set_options;
  98. static long (*get_debug_options_func)(void) = CRYPTO_dbg_get_options;
  99. static int (*push_info_func)(const char *info, const char *file, int line)
  100. = CRYPTO_dbg_push_info;
  101. static int (*pop_info_func)(void)
  102. = CRYPTO_dbg_pop_info;
  103. static int (*remove_all_info_func)(void)
  104. = CRYPTO_dbg_remove_all_info;
  105. #else
  106. /* applications can use CRYPTO_malloc_debug_init() to select above case
  107. * at run-time */
  108. static void (*malloc_debug_func)(void *,int,const char *,int,int) = NULL;
  109. static void (*realloc_debug_func)(void *,void *,int,const char *,int,int)
  110. = NULL;
  111. static void (*free_debug_func)(void *,int) = NULL;
  112. static void (*set_debug_options_func)(long) = NULL;
  113. static long (*get_debug_options_func)(void) = NULL;
  114. static int (*push_info_func)(const char *info, const char *file, int line)
  115. = NULL;
  116. static int (*pop_info_func)(void) = NULL;
  117. static int (*remove_all_info_func)(void) = NULL;
  118. #endif
  119. int CRYPTO_set_mem_functions(void *(*m)(size_t), void *(*r)(void *, size_t),
  120. void (*f)(void *))
  121. {
  122. if (!allow_customize)
  123. return 0;
  124. if ((m == 0) || (r == 0) || (f == 0))
  125. return 0;
  126. malloc_func=m; malloc_ex_func=default_malloc_ex;
  127. realloc_func=r; realloc_ex_func=default_realloc_ex;
  128. free_func=f;
  129. malloc_locked_func=m; malloc_locked_ex_func=default_malloc_locked_ex;
  130. free_locked_func=f;
  131. return 1;
  132. }
  133. int CRYPTO_set_mem_ex_functions(
  134. void *(*m)(size_t,const char *,int),
  135. void *(*r)(void *, size_t,const char *,int),
  136. void (*f)(void *))
  137. {
  138. if (!allow_customize)
  139. return 0;
  140. if ((m == 0) || (r == 0) || (f == 0))
  141. return 0;
  142. malloc_func=0; malloc_ex_func=m;
  143. realloc_func=0; realloc_ex_func=r;
  144. free_func=f;
  145. malloc_locked_func=0; malloc_locked_ex_func=m;
  146. free_locked_func=f;
  147. return 1;
  148. }
  149. int CRYPTO_set_locked_mem_functions(void *(*m)(size_t), void (*f)(void *))
  150. {
  151. if (!allow_customize)
  152. return 0;
  153. if ((m == NULL) || (f == NULL))
  154. return 0;
  155. malloc_locked_func=m; malloc_locked_ex_func=default_malloc_locked_ex;
  156. free_locked_func=f;
  157. return 1;
  158. }
  159. int CRYPTO_set_locked_mem_ex_functions(
  160. void *(*m)(size_t,const char *,int),
  161. void (*f)(void *))
  162. {
  163. if (!allow_customize)
  164. return 0;
  165. if ((m == NULL) || (f == NULL))
  166. return 0;
  167. malloc_locked_func=0; malloc_locked_ex_func=m;
  168. free_func=f;
  169. return 1;
  170. }
  171. int CRYPTO_set_mem_debug_functions(void (*m)(void *,int,const char *,int,int),
  172. void (*r)(void *,void *,int,const char *,int,int),
  173. void (*f)(void *,int),
  174. void (*so)(long),
  175. long (*go)(void))
  176. {
  177. if (!allow_customize_debug)
  178. return 0;
  179. malloc_debug_func=m;
  180. realloc_debug_func=r;
  181. free_debug_func=f;
  182. set_debug_options_func=so;
  183. get_debug_options_func=go;
  184. return 1;
  185. }
  186. void CRYPTO_set_mem_info_functions(
  187. int (*push_info_fn)(const char *info, const char *file, int line),
  188. int (*pop_info_fn)(void),
  189. int (*remove_all_info_fn)(void))
  190. {
  191. push_info_func = push_info_fn;
  192. pop_info_func = pop_info_fn;
  193. remove_all_info_func = remove_all_info_fn;
  194. }
  195. void CRYPTO_get_mem_functions(void *(**m)(size_t), void *(**r)(void *, size_t),
  196. void (**f)(void *))
  197. {
  198. if (m != NULL) *m = (malloc_ex_func == default_malloc_ex) ?
  199. malloc_func : 0;
  200. if (r != NULL) *r = (realloc_ex_func == default_realloc_ex) ?
  201. realloc_func : 0;
  202. if (f != NULL) *f=free_func;
  203. }
  204. void CRYPTO_get_mem_ex_functions(
  205. void *(**m)(size_t,const char *,int),
  206. void *(**r)(void *, size_t,const char *,int),
  207. void (**f)(void *))
  208. {
  209. if (m != NULL) *m = (malloc_ex_func != default_malloc_ex) ?
  210. malloc_ex_func : 0;
  211. if (r != NULL) *r = (realloc_ex_func != default_realloc_ex) ?
  212. realloc_ex_func : 0;
  213. if (f != NULL) *f=free_func;
  214. }
  215. void CRYPTO_get_locked_mem_functions(void *(**m)(size_t), void (**f)(void *))
  216. {
  217. if (m != NULL) *m = (malloc_locked_ex_func == default_malloc_locked_ex) ?
  218. malloc_locked_func : 0;
  219. if (f != NULL) *f=free_locked_func;
  220. }
  221. void CRYPTO_get_locked_mem_ex_functions(
  222. void *(**m)(size_t,const char *,int),
  223. void (**f)(void *))
  224. {
  225. if (m != NULL) *m = (malloc_locked_ex_func != default_malloc_locked_ex) ?
  226. malloc_locked_ex_func : 0;
  227. if (f != NULL) *f=free_locked_func;
  228. }
  229. void CRYPTO_get_mem_debug_functions(void (**m)(void *,int,const char *,int,int),
  230. void (**r)(void *,void *,int,const char *,int,int),
  231. void (**f)(void *,int),
  232. void (**so)(long),
  233. long (**go)(void))
  234. {
  235. if (m != NULL) *m=malloc_debug_func;
  236. if (r != NULL) *r=realloc_debug_func;
  237. if (f != NULL) *f=free_debug_func;
  238. if (so != NULL) *so=set_debug_options_func;
  239. if (go != NULL) *go=get_debug_options_func;
  240. }
  241. void *CRYPTO_malloc_locked(int num, const char *file, int line)
  242. {
  243. void *ret = NULL;
  244. extern unsigned char cleanse_ctr;
  245. if (num <= 0) return NULL;
  246. allow_customize = 0;
  247. if (malloc_debug_func != NULL)
  248. {
  249. allow_customize_debug = 0;
  250. malloc_debug_func(NULL, num, file, line, 0);
  251. }
  252. ret = malloc_locked_ex_func(num,file,line);
  253. #ifdef LEVITTE_DEBUG_MEM
  254. fprintf(stderr, "LEVITTE_DEBUG_MEM: > 0x%p (%d)\n", ret, num);
  255. #endif
  256. if (malloc_debug_func != NULL)
  257. malloc_debug_func(ret, num, file, line, 1);
  258. /* Create a dependency on the value of 'cleanse_ctr' so our memory
  259. * sanitisation function can't be optimised out. NB: We only do
  260. * this for >2Kb so the overhead doesn't bother us. */
  261. if(ret && (num > 2048))
  262. ((unsigned char *)ret)[0] = cleanse_ctr;
  263. return ret;
  264. }
  265. void CRYPTO_free_locked(void *str)
  266. {
  267. if (free_debug_func != NULL)
  268. free_debug_func(str, 0);
  269. #ifdef LEVITTE_DEBUG_MEM
  270. fprintf(stderr, "LEVITTE_DEBUG_MEM: < 0x%p\n", str);
  271. #endif
  272. free_locked_func(str);
  273. if (free_debug_func != NULL)
  274. free_debug_func(NULL, 1);
  275. }
  276. void *CRYPTO_malloc(int num, const char *file, int line)
  277. {
  278. void *ret = NULL;
  279. extern unsigned char cleanse_ctr;
  280. if (num <= 0) return NULL;
  281. allow_customize = 0;
  282. if (malloc_debug_func != NULL)
  283. {
  284. allow_customize_debug = 0;
  285. malloc_debug_func(NULL, num, file, line, 0);
  286. }
  287. ret = malloc_ex_func(num,file,line);
  288. #ifdef LEVITTE_DEBUG_MEM
  289. fprintf(stderr, "LEVITTE_DEBUG_MEM: > 0x%p (%d)\n", ret, num);
  290. #endif
  291. if (malloc_debug_func != NULL)
  292. malloc_debug_func(ret, num, file, line, 1);
  293. /* Create a dependency on the value of 'cleanse_ctr' so our memory
  294. * sanitisation function can't be optimised out. NB: We only do
  295. * this for >2Kb so the overhead doesn't bother us. */
  296. if(ret && (num > 2048))
  297. ((unsigned char *)ret)[0] = cleanse_ctr;
  298. return ret;
  299. }
  300. void *CRYPTO_realloc(void *str, int num, const char *file, int line)
  301. {
  302. void *ret = NULL;
  303. if (str == NULL)
  304. return CRYPTO_malloc(num, file, line);
  305. if (num <= 0) return NULL;
  306. if (realloc_debug_func != NULL)
  307. realloc_debug_func(str, NULL, num, file, line, 0);
  308. ret = realloc_ex_func(str,num,file,line);
  309. #ifdef LEVITTE_DEBUG_MEM
  310. fprintf(stderr, "LEVITTE_DEBUG_MEM: | 0x%p -> 0x%p (%d)\n", str, ret, num);
  311. #endif
  312. if (realloc_debug_func != NULL)
  313. realloc_debug_func(str, ret, num, file, line, 1);
  314. return ret;
  315. }
  316. void *CRYPTO_realloc_clean(void *str, int old_len, int num, const char *file,
  317. int line)
  318. {
  319. void *ret = NULL;
  320. if (str == NULL)
  321. return CRYPTO_malloc(num, file, line);
  322. if (num <= 0) return NULL;
  323. if (realloc_debug_func != NULL)
  324. realloc_debug_func(str, NULL, num, file, line, 0);
  325. ret=malloc_ex_func(num,file,line);
  326. if(ret)
  327. {
  328. memcpy(ret,str,old_len);
  329. OPENSSL_cleanse(str,old_len);
  330. free_func(str);
  331. }
  332. #ifdef LEVITTE_DEBUG_MEM
  333. fprintf(stderr,
  334. "LEVITTE_DEBUG_MEM: | 0x%p -> 0x%p (%d)\n",
  335. str, ret, num);
  336. #endif
  337. if (realloc_debug_func != NULL)
  338. realloc_debug_func(str, ret, num, file, line, 1);
  339. return ret;
  340. }
  341. void CRYPTO_free(void *str)
  342. {
  343. if (free_debug_func != NULL)
  344. free_debug_func(str, 0);
  345. #ifdef LEVITTE_DEBUG_MEM
  346. fprintf(stderr, "LEVITTE_DEBUG_MEM: < 0x%p\n", str);
  347. #endif
  348. free_func(str);
  349. if (free_debug_func != NULL)
  350. free_debug_func(NULL, 1);
  351. }
  352. void *CRYPTO_remalloc(void *a, int num, const char *file, int line)
  353. {
  354. if (a != NULL) OPENSSL_free(a);
  355. a=(char *)OPENSSL_malloc(num);
  356. return(a);
  357. }
  358. void CRYPTO_set_mem_debug_options(long bits)
  359. {
  360. if (set_debug_options_func != NULL)
  361. set_debug_options_func(bits);
  362. }
  363. long CRYPTO_get_mem_debug_options(void)
  364. {
  365. if (get_debug_options_func != NULL)
  366. return get_debug_options_func();
  367. return 0;
  368. }
  369. int CRYPTO_push_info_(const char *info, const char *file, int line)
  370. {
  371. if (push_info_func)
  372. return push_info_func(info, file, line);
  373. return 1;
  374. }
  375. int CRYPTO_pop_info(void)
  376. {
  377. if (pop_info_func)
  378. return pop_info_func();
  379. return 1;
  380. }
  381. int CRYPTO_remove_all_info(void)
  382. {
  383. if (remove_all_info_func)
  384. return remove_all_info_func();
  385. return 1;
  386. }