mem.c 16 KB

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