mem.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472
  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 "internal/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. #ifdef CRYPTO_MDEBUG
  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. #else
  109. /*
  110. * applications can use CRYPTO_malloc_debug_init() to select above case at
  111. * run-time
  112. */
  113. static void (*malloc_debug_func) (void *, int, const char *, int, int) = NULL;
  114. static void (*realloc_debug_func) (void *, void *, int, const char *, int,
  115. int)
  116. = NULL;
  117. static void (*free_debug_func) (void *, int) = NULL;
  118. static void (*set_debug_options_func) (long) = NULL;
  119. static long (*get_debug_options_func) (void) = NULL;
  120. #endif
  121. int CRYPTO_set_mem_functions(void *(*m) (size_t), void *(*r) (void *, size_t),
  122. void (*f) (void *))
  123. {
  124. /* Dummy call just to ensure OPENSSL_init() gets linked in */
  125. OPENSSL_init();
  126. if (!allow_customize)
  127. return 0;
  128. if ((m == 0) || (r == 0) || (f == 0))
  129. return 0;
  130. malloc_func = m;
  131. malloc_ex_func = default_malloc_ex;
  132. realloc_func = r;
  133. realloc_ex_func = default_realloc_ex;
  134. free_func = f;
  135. malloc_locked_func = m;
  136. malloc_locked_ex_func = default_malloc_locked_ex;
  137. free_locked_func = f;
  138. return 1;
  139. }
  140. int CRYPTO_set_mem_ex_functions(void *(*m) (size_t, const char *, int),
  141. void *(*r) (void *, size_t, const char *,
  142. int), void (*f) (void *))
  143. {
  144. if (!allow_customize)
  145. return 0;
  146. if ((m == 0) || (r == 0) || (f == 0))
  147. return 0;
  148. malloc_func = 0;
  149. malloc_ex_func = m;
  150. realloc_func = 0;
  151. realloc_ex_func = r;
  152. free_func = f;
  153. malloc_locked_func = 0;
  154. malloc_locked_ex_func = m;
  155. free_locked_func = f;
  156. return 1;
  157. }
  158. int CRYPTO_set_locked_mem_functions(void *(*m) (size_t), void (*f) (void *))
  159. {
  160. if (!allow_customize)
  161. return 0;
  162. if ((m == NULL) || (f == NULL))
  163. return 0;
  164. malloc_locked_func = m;
  165. malloc_locked_ex_func = default_malloc_locked_ex;
  166. free_locked_func = f;
  167. return 1;
  168. }
  169. int CRYPTO_set_locked_mem_ex_functions(void *(*m) (size_t, const char *, int),
  170. void (*f) (void *))
  171. {
  172. if (!allow_customize)
  173. return 0;
  174. if ((m == NULL) || (f == NULL))
  175. return 0;
  176. malloc_locked_func = 0;
  177. malloc_locked_ex_func = m;
  178. free_func = f;
  179. return 1;
  180. }
  181. int CRYPTO_set_mem_debug_functions(void (*m)
  182. (void *, int, const char *, int, int),
  183. void (*r) (void *, void *, int,
  184. const char *, int, int),
  185. void (*f) (void *, int), void (*so) (long),
  186. long (*go) (void))
  187. {
  188. if (!allow_customize_debug)
  189. return 0;
  190. malloc_debug_func = m;
  191. realloc_debug_func = r;
  192. free_debug_func = f;
  193. set_debug_options_func = so;
  194. get_debug_options_func = go;
  195. return 1;
  196. }
  197. void CRYPTO_get_mem_functions(void *(**m) (size_t),
  198. void *(**r) (void *, size_t),
  199. void (**f) (void *))
  200. {
  201. if (m != NULL)
  202. *m = (malloc_ex_func == default_malloc_ex) ? malloc_func : 0;
  203. if (r != NULL)
  204. *r = (realloc_ex_func == default_realloc_ex) ? realloc_func : 0;
  205. if (f != NULL)
  206. *f = free_func;
  207. }
  208. void CRYPTO_get_mem_ex_functions(void *(**m) (size_t, const char *, int),
  209. void *(**r) (void *, size_t, const char *,
  210. int), void (**f) (void *))
  211. {
  212. if (m != NULL)
  213. *m = (malloc_ex_func != default_malloc_ex) ? malloc_ex_func : 0;
  214. if (r != NULL)
  215. *r = (realloc_ex_func != default_realloc_ex) ? realloc_ex_func : 0;
  216. if (f != NULL)
  217. *f = free_func;
  218. }
  219. void CRYPTO_get_locked_mem_functions(void *(**m) (size_t),
  220. void (**f) (void *))
  221. {
  222. if (m != NULL)
  223. *m = (malloc_locked_ex_func == default_malloc_locked_ex) ?
  224. malloc_locked_func : 0;
  225. if (f != NULL)
  226. *f = free_locked_func;
  227. }
  228. void CRYPTO_get_locked_mem_ex_functions(void
  229. *(**m) (size_t, const char *, int),
  230. void (**f) (void *))
  231. {
  232. if (m != NULL)
  233. *m = (malloc_locked_ex_func != default_malloc_locked_ex) ?
  234. malloc_locked_ex_func : 0;
  235. if (f != NULL)
  236. *f = free_locked_func;
  237. }
  238. void CRYPTO_get_mem_debug_functions(void (**m)
  239. (void *, int, const char *, int, int),
  240. void (**r) (void *, void *, int,
  241. const char *, int, int),
  242. void (**f) (void *, int),
  243. void (**so) (long), long (**go) (void))
  244. {
  245. if (m != NULL)
  246. *m = malloc_debug_func;
  247. if (r != NULL)
  248. *r = realloc_debug_func;
  249. if (f != NULL)
  250. *f = free_debug_func;
  251. if (so != NULL)
  252. *so = set_debug_options_func;
  253. if (go != NULL)
  254. *go = get_debug_options_func;
  255. }
  256. void *CRYPTO_malloc_locked(int num, const char *file, int line)
  257. {
  258. void *ret = NULL;
  259. if (num <= 0)
  260. return NULL;
  261. if (allow_customize)
  262. allow_customize = 0;
  263. if (malloc_debug_func != NULL) {
  264. if (allow_customize_debug)
  265. allow_customize_debug = 0;
  266. malloc_debug_func(NULL, num, file, line, 0);
  267. }
  268. ret = malloc_locked_ex_func(num, file, line);
  269. #ifdef LEVITTE_DEBUG_MEM
  270. fprintf(stderr, "LEVITTE_DEBUG_MEM: > 0x%p (%d)\n", ret, num);
  271. #endif
  272. if (malloc_debug_func != NULL)
  273. malloc_debug_func(ret, num, file, line, 1);
  274. #ifndef OPENSSL_CPUID_OBJ
  275. /*
  276. * Create a dependency on the value of 'cleanse_ctr' so our memory
  277. * sanitisation function can't be optimised out. NB: We only do this for
  278. * >2Kb so the overhead doesn't bother us.
  279. */
  280. if (ret && (num > 2048)) {
  281. extern unsigned char cleanse_ctr;
  282. ((unsigned char *)ret)[0] = cleanse_ctr;
  283. }
  284. #endif
  285. return ret;
  286. }
  287. void CRYPTO_free_locked(void *str)
  288. {
  289. if (free_debug_func != NULL)
  290. free_debug_func(str, 0);
  291. #ifdef LEVITTE_DEBUG_MEM
  292. fprintf(stderr, "LEVITTE_DEBUG_MEM: < 0x%p\n", str);
  293. #endif
  294. free_locked_func(str);
  295. if (free_debug_func != NULL)
  296. free_debug_func(NULL, 1);
  297. }
  298. void *CRYPTO_malloc(int num, const char *file, int line)
  299. {
  300. void *ret = NULL;
  301. if (num <= 0)
  302. return NULL;
  303. if (allow_customize)
  304. allow_customize = 0;
  305. if (malloc_debug_func != NULL) {
  306. if (allow_customize_debug)
  307. allow_customize_debug = 0;
  308. malloc_debug_func(NULL, num, file, line, 0);
  309. }
  310. ret = malloc_ex_func(num, file, line);
  311. #ifdef LEVITTE_DEBUG_MEM
  312. fprintf(stderr, "LEVITTE_DEBUG_MEM: > 0x%p (%d)\n", ret, num);
  313. #endif
  314. if (malloc_debug_func != NULL)
  315. malloc_debug_func(ret, num, file, line, 1);
  316. #ifndef OPENSSL_CPUID_OBJ
  317. /*
  318. * Create a dependency on the value of 'cleanse_ctr' so our memory
  319. * sanitisation function can't be optimised out. NB: We only do this for
  320. * >2Kb so the overhead doesn't bother us.
  321. */
  322. if (ret && (num > 2048)) {
  323. extern unsigned char cleanse_ctr;
  324. ((unsigned char *)ret)[0] = cleanse_ctr;
  325. }
  326. #endif
  327. return ret;
  328. }
  329. char *CRYPTO_strdup(const char *str, const char *file, int line)
  330. {
  331. char *ret = CRYPTO_malloc(strlen(str) + 1, file, line);
  332. if (ret == NULL)
  333. return NULL;
  334. strcpy(ret, str);
  335. return ret;
  336. }
  337. void *CRYPTO_realloc(void *str, int num, const char *file, int line)
  338. {
  339. void *ret = NULL;
  340. if (str == NULL)
  341. return CRYPTO_malloc(num, file, line);
  342. if (num <= 0)
  343. return NULL;
  344. if (realloc_debug_func != NULL)
  345. realloc_debug_func(str, NULL, num, file, line, 0);
  346. ret = realloc_ex_func(str, num, file, line);
  347. #ifdef LEVITTE_DEBUG_MEM
  348. fprintf(stderr, "LEVITTE_DEBUG_MEM: | 0x%p -> 0x%p (%d)\n", str,
  349. ret, num);
  350. #endif
  351. if (realloc_debug_func != NULL)
  352. realloc_debug_func(str, ret, num, file, line, 1);
  353. return ret;
  354. }
  355. void *CRYPTO_realloc_clean(void *str, int old_len, int num, const char *file,
  356. int line)
  357. {
  358. void *ret = NULL;
  359. if (str == NULL)
  360. return CRYPTO_malloc(num, file, line);
  361. if (num <= 0)
  362. return NULL;
  363. /*
  364. * We don't support shrinking the buffer. Note the memcpy that copies
  365. * |old_len| bytes to the new buffer, below.
  366. */
  367. if (num < old_len)
  368. return NULL;
  369. if (realloc_debug_func != NULL)
  370. realloc_debug_func(str, NULL, num, file, line, 0);
  371. ret = malloc_ex_func(num, file, line);
  372. if (ret) {
  373. memcpy(ret, str, old_len);
  374. OPENSSL_clear_free(str, old_len);
  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_clear_free(void *str, size_t num)
  397. {
  398. if (!str)
  399. return;
  400. if (num)
  401. OPENSSL_cleanse(str, num);
  402. CRYPTO_free(str);
  403. }
  404. void *CRYPTO_remalloc(void *a, int num, const char *file, int line)
  405. {
  406. OPENSSL_free(a);
  407. a = OPENSSL_malloc(num);
  408. return (a);
  409. }
  410. void CRYPTO_set_mem_debug_options(long bits)
  411. {
  412. if (set_debug_options_func != NULL)
  413. set_debug_options_func(bits);
  414. }
  415. long CRYPTO_get_mem_debug_options(void)
  416. {
  417. if (get_debug_options_func != NULL)
  418. return get_debug_options_func();
  419. return 0;
  420. }