Move & split opensslconf.h.in
[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 unsigned long mem_hash(const MEM *a)
310 {
311     size_t ret;
312
313     ret = (size_t)a->addr;
314
315     ret = ret * 17851 + (ret >> 14) * 7 + (ret >> 4) * 251;
316     return (ret);
317 }
318
319 static int app_info_cmp(const APP_INFO *a, const APP_INFO *b)
320 {
321     return CRYPTO_THREADID_cmp(&a->threadid, &b->threadid);
322 }
323
324 static unsigned long app_info_hash(const APP_INFO *a)
325 {
326     unsigned long ret;
327
328     ret = CRYPTO_THREADID_hash(&a->threadid);
329     /* This is left in as a "who am I to question legacy?" measure */
330     ret = ret * 17851 + (ret >> 14) * 7 + (ret >> 4) * 251;
331     return (ret);
332 }
333
334 /* returns 1 if there was an info to pop, 0 if the stack was empty. */
335 static int pop_info(void)
336 {
337     APP_INFO tmp;
338     APP_INFO *current = NULL;
339
340     if (amih != NULL) {
341         CRYPTO_THREADID_current(&tmp.threadid);
342         if ((current = lh_APP_INFO_delete(amih, &tmp)) != NULL) {
343             APP_INFO *next = current->next;
344
345             if (next != NULL) {
346                 next->references++;
347                 (void)lh_APP_INFO_insert(amih, next);
348             }
349             if (--(current->references) <= 0) {
350                 current->next = NULL;
351                 if (next != NULL)
352                     next->references--;
353                 OPENSSL_free(current);
354             }
355             return 1;
356         }
357     }
358     return 0;
359 }
360
361 int CRYPTO_mem_debug_push(const char *info, const char *file, int line)
362 {
363     APP_INFO *ami, *amim;
364     int ret = 0;
365
366     if (mem_check_on()) {
367         CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_DISABLE);
368
369         if ((ami = OPENSSL_malloc(sizeof(*ami))) == NULL)
370             goto err;
371         if (amih == NULL) {
372             if ((amih = lh_APP_INFO_new(app_info_hash, app_info_cmp)) == NULL) {
373                 OPENSSL_free(ami);
374                 goto err;
375             }
376         }
377
378         CRYPTO_THREADID_current(&ami->threadid);
379         ami->file = file;
380         ami->line = line;
381         ami->info = info;
382         ami->references = 1;
383         ami->next = NULL;
384
385         if ((amim = lh_APP_INFO_insert(amih, ami)) != NULL)
386             ami->next = amim;
387         ret = 1;
388  err:
389         CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ENABLE);
390     }
391
392     return (ret);
393 }
394
395 int CRYPTO_mem_debug_pop(void)
396 {
397     int ret = 0;
398
399     if (mem_check_on()) {
400         CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_DISABLE);
401         ret = pop_info();
402         CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ENABLE);
403     }
404     return (ret);
405 }
406
407 static unsigned long break_order_num = 0;
408
409 void CRYPTO_mem_debug_malloc(void *addr, size_t num, int before_p,
410                              const char *file, int line)
411 {
412     MEM *m, *mm;
413     APP_INFO tmp, *amim;
414
415     switch (before_p & 127) {
416     case 0:
417         break;
418     case 1:
419         if (addr == NULL)
420             break;
421
422         if (mem_check_on()) {
423             CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_DISABLE);
424             if ((m = OPENSSL_malloc(sizeof(*m))) == NULL) {
425                 OPENSSL_free(addr);
426                 CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ENABLE);
427                 return;
428             }
429             if (mh == NULL) {
430                 if ((mh = lh_MEM_new(mem_hash, mem_cmp)) == NULL) {
431                     OPENSSL_free(addr);
432                     OPENSSL_free(m);
433                     addr = NULL;
434                     goto err;
435                 }
436             }
437
438             m->addr = addr;
439             m->file = file;
440             m->line = line;
441             m->num = num;
442             CRYPTO_THREADID_current(&m->threadid);
443
444             if (order == break_order_num) {
445                 /* BREAK HERE */
446                 m->order = order;
447             }
448             m->order = order++;
449 # if defined(CRYPTO_MDEBUG_BACKTRACE) && defined(__GNUC__)
450             m->array_siz = backtrace(m->array, OSSL_NELEM(m->array));
451 # endif
452             m->time = time(NULL);
453
454             CRYPTO_THREADID_current(&tmp.threadid);
455             m->app_info = NULL;
456             if (amih != NULL
457                 && (amim = lh_APP_INFO_retrieve(amih, &tmp)) != NULL) {
458                 m->app_info = amim;
459                 amim->references++;
460             }
461
462             if ((mm = lh_MEM_insert(mh, m)) != NULL) {
463                 /* Not good, but don't sweat it */
464                 if (mm->app_info != NULL) {
465                     mm->app_info->references--;
466                 }
467                 OPENSSL_free(mm);
468             }
469  err:
470             CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ENABLE);
471         }
472         break;
473     }
474     return;
475 }
476
477 void CRYPTO_mem_debug_free(void *addr, int before_p)
478 {
479     MEM m, *mp;
480
481     switch (before_p) {
482     case 0:
483         if (addr == NULL)
484             break;
485
486         if (mem_check_on() && (mh != NULL)) {
487             CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_DISABLE);
488
489             m.addr = addr;
490             mp = lh_MEM_delete(mh, &m);
491             if (mp != NULL) {
492                 app_info_free(mp->app_info);
493                 OPENSSL_free(mp);
494             }
495
496             CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ENABLE);
497         }
498         break;
499     case 1:
500         break;
501     }
502 }
503
504 void CRYPTO_mem_debug_realloc(void *addr1, void *addr2, size_t num,
505                               int before_p, const char *file, int line)
506 {
507     MEM m, *mp;
508
509     switch (before_p) {
510     case 0:
511         break;
512     case 1:
513         if (addr2 == NULL)
514             break;
515
516         if (addr1 == NULL) {
517             CRYPTO_mem_debug_malloc(addr2, num, 128 | before_p, file, line);
518             break;
519         }
520
521         if (mem_check_on()) {
522             CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_DISABLE);
523
524             m.addr = addr1;
525             mp = lh_MEM_delete(mh, &m);
526             if (mp != NULL) {
527                 mp->addr = addr2;
528                 mp->num = num;
529 #if defined(CRYPTO_MDEBUG_BACKTRACE) && defined(__GNUC__)
530                 mp->array_siz = backtrace(mp->array, OSSL_NELEM(mp->array));
531 #endif
532                 (void)lh_MEM_insert(mh, mp);
533             }
534
535             CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ENABLE);
536         }
537         break;
538     }
539     return;
540 }
541
542 typedef struct mem_leak_st {
543     BIO *bio;
544     int chunks;
545     int seen;
546     long bytes;
547 } MEM_LEAK;
548
549 static void print_leak(const MEM *m, MEM_LEAK *l)
550 {
551     char buf[1024];
552     char *bufp = buf;
553     APP_INFO *amip;
554     int ami_cnt;
555     struct tm *lcl = NULL;
556     CRYPTO_THREADID ti;
557
558 #define BUF_REMAIN (sizeof buf - (size_t)(bufp - buf))
559
560     /* Is one "leak" the BIO we were given? */
561     if (m->addr == (char *)l->bio) {
562         l->seen = 1;
563         return;
564     }
565
566     lcl = localtime(&m->time);
567     BIO_snprintf(bufp, BUF_REMAIN, "[%02d:%02d:%02d] ",
568                  lcl->tm_hour, lcl->tm_min, lcl->tm_sec);
569     bufp += strlen(bufp);
570
571     BIO_snprintf(bufp, BUF_REMAIN, "%5lu file=%s, line=%d, ",
572                  m->order, m->file, m->line);
573     bufp += strlen(bufp);
574
575     BIO_snprintf(bufp, BUF_REMAIN, "thread=%lu, ",
576                  CRYPTO_THREADID_hash(&m->threadid));
577     bufp += strlen(bufp);
578
579     BIO_snprintf(bufp, BUF_REMAIN, "number=%d, address=%p\n",
580                  m->num, m->addr);
581     bufp += strlen(bufp);
582
583     BIO_puts(l->bio, buf);
584
585     l->chunks++;
586     l->bytes += m->num;
587
588     amip = m->app_info;
589     ami_cnt = 0;
590
591     if (amip) {
592         CRYPTO_THREADID_cpy(&ti, &amip->threadid);
593
594         do {
595             int buf_len;
596             int info_len;
597
598             ami_cnt++;
599             memset(buf, '>', ami_cnt);
600             BIO_snprintf(buf + ami_cnt, sizeof buf - ami_cnt,
601                          " thread=%lu, file=%s, line=%d, info=\"",
602                          CRYPTO_THREADID_hash(&amip->threadid), amip->file,
603                          amip->line);
604             buf_len = strlen(buf);
605             info_len = strlen(amip->info);
606             if (128 - buf_len - 3 < info_len) {
607                 memcpy(buf + buf_len, amip->info, 128 - buf_len - 3);
608                 buf_len = 128 - 3;
609             } else {
610                 OPENSSL_strlcpy(buf + buf_len, amip->info, sizeof buf - buf_len);
611                 buf_len = strlen(buf);
612             }
613             BIO_snprintf(buf + buf_len, sizeof buf - buf_len, "\"\n");
614
615             BIO_puts(l->bio, buf);
616
617             amip = amip->next;
618         }
619         while (amip && !CRYPTO_THREADID_cmp(&amip->threadid, &ti));
620     }
621
622 #if defined(CRYPTO_MDEBUG_BACKTRACE) && defined(__GNUC__)
623     {
624         size_t i;
625         char **strings = backtrace_symbols(m->array, m->array_siz);
626
627         for (i = 0; i < m->array_siz; i++)
628             fprintf(stderr, "##> %s\n", strings[i]);
629         free(strings);
630     }
631 #endif
632 }
633
634 IMPLEMENT_LHASH_DOALL_ARG_CONST(MEM, MEM_LEAK);
635
636 int CRYPTO_mem_leaks(BIO *b)
637 {
638     MEM_LEAK ml;
639
640     if (mh == NULL && amih == NULL)
641         return 1;
642
643     CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_DISABLE);
644
645     ml.bio = b;
646     ml.bytes = 0;
647     ml.chunks = 0;
648     ml.seen = 0;
649     if (mh != NULL)
650         lh_MEM_doall_MEM_LEAK(mh, print_leak, &ml);
651     /* Don't count the BIO that was passed in as a "leak" */
652     if (ml.seen && ml.chunks >= 1 && ml.bytes >= (int)sizeof (*b)) {
653         ml.chunks--;
654         ml.bytes -= (int)sizeof (*b);
655     }
656     if (ml.chunks != 0) {
657         BIO_printf(b, "%ld bytes leaked in %d chunks\n", ml.bytes, ml.chunks);
658     } else {
659         /*
660          * Make sure that, if we found no leaks, memory-leak debugging itself
661          * does not introduce memory leaks (which might irritate external
662          * debugging tools). (When someone enables leak checking, but does not
663          * call this function, we declare it to be their fault.)
664          */
665         int old_mh_mode;
666
667         CRYPTO_w_lock(CRYPTO_LOCK_MALLOC);
668
669         /*
670          * avoid deadlock when lh_free() uses CRYPTO_mem_debug_free(), which uses
671          * mem_check_on
672          */
673         old_mh_mode = mh_mode;
674         mh_mode = CRYPTO_MEM_CHECK_OFF;
675
676         lh_MEM_free(mh);
677         mh = NULL;
678         if (amih != NULL) {
679             if (lh_APP_INFO_num_items(amih) == 0) {
680                 lh_APP_INFO_free(amih);
681                 amih = NULL;
682             }
683         }
684
685         mh_mode = old_mh_mode;
686         CRYPTO_w_unlock(CRYPTO_LOCK_MALLOC);
687     }
688     CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ENABLE);
689     return ml.chunks == 0 ? 1 : 0;
690 }
691
692 # ifndef OPENSSL_NO_STDIO
693 int CRYPTO_mem_leaks_fp(FILE *fp)
694 {
695     BIO *b;
696     int ret;
697
698     if (mh == NULL)
699         return 0;
700     /*
701      * Need to turn off memory checking when allocated BIOs ... especially as
702      * we're creating them at a time when we're trying to check we've not
703      * left anything un-free()'d!!
704      */
705     CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_DISABLE);
706     b = BIO_new(BIO_s_file());
707     CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ENABLE);
708     if (b == NULL)
709         return -1;
710     BIO_set_fp(b, fp, BIO_NOCLOSE);
711     ret = CRYPTO_mem_leaks(b);
712     BIO_free(b);
713     return ret;
714 }
715 # endif
716
717 #endif