Inline LHASH_OF
[openssl.git] / crypto / mem_dbg.c
1 /* crypto/mem_dbg.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  * Copyright (c) 1998-2006 The OpenSSL Project.  All rights reserved.
60  *
61  * Redistribution and use in source and binary forms, with or without
62  * modification, are permitted provided that the following conditions
63  * are met:
64  *
65  * 1. Redistributions of source code must retain the above copyright
66  *    notice, this list of conditions and the following disclaimer.
67  *
68  * 2. Redistributions in binary form must reproduce the above copyright
69  *    notice, this list of conditions and the following disclaimer in
70  *    the documentation and/or other materials provided with the
71  *    distribution.
72  *
73  * 3. All advertising materials mentioning features or use of this
74  *    software must display the following acknowledgment:
75  *    "This product includes software developed by the OpenSSL Project
76  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
77  *
78  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
79  *    endorse or promote products derived from this software without
80  *    prior written permission. For written permission, please contact
81  *    openssl-core@openssl.org.
82  *
83  * 5. Products derived from this software may not be called "OpenSSL"
84  *    nor may "OpenSSL" appear in their names without prior written
85  *    permission of the OpenSSL Project.
86  *
87  * 6. Redistributions of any form whatsoever must retain the following
88  *    acknowledgment:
89  *    "This product includes software developed by the OpenSSL Project
90  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
91  *
92  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
93  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
94  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
95  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
96  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
97  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
98  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
99  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
100  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
101  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
102  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
103  * OF THE POSSIBILITY OF SUCH DAMAGE.
104  * ====================================================================
105  *
106  * This product includes cryptographic software written by Eric Young
107  * (eay@cryptsoft.com).  This product includes software written by Tim
108  * Hudson (tjh@cryptsoft.com).
109  *
110  */
111
112 #include <stdio.h>
113 #include <stdlib.h>
114 #include <time.h>
115 #include "internal/cryptlib.h"
116 #include <openssl/crypto.h>
117 #include <openssl/buffer.h>
118 #include <openssl/bio.h>
119 #include <openssl/lhash.h>
120 #if defined(CRYPTO_MDEBUG_BACKTRACE) && defined(__GNUC__)
121 # include <execinfo.h>
122 #endif
123
124 /*
125  * The state changes to CRYPTO_MEM_CHECK_ON | CRYPTO_MEM_CHECK_ENABLE when
126  * the application asks for it (usually after library initialisation for
127  * which no book-keeping is desired). State CRYPTO_MEM_CHECK_ON exists only
128  * temporarily when the library thinks that certain allocations should not be
129  * checked (e.g. the data structures used for memory checking).  It is not
130  * suitable as an initial state: the library will unexpectedly enable memory
131  * checking when it executes one of those sections that want to disable
132  * checking temporarily. State CRYPTO_MEM_CHECK_ENABLE without ..._ON makes
133  * no sense whatsoever.
134  */
135 #ifndef OPENSSL_NO_CRYPTO_MDEBUG
136 static int mh_mode = CRYPTO_MEM_CHECK_OFF;
137 #endif
138
139 #ifndef OPENSSL_NO_CRYPTO_MDEBUG
140 static unsigned long order = 0; /* number of memory requests */
141
142 /*-
143  * For application-defined information (static C-string `info')
144  * to be displayed in memory leak list.
145  * Each thread has its own stack.  For applications, there is
146  *   OPENSSL_mem_debug_push("...")     to push an entry,
147  *   OPENSSL_mem_debug_pop()     to pop an entry,
148  */
149 struct app_mem_info_st {
150     CRYPTO_THREADID threadid;
151     const char *file;
152     int line;
153     const char *info;
154     struct app_mem_info_st *next; /* tail of thread's stack */
155     int references;
156 };
157
158 /*
159  * hash-table with those app_mem_info_st's that are at the
160  * top of their thread's stack (with `thread' as key); access requires
161  * MALLOC2 lock
162  */
163 static LHASH_OF(APP_INFO) *amih = NULL;
164
165 /* memory-block description */
166 struct mem_st {
167     void *addr;
168     int num;
169     const char *file;
170     int line;
171     CRYPTO_THREADID threadid;
172     unsigned long order;
173     time_t time;
174     APP_INFO *app_info;
175 #if defined(CRYPTO_MDEBUG_BACKTRACE) && defined(__GNUC__)
176     void *array[30];
177     size_t array_siz;
178 #endif
179 };
180
181 static LHASH_OF(MEM) *mh = NULL; /* hash-table of memory requests (address as
182                                   * key); access requires MALLOC2 lock */
183
184 /* num_disable > 0 iff mh_mode == CRYPTO_MEM_CHECK_ON (w/o ..._ENABLE) */
185 static unsigned int num_disable = 0;
186
187 /*
188  * Valid iff num_disable > 0.  CRYPTO_LOCK_MALLOC2 is locked exactly in this
189  * case (by the thread named in disabling_thread).
190  */
191 static CRYPTO_THREADID disabling_threadid;
192
193 static void app_info_free(APP_INFO *inf)
194 {
195     if (!inf)
196         return;
197     if (--(inf->references) <= 0) {
198         app_info_free(inf->next);
199         OPENSSL_free(inf);
200     }
201 }
202 #endif
203
204 int CRYPTO_mem_ctrl(int mode)
205 {
206 #ifdef OPENSSL_NO_CRYPTO_MDEBUG
207     return mode - mode;
208 #else
209     int ret = mh_mode;
210
211     CRYPTO_w_lock(CRYPTO_LOCK_MALLOC);
212     switch (mode) {
213     default:
214         break;
215
216     case CRYPTO_MEM_CHECK_ON:
217         mh_mode = CRYPTO_MEM_CHECK_ON | CRYPTO_MEM_CHECK_ENABLE;
218         num_disable = 0;
219         break;
220
221     case CRYPTO_MEM_CHECK_OFF:
222         mh_mode = 0;
223         num_disable = 0;
224         break;
225
226     /* switch off temporarily (for library-internal use): */
227     case CRYPTO_MEM_CHECK_DISABLE:
228         if (mh_mode & CRYPTO_MEM_CHECK_ON) {
229             CRYPTO_THREADID cur;
230             CRYPTO_THREADID_current(&cur);
231             /* see if we don't have the MALLOC2 lock already */
232             if (!num_disable
233                 || CRYPTO_THREADID_cmp(&disabling_threadid, &cur)) {
234                 /*
235                  * Long-time lock CRYPTO_LOCK_MALLOC2 must not be claimed
236                  * while we're holding CRYPTO_LOCK_MALLOC, or we'll deadlock
237                  * if somebody else holds CRYPTO_LOCK_MALLOC2 (and cannot
238                  * release it because we block entry to this function). Give
239                  * them a chance, first, and then claim the locks in
240                  * appropriate order (long-time lock first).
241                  */
242                 CRYPTO_w_unlock(CRYPTO_LOCK_MALLOC);
243                 /*
244                  * Note that after we have waited for CRYPTO_LOCK_MALLOC2 and
245                  * CRYPTO_LOCK_MALLOC, we'll still be in the right "case" and
246                  * "if" branch because MemCheck_start and MemCheck_stop may
247                  * never be used while there are multiple OpenSSL threads.
248                  */
249                 CRYPTO_w_lock(CRYPTO_LOCK_MALLOC2);
250                 CRYPTO_w_lock(CRYPTO_LOCK_MALLOC);
251                 mh_mode &= ~CRYPTO_MEM_CHECK_ENABLE;
252                 CRYPTO_THREADID_cpy(&disabling_threadid, &cur);
253             }
254             num_disable++;
255         }
256         break;
257
258     case CRYPTO_MEM_CHECK_ENABLE:
259         if (mh_mode & CRYPTO_MEM_CHECK_ON) {
260             if (num_disable) {  /* always true, or something is going wrong */
261                 num_disable--;
262                 if (num_disable == 0) {
263                     mh_mode |= CRYPTO_MEM_CHECK_ENABLE;
264                     CRYPTO_w_unlock(CRYPTO_LOCK_MALLOC2);
265                 }
266             }
267         }
268         break;
269     }
270     CRYPTO_w_unlock(CRYPTO_LOCK_MALLOC);
271     return (ret);
272 #endif
273 }
274
275 #ifndef OPENSSL_NO_CRYPTO_MDEBUG
276
277 static int mem_check_on(void)
278 {
279     int ret = 0;
280
281     if (mh_mode & CRYPTO_MEM_CHECK_ON) {
282         CRYPTO_THREADID cur;
283         CRYPTO_THREADID_current(&cur);
284         CRYPTO_r_lock(CRYPTO_LOCK_MALLOC);
285
286         ret = (mh_mode & CRYPTO_MEM_CHECK_ENABLE)
287             || CRYPTO_THREADID_cmp(&disabling_threadid, &cur);
288
289         CRYPTO_r_unlock(CRYPTO_LOCK_MALLOC);
290     }
291     return (ret);
292 }
293
294 static int mem_cmp(const MEM *a, const MEM *b)
295 {
296 #ifdef _WIN64
297     const char *ap = (const char *)a->addr, *bp = (const char *)b->addr;
298     if (ap == bp)
299         return 0;
300     else if (ap > bp)
301         return 1;
302     else
303         return -1;
304 #else
305     return (const char *)a->addr - (const char *)b->addr;
306 #endif
307 }
308
309 static IMPLEMENT_LHASH_COMP_FN(mem, MEM)
310
311 static unsigned long mem_hash(const MEM *a)
312 {
313     size_t ret;
314
315     ret = (size_t)a->addr;
316
317     ret = ret * 17851 + (ret >> 14) * 7 + (ret >> 4) * 251;
318     return (ret);
319 }
320
321 static IMPLEMENT_LHASH_HASH_FN(mem, MEM)
322
323 /* static int app_info_cmp(APP_INFO *a, APP_INFO *b) */
324 static int app_info_cmp(const void *a_void, const void *b_void)
325 {
326     return CRYPTO_THREADID_cmp(&((const APP_INFO *)a_void)->threadid,
327                                &((const APP_INFO *)b_void)->threadid);
328 }
329
330 static IMPLEMENT_LHASH_COMP_FN(app_info, APP_INFO)
331
332 static unsigned long app_info_hash(const APP_INFO *a)
333 {
334     unsigned long ret;
335
336     ret = CRYPTO_THREADID_hash(&a->threadid);
337     /* This is left in as a "who am I to question legacy?" measure */
338     ret = ret * 17851 + (ret >> 14) * 7 + (ret >> 4) * 251;
339     return (ret);
340 }
341
342 static IMPLEMENT_LHASH_HASH_FN(app_info, APP_INFO)
343
344 static APP_INFO *pop_info(void)
345 {
346     APP_INFO tmp;
347     APP_INFO *ret = NULL;
348
349     if (amih != NULL) {
350         CRYPTO_THREADID_current(&tmp.threadid);
351         if ((ret = lh_APP_INFO_delete(amih, &tmp)) != NULL) {
352             APP_INFO *next = ret->next;
353
354             if (next != NULL) {
355                 next->references++;
356                 (void)lh_APP_INFO_insert(amih, next);
357             }
358             if (--(ret->references) <= 0) {
359                 ret->next = NULL;
360                 if (next != NULL)
361                     next->references--;
362                 OPENSSL_free(ret);
363             }
364         }
365     }
366     return (ret);
367 }
368
369 int CRYPTO_mem_debug_push(const char *info, const char *file, int line)
370 {
371     APP_INFO *ami, *amim;
372     int ret = 0;
373
374     if (mem_check_on()) {
375         CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_DISABLE);
376
377         if ((ami = OPENSSL_malloc(sizeof(*ami))) == NULL)
378             goto err;
379         if (amih == NULL) {
380             if ((amih = lh_APP_INFO_new()) == NULL) {
381                 OPENSSL_free(ami);
382                 goto err;
383             }
384         }
385
386         CRYPTO_THREADID_current(&ami->threadid);
387         ami->file = file;
388         ami->line = line;
389         ami->info = info;
390         ami->references = 1;
391         ami->next = NULL;
392
393         if ((amim = lh_APP_INFO_insert(amih, ami)) != NULL)
394             ami->next = amim;
395         ret = 1;
396  err:
397         CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ENABLE);
398     }
399
400     return (ret);
401 }
402
403 int CRYPTO_mem_debug_pop(void)
404 {
405     int ret = 0;
406
407     if (mem_check_on()) {
408         CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_DISABLE);
409         ret = (pop_info() != NULL);
410         CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ENABLE);
411     }
412     return (ret);
413 }
414
415 static unsigned long break_order_num = 0;
416
417 void CRYPTO_mem_debug_malloc(void *addr, size_t num, int before_p,
418                              const char *file, int line)
419 {
420     MEM *m, *mm;
421     APP_INFO tmp, *amim;
422
423     switch (before_p & 127) {
424     case 0:
425         break;
426     case 1:
427         if (addr == NULL)
428             break;
429
430         if (mem_check_on()) {
431             CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_DISABLE);
432             if ((m = OPENSSL_malloc(sizeof(*m))) == NULL) {
433                 OPENSSL_free(addr);
434                 CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ENABLE);
435                 return;
436             }
437             if (mh == NULL) {
438                 if ((mh = lh_MEM_new()) == NULL) {
439                     OPENSSL_free(addr);
440                     OPENSSL_free(m);
441                     addr = NULL;
442                     goto err;
443                 }
444             }
445
446             m->addr = addr;
447             m->file = file;
448             m->line = line;
449             m->num = num;
450             CRYPTO_THREADID_current(&m->threadid);
451
452             if (order == break_order_num) {
453                 /* BREAK HERE */
454                 m->order = order;
455             }
456             m->order = order++;
457 # if defined(CRYPTO_MDEBUG_BACKTRACE) && defined(__GNUC__)
458             m->array_siz = backtrace(m->array, OSSL_NELEM(m->array));
459 # endif
460             m->time = time(NULL);
461
462             CRYPTO_THREADID_current(&tmp.threadid);
463             m->app_info = NULL;
464             if (amih != NULL
465                 && (amim = lh_APP_INFO_retrieve(amih, &tmp)) != NULL) {
466                 m->app_info = amim;
467                 amim->references++;
468             }
469
470             if ((mm = lh_MEM_insert(mh, m)) != NULL) {
471                 /* Not good, but don't sweat it */
472                 if (mm->app_info != NULL) {
473                     mm->app_info->references--;
474                 }
475                 OPENSSL_free(mm);
476             }
477  err:
478             CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ENABLE);
479         }
480         break;
481     }
482     return;
483 }
484
485 void CRYPTO_mem_debug_free(void *addr, int before_p)
486 {
487     MEM m, *mp;
488
489     switch (before_p) {
490     case 0:
491         if (addr == NULL)
492             break;
493
494         if (mem_check_on() && (mh != NULL)) {
495             CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_DISABLE);
496
497             m.addr = addr;
498             mp = lh_MEM_delete(mh, &m);
499             if (mp != NULL) {
500                 app_info_free(mp->app_info);
501                 OPENSSL_free(mp);
502             }
503
504             CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ENABLE);
505         }
506         break;
507     case 1:
508         break;
509     }
510 }
511
512 void CRYPTO_mem_debug_realloc(void *addr1, void *addr2, size_t num,
513                               int before_p, const char *file, int line)
514 {
515     MEM m, *mp;
516
517     switch (before_p) {
518     case 0:
519         break;
520     case 1:
521         if (addr2 == NULL)
522             break;
523
524         if (addr1 == NULL) {
525             CRYPTO_mem_debug_malloc(addr2, num, 128 | before_p, file, line);
526             break;
527         }
528
529         if (mem_check_on()) {
530             CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_DISABLE);
531
532             m.addr = addr1;
533             mp = lh_MEM_delete(mh, &m);
534             if (mp != NULL) {
535                 mp->addr = addr2;
536                 mp->num = num;
537 #if defined(CRYPTO_MDEBUG_BACKTRACE) && defined(__GNUC__)
538                 mp->array_siz = backtrace(mp->array, OSSL_NELEM(mp->array));
539 #endif
540                 (void)lh_MEM_insert(mh, mp);
541             }
542
543             CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ENABLE);
544         }
545         break;
546     }
547     return;
548 }
549
550 typedef struct mem_leak_st {
551     BIO *bio;
552     int chunks;
553     int seen;
554     long bytes;
555 } MEM_LEAK;
556
557 static void print_leak_doall_arg(const MEM *m, MEM_LEAK *l)
558 {
559     char buf[1024];
560     char *bufp = buf;
561     APP_INFO *amip;
562     int ami_cnt;
563     struct tm *lcl = NULL;
564     CRYPTO_THREADID ti;
565
566 #define BUF_REMAIN (sizeof buf - (size_t)(bufp - buf))
567
568     /* Is one "leak" the BIO we were given? */
569     if (m->addr == (char *)l->bio) {
570         l->seen = 1;
571         return;
572     }
573
574     lcl = localtime(&m->time);
575     BIO_snprintf(bufp, BUF_REMAIN, "[%02d:%02d:%02d] ",
576                  lcl->tm_hour, lcl->tm_min, lcl->tm_sec);
577     bufp += strlen(bufp);
578
579     BIO_snprintf(bufp, BUF_REMAIN, "%5lu file=%s, line=%d, ",
580                  m->order, m->file, m->line);
581     bufp += strlen(bufp);
582
583     BIO_snprintf(bufp, BUF_REMAIN, "thread=%lu, ",
584                  CRYPTO_THREADID_hash(&m->threadid));
585     bufp += strlen(bufp);
586
587     BIO_snprintf(bufp, BUF_REMAIN, "number=%d, address=%p\n",
588                  m->num, m->addr);
589     bufp += strlen(bufp);
590
591     BIO_puts(l->bio, buf);
592
593     l->chunks++;
594     l->bytes += m->num;
595
596     amip = m->app_info;
597     ami_cnt = 0;
598
599     if (amip) {
600         CRYPTO_THREADID_cpy(&ti, &amip->threadid);
601
602         do {
603             int buf_len;
604             int info_len;
605
606             ami_cnt++;
607             memset(buf, '>', ami_cnt);
608             BIO_snprintf(buf + ami_cnt, sizeof buf - ami_cnt,
609                          " thread=%lu, file=%s, line=%d, info=\"",
610                          CRYPTO_THREADID_hash(&amip->threadid), amip->file,
611                          amip->line);
612             buf_len = strlen(buf);
613             info_len = strlen(amip->info);
614             if (128 - buf_len - 3 < info_len) {
615                 memcpy(buf + buf_len, amip->info, 128 - buf_len - 3);
616                 buf_len = 128 - 3;
617             } else {
618                 OPENSSL_strlcpy(buf + buf_len, amip->info, sizeof buf - buf_len);
619                 buf_len = strlen(buf);
620             }
621             BIO_snprintf(buf + buf_len, sizeof buf - buf_len, "\"\n");
622
623             BIO_puts(l->bio, buf);
624
625             amip = amip->next;
626         }
627         while (amip && !CRYPTO_THREADID_cmp(&amip->threadid, &ti));
628     }
629
630 #if defined(CRYPTO_MDEBUG_BACKTRACE) && defined(__GNUC__)
631     {
632         size_t i;
633         char **strings = backtrace_symbols(m->array, m->array_siz);
634
635         for (i = 0; i < m->array_siz; i++)
636             fprintf(stderr, "##> %s\n", strings[i]);
637         free(strings);
638     }
639 #endif
640 }
641
642 static IMPLEMENT_LHASH_DOALL_ARG_FN(print_leak, const MEM, MEM_LEAK)
643
644 int CRYPTO_mem_leaks(BIO *b)
645 {
646     MEM_LEAK ml;
647
648     if (mh == NULL && amih == NULL)
649         return 1;
650
651     CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_DISABLE);
652
653     ml.bio = b;
654     ml.bytes = 0;
655     ml.chunks = 0;
656     ml.seen = 0;
657     if (mh != NULL)
658         lh_MEM_doall_arg(mh, LHASH_DOALL_ARG_FN(print_leak), MEM_LEAK, &ml);
659     /* Don't count the BIO that was passed in as a "leak" */
660     if (ml.seen && ml.chunks >= 1 && ml.bytes >= (int)sizeof (*b)) {
661         ml.chunks--;
662         ml.bytes -= (int)sizeof (*b);
663     }
664     if (ml.chunks != 0) {
665         BIO_printf(b, "%ld bytes leaked in %d chunks\n", ml.bytes, ml.chunks);
666     } else {
667         /*
668          * Make sure that, if we found no leaks, memory-leak debugging itself
669          * does not introduce memory leaks (which might irritate external
670          * debugging tools). (When someone enables leak checking, but does not
671          * call this function, we declare it to be their fault.)
672          */
673         int old_mh_mode;
674
675         CRYPTO_w_lock(CRYPTO_LOCK_MALLOC);
676
677         /*
678          * avoid deadlock when lh_free() uses CRYPTO_mem_debug_free(), which uses
679          * mem_check_on
680          */
681         old_mh_mode = mh_mode;
682         mh_mode = CRYPTO_MEM_CHECK_OFF;
683
684         lh_MEM_free(mh);
685         mh = NULL;
686         if (amih != NULL) {
687             if (lh_APP_INFO_num_items(amih) == 0) {
688                 lh_APP_INFO_free(amih);
689                 amih = NULL;
690             }
691         }
692
693         mh_mode = old_mh_mode;
694         CRYPTO_w_unlock(CRYPTO_LOCK_MALLOC);
695     }
696     CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ENABLE);
697     return ml.chunks == 0 ? 1 : 0;
698 }
699
700 # ifndef OPENSSL_NO_STDIO
701 int CRYPTO_mem_leaks_fp(FILE *fp)
702 {
703     BIO *b;
704     int ret;
705
706     if (mh == NULL)
707         return 0;
708     /*
709      * Need to turn off memory checking when allocated BIOs ... especially as
710      * we're creating them at a time when we're trying to check we've not
711      * left anything un-free()'d!!
712      */
713     CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_DISABLE);
714     b = BIO_new(BIO_s_file());
715     CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ENABLE);
716     if (b == NULL)
717         return -1;
718     BIO_set_fp(b, fp, BIO_NOCLOSE);
719     ret = CRYPTO_mem_leaks(b);
720     BIO_free(b);
721     return ret;
722 }
723 # endif
724
725 #endif