mem_dbg.c 17.7 KB
Newer Older
R
Rich Salz 已提交
1
/*
P
Pauli 已提交
2
 * Copyright 1995-2017 The OpenSSL Project Authors. All Rights Reserved.
3
 *
R
Rich Salz 已提交
4 5 6 7
 * Licensed under the OpenSSL license (the "License").  You may not use
 * this file except in compliance with the License.  You can obtain a copy
 * in the file LICENSE in the source distribution or at
 * https://www.openssl.org/source/license.html
8
 */
9 10 11

#include <stdio.h>
#include <stdlib.h>
12
#include <time.h>
13
#include "internal/cryptlib.h"
D
Dr. Stephen Henson 已提交
14
#include "internal/thread_once.h"
15 16
#include <openssl/crypto.h>
#include <openssl/buffer.h>
M
Matt Caswell 已提交
17
#include "internal/bio.h"
18
#include <openssl/lhash.h>
19 20

#ifndef OPENSSL_NO_CRYPTO_MDEBUG_BACKTRACE
21 22
# include <execinfo.h>
#endif
23

24 25 26 27 28 29 30 31 32 33
/*
 * The state changes to CRYPTO_MEM_CHECK_ON | CRYPTO_MEM_CHECK_ENABLE when
 * the application asks for it (usually after library initialisation for
 * which no book-keeping is desired). State CRYPTO_MEM_CHECK_ON exists only
 * temporarily when the library thinks that certain allocations should not be
 * checked (e.g. the data structures used for memory checking).  It is not
 * suitable as an initial state: the library will unexpectedly enable memory
 * checking when it executes one of those sections that want to disable
 * checking temporarily. State CRYPTO_MEM_CHECK_ENABLE without ..._ON makes
 * no sense whatsoever.
34
 */
35
#ifndef OPENSSL_NO_CRYPTO_MDEBUG
R
Rich Salz 已提交
36
static int mh_mode = CRYPTO_MEM_CHECK_OFF;
37
#endif
38

R
Rich Salz 已提交
39
#ifndef OPENSSL_NO_CRYPTO_MDEBUG
40
static unsigned long order = 0; /* number of memory requests */
B
Ben Laurie 已提交
41

42 43
/*-
 * For application-defined information (static C-string `info')
44 45
 * to be displayed in memory leak list.
 * Each thread has its own stack.  For applications, there is
R
Rich Salz 已提交
46 47
 *   OPENSSL_mem_debug_push("...")     to push an entry,
 *   OPENSSL_mem_debug_pop()     to pop an entry,
48
 */
D
Dr. Stephen Henson 已提交
49
struct app_mem_info_st {
50
    CRYPTO_THREAD_ID threadid;
51 52 53 54 55
    const char *file;
    int line;
    const char *info;
    struct app_mem_info_st *next; /* tail of thread's stack */
    int references;
D
Dr. Stephen Henson 已提交
56
};
57

58 59 60 61
static CRYPTO_ONCE memdbg_init = CRYPTO_ONCE_STATIC_INIT;
static CRYPTO_RWLOCK *malloc_lock = NULL;
static CRYPTO_RWLOCK *long_malloc_lock = NULL;
static CRYPTO_THREAD_LOCAL appinfokey;
62

63
/* memory-block description */
D
Dr. Stephen Henson 已提交
64
struct mem_st {
65 66 67 68
    void *addr;
    int num;
    const char *file;
    int line;
69
    CRYPTO_THREAD_ID threadid;
70 71 72
    unsigned long order;
    time_t time;
    APP_INFO *app_info;
73
#ifndef OPENSSL_NO_CRYPTO_MDEBUG_BACKTRACE
74 75 76
    void *array[30];
    size_t array_siz;
#endif
D
Dr. Stephen Henson 已提交
77 78 79 80
};

static LHASH_OF(MEM) *mh = NULL; /* hash-table of memory requests (address as
                                  * key); access requires MALLOC2 lock */
81

R
Rich Salz 已提交
82 83
/* num_disable > 0 iff mh_mode == CRYPTO_MEM_CHECK_ON (w/o ..._ENABLE) */
static unsigned int num_disable = 0;
84

85
/*
86
 * Valid iff num_disable > 0.  long_malloc_lock is locked exactly in this
87
 * case (by the thread named in disabling_thread).
88
 */
89 90
static CRYPTO_THREAD_ID disabling_threadid;

D
Dr. Stephen Henson 已提交
91
DEFINE_RUN_ONCE_STATIC(do_memdbg_init)
92 93 94
{
    malloc_lock = CRYPTO_THREAD_lock_new();
    long_malloc_lock = CRYPTO_THREAD_lock_new();
D
Dr. Stephen Henson 已提交
95 96 97 98 99 100 101 102 103
    if (malloc_lock == NULL || long_malloc_lock == NULL
        || !CRYPTO_THREAD_init_local(&appinfokey, NULL)) {
        CRYPTO_THREAD_lock_free(malloc_lock);
        malloc_lock = NULL;
        CRYPTO_THREAD_lock_free(long_malloc_lock);
        long_malloc_lock = NULL;
        return 0;
    }
    return 1;
104
}
105

106
static void app_info_free(APP_INFO *inf)
107
{
R
Rich Salz 已提交
108 109
    if (!inf)
        return;
110
    if (--(inf->references) <= 0) {
R
Rich Salz 已提交
111
        app_info_free(inf->next);
112 113 114
        OPENSSL_free(inf);
    }
}
R
Rich Salz 已提交
115
#endif
116

117
int CRYPTO_mem_ctrl(int mode)
118
{
119
#ifdef OPENSSL_NO_CRYPTO_MDEBUG
R
Rich Salz 已提交
120 121
    return mode - mode;
#else
122 123
    int ret = mh_mode;

124 125
    if (!RUN_ONCE(&memdbg_init, do_memdbg_init))
        return -1;
126 127

    CRYPTO_THREAD_write_lock(malloc_lock);
128
    switch (mode) {
R
Rich Salz 已提交
129 130 131 132
    default:
        break;

    case CRYPTO_MEM_CHECK_ON:
133 134 135
        mh_mode = CRYPTO_MEM_CHECK_ON | CRYPTO_MEM_CHECK_ENABLE;
        num_disable = 0;
        break;
R
Rich Salz 已提交
136 137

    case CRYPTO_MEM_CHECK_OFF:
138
        mh_mode = 0;
R
Rich Salz 已提交
139
        num_disable = 0;
140 141
        break;

R
Rich Salz 已提交
142 143
    /* switch off temporarily (for library-internal use): */
    case CRYPTO_MEM_CHECK_DISABLE:
144
        if (mh_mode & CRYPTO_MEM_CHECK_ON) {
145 146
            CRYPTO_THREAD_ID cur = CRYPTO_THREAD_get_current_id();
            /* see if we don't have long_malloc_lock already */
147
            if (!num_disable
148
                || !CRYPTO_THREAD_compare_id(disabling_threadid, cur)) {
149
                /*
150 151 152
                 * Long-time lock long_malloc_lock must not be claimed
                 * while we're holding malloc_lock, or we'll deadlock
                 * if somebody else holds long_malloc_lock (and cannot
153 154 155 156
                 * release it because we block entry to this function). Give
                 * them a chance, first, and then claim the locks in
                 * appropriate order (long-time lock first).
                 */
157
                CRYPTO_THREAD_unlock(malloc_lock);
158
                /*
159 160
                 * Note that after we have waited for long_malloc_lock and
                 * malloc_lock, we'll still be in the right "case" and
161 162 163
                 * "if" branch because MemCheck_start and MemCheck_stop may
                 * never be used while there are multiple OpenSSL threads.
                 */
164 165
                CRYPTO_THREAD_write_lock(long_malloc_lock);
                CRYPTO_THREAD_write_lock(malloc_lock);
166
                mh_mode &= ~CRYPTO_MEM_CHECK_ENABLE;
167
                disabling_threadid = cur;
168 169 170 171
            }
            num_disable++;
        }
        break;
R
Rich Salz 已提交
172 173

    case CRYPTO_MEM_CHECK_ENABLE:
174 175 176 177 178
        if (mh_mode & CRYPTO_MEM_CHECK_ON) {
            if (num_disable) {  /* always true, or something is going wrong */
                num_disable--;
                if (num_disable == 0) {
                    mh_mode |= CRYPTO_MEM_CHECK_ENABLE;
179
                    CRYPTO_THREAD_unlock(long_malloc_lock);
180 181 182 183 184
                }
            }
        }
        break;
    }
185
    CRYPTO_THREAD_unlock(malloc_lock);
P
Pauli 已提交
186
    return ret;
R
Rich Salz 已提交
187
#endif
188
}
189

R
Rich Salz 已提交
190
#ifndef OPENSSL_NO_CRYPTO_MDEBUG
R
Rich Salz 已提交
191 192

static int mem_check_on(void)
193 194
{
    int ret = 0;
195
    CRYPTO_THREAD_ID cur;
196

197
    if (mh_mode & CRYPTO_MEM_CHECK_ON) {
198 199
        if (!RUN_ONCE(&memdbg_init, do_memdbg_init))
            return 0;
200

201
        cur = CRYPTO_THREAD_get_current_id();
202
        CRYPTO_THREAD_read_lock(malloc_lock);
203

204
        ret = (mh_mode & CRYPTO_MEM_CHECK_ENABLE)
205
            || !CRYPTO_THREAD_compare_id(disabling_threadid, cur);
206

207
        CRYPTO_THREAD_unlock(malloc_lock);
208
    }
P
Pauli 已提交
209
    return ret;
210
}
211

B
Ben Laurie 已提交
212
static int mem_cmp(const MEM *a, const MEM *b)
213
{
214
#ifdef _WIN64
215 216 217 218 219 220 221
    const char *ap = (const char *)a->addr, *bp = (const char *)b->addr;
    if (ap == bp)
        return 0;
    else if (ap > bp)
        return 1;
    else
        return -1;
222
#else
223
    return (const char *)a->addr - (const char *)b->addr;
224
#endif
225 226
}

B
Ben Laurie 已提交
227
static unsigned long mem_hash(const MEM *a)
228
{
229
    size_t ret;
230

231
    ret = (size_t)a->addr;
232 233

    ret = ret * 17851 + (ret >> 14) * 7 + (ret >> 4) * 251;
P
Pauli 已提交
234
    return ret;
235
}
236

237 238
/* returns 1 if there was an info to pop, 0 if the stack was empty. */
static int pop_info(void)
239
{
240
    APP_INFO *current = NULL;
241

242 243 244
    if (!RUN_ONCE(&memdbg_init, do_memdbg_init))
        return 0;

245 246 247
    current = (APP_INFO *)CRYPTO_THREAD_get_local(&appinfokey);
    if (current != NULL) {
        APP_INFO *next = current->next;
248

249 250 251 252 253 254 255 256 257 258 259
        if (next != NULL) {
            next->references++;
            CRYPTO_THREAD_set_local(&appinfokey, next);
        } else {
            CRYPTO_THREAD_set_local(&appinfokey, NULL);
        }
        if (--(current->references) <= 0) {
            current->next = NULL;
            if (next != NULL)
                next->references--;
            OPENSSL_free(current);
260
        }
261
        return 1;
262
    }
263
    return 0;
264
}
265

R
Rich Salz 已提交
266
int CRYPTO_mem_debug_push(const char *info, const char *file, int line)
267 268 269 270
{
    APP_INFO *ami, *amim;
    int ret = 0;

R
Rich Salz 已提交
271 272
    if (mem_check_on()) {
        CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_DISABLE);
273

274 275
        if (!RUN_ONCE(&memdbg_init, do_memdbg_init)
            || (ami = OPENSSL_malloc(sizeof(*ami))) == NULL)
276 277
            goto err;

278
        ami->threadid = CRYPTO_THREAD_get_current_id();
279 280 281 282 283 284
        ami->file = file;
        ami->line = line;
        ami->info = info;
        ami->references = 1;
        ami->next = NULL;

285 286 287 288
        amim = (APP_INFO *)CRYPTO_THREAD_get_local(&appinfokey);
        CRYPTO_THREAD_set_local(&appinfokey, ami);

        if (amim != NULL)
289
            ami->next = amim;
R
Rich Salz 已提交
290
        ret = 1;
291
 err:
R
Rich Salz 已提交
292
        CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ENABLE);
293
    }
294

P
Pauli 已提交
295
    return ret;
296
}
297

R
Rich Salz 已提交
298
int CRYPTO_mem_debug_pop(void)
299 300
{
    int ret = 0;
301

R
Rich Salz 已提交
302 303
    if (mem_check_on()) {
        CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_DISABLE);
304
        ret = pop_info();
R
Rich Salz 已提交
305
        CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ENABLE);
306
    }
P
Pauli 已提交
307
    return ret;
308
}
309

310
static unsigned long break_order_num = 0;
R
Rich Salz 已提交
311 312 313

void CRYPTO_mem_debug_malloc(void *addr, size_t num, int before_p,
                             const char *file, int line)
314 315
{
    MEM *m, *mm;
316
    APP_INFO *amim;
317 318 319 320 321 322 323 324

    switch (before_p & 127) {
    case 0:
        break;
    case 1:
        if (addr == NULL)
            break;

R
Rich Salz 已提交
325 326
        if (mem_check_on()) {
            CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_DISABLE);
327

328 329
            if (!RUN_ONCE(&memdbg_init, do_memdbg_init)
                || (m = OPENSSL_malloc(sizeof(*m))) == NULL) {
330
                OPENSSL_free(addr);
R
Rich Salz 已提交
331
                CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ENABLE);
332 333 334
                return;
            }
            if (mh == NULL) {
D
Dr. Stephen Henson 已提交
335
                if ((mh = lh_MEM_new(mem_hash, mem_cmp)) == NULL) {
336 337 338 339 340 341 342 343 344 345 346
                    OPENSSL_free(addr);
                    OPENSSL_free(m);
                    addr = NULL;
                    goto err;
                }
            }

            m->addr = addr;
            m->file = file;
            m->line = line;
            m->num = num;
347
            m->threadid = CRYPTO_THREAD_get_current_id();
348 349 350 351 352 353

            if (order == break_order_num) {
                /* BREAK HERE */
                m->order = order;
            }
            m->order = order++;
354
# ifndef OPENSSL_NO_CRYPTO_MDEBUG_BACKTRACE
355
            m->array_siz = backtrace(m->array, OSSL_NELEM(m->array));
R
Rich Salz 已提交
356 357
# endif
            m->time = time(NULL);
358

359 360 361
            amim = (APP_INFO *)CRYPTO_THREAD_get_local(&appinfokey);
            m->app_info = amim;
            if (amim != NULL)
362 363 364 365 366 367 368 369 370 371
                amim->references++;

            if ((mm = lh_MEM_insert(mh, m)) != NULL) {
                /* Not good, but don't sweat it */
                if (mm->app_info != NULL) {
                    mm->app_info->references--;
                }
                OPENSSL_free(mm);
            }
 err:
R
Rich Salz 已提交
372
            CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ENABLE);
373 374 375 376 377
        }
        break;
    }
    return;
}
378

379 380
void CRYPTO_mem_debug_free(void *addr, int before_p,
        const char *file, int line)
381 382 383 384 385 386 387 388
{
    MEM m, *mp;

    switch (before_p) {
    case 0:
        if (addr == NULL)
            break;

R
Rich Salz 已提交
389 390
        if (mem_check_on() && (mh != NULL)) {
            CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_DISABLE);
391 392 393 394

            m.addr = addr;
            mp = lh_MEM_delete(mh, &m);
            if (mp != NULL) {
R
Rich Salz 已提交
395
                app_info_free(mp->app_info);
396 397 398
                OPENSSL_free(mp);
            }

R
Rich Salz 已提交
399
            CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ENABLE);
400 401 402 403 404 405
        }
        break;
    case 1:
        break;
    }
}
406

R
Rich Salz 已提交
407 408
void CRYPTO_mem_debug_realloc(void *addr1, void *addr2, size_t num,
                              int before_p, const char *file, int line)
409 410
{
    MEM m, *mp;
411

412 413 414 415 416 417 418 419
    switch (before_p) {
    case 0:
        break;
    case 1:
        if (addr2 == NULL)
            break;

        if (addr1 == NULL) {
R
Rich Salz 已提交
420
            CRYPTO_mem_debug_malloc(addr2, num, 128 | before_p, file, line);
421 422 423
            break;
        }

R
Rich Salz 已提交
424 425
        if (mem_check_on()) {
            CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_DISABLE);
426 427 428 429 430 431

            m.addr = addr1;
            mp = lh_MEM_delete(mh, &m);
            if (mp != NULL) {
                mp->addr = addr2;
                mp->num = num;
432
#ifndef OPENSSL_NO_CRYPTO_MDEBUG_BACKTRACE
433 434
                mp->array_siz = backtrace(mp->array, OSSL_NELEM(mp->array));
#endif
435 436 437
                (void)lh_MEM_insert(mh, mp);
            }

R
Rich Salz 已提交
438
            CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ENABLE);
439 440 441 442 443 444 445
        }
        break;
    }
    return;
}

typedef struct mem_leak_st {
R
Richard Levitte 已提交
446 447
    int (*print_cb) (const char *str, size_t len, void *u);
    void *print_cb_arg;
448 449 450
    int chunks;
    long bytes;
} MEM_LEAK;
451

D
Dr. Stephen Henson 已提交
452
static void print_leak(const MEM *m, MEM_LEAK *l)
453 454 455
{
    char buf[1024];
    char *bufp = buf;
P
Pauli 已提交
456
    size_t len = sizeof(buf), ami_cnt;
457
    APP_INFO *amip;
P
Pauli 已提交
458
    int n;
459
    struct tm *lcl = NULL;
460 461 462 463 464 465 466 467 468 469
    /*
     * Convert between CRYPTO_THREAD_ID (which could be anything at all) and
     * a long. This may not be meaningful depending on what CRYPTO_THREAD_ID is
     * but hopefully should give something sensible on most platforms
     */
    union {
        CRYPTO_THREAD_ID tid;
        unsigned long ltid;
    } tid;
    CRYPTO_THREAD_ID ti;
470

R
Rich Salz 已提交
471
    lcl = localtime(&m->time);
P
Pauli 已提交
472 473 474 475 476 477 478 479
    n = BIO_snprintf(bufp, len, "[%02d:%02d:%02d] ",
                     lcl->tm_hour, lcl->tm_min, lcl->tm_sec);
    if (n <= 0) {
        bufp[0] = '\0';
        return;
    }
    bufp += n;
    len -= n;
480

P
Pauli 已提交
481 482 483 484 485 486
    n = BIO_snprintf(bufp, len, "%5lu file=%s, line=%d, ",
                     m->order, m->file, m->line);
    if (n <= 0)
        return;
    bufp += n;
    len -= n;
487

488 489
    tid.ltid = 0;
    tid.tid = m->threadid;
P
Pauli 已提交
490 491 492 493 494
    n = BIO_snprintf(bufp, len, "thread=%lu, ", tid.ltid);
    if (n <= 0)
        return;
    bufp += n;
    len -= n;
495

P
Pauli 已提交
496 497 498 499 500
    n = BIO_snprintf(bufp, len, "number=%d, address=%p\n", m->num, m->addr);
    if (n <= 0)
        return;
    bufp += n;
    len -= n;
501

P
Pauli 已提交
502
    l->print_cb(buf, (size_t)(bufp - buf), l->print_cb_arg);
503 504 505 506 507 508

    l->chunks++;
    l->bytes += m->num;

    amip = m->app_info;
    ami_cnt = 0;
R
Rich Salz 已提交
509

510
    if (amip) {
511
        ti = amip->threadid;
512 513 514 515 516 517

        do {
            int buf_len;
            int info_len;

            ami_cnt++;
P
Pauli 已提交
518 519
            if (ami_cnt >= sizeof(buf) - 1)
                break;
520
            memset(buf, '>', ami_cnt);
P
Pauli 已提交
521
            buf[ami_cnt] = '\0';
522 523
            tid.ltid = 0;
            tid.tid = amip->threadid;
P
Pauli 已提交
524 525 526 527 528 529
            n = BIO_snprintf(buf + ami_cnt, sizeof(buf) - ami_cnt,
                             " thread=%lu, file=%s, line=%d, info=\"",
                             tid.ltid, amip->file, amip->line);
            if (n <= 0)
                break;
            buf_len = ami_cnt + n;
530 531 532 533 534
            info_len = strlen(amip->info);
            if (128 - buf_len - 3 < info_len) {
                memcpy(buf + buf_len, amip->info, 128 - buf_len - 3);
                buf_len = 128 - 3;
            } else {
P
Pauli 已提交
535 536 537 538 539
                n = BIO_snprintf(buf + buf_len, sizeof(buf) - buf_len, "%s",
                                 amip->info);
                if (n < 0)
                    break;
                buf_len += n;
540
            }
P
Pauli 已提交
541 542 543
            n = BIO_snprintf(buf + buf_len, sizeof(buf) - buf_len, "\"\n");
            if (n <= 0)
                break;
544

P
Pauli 已提交
545
            l->print_cb(buf, buf_len + n, l->print_cb_arg);
546

547 548
            amip = amip->next;
        }
549
        while (amip && CRYPTO_THREAD_compare_id(amip->threadid, ti));
550
    }
551

552
#ifndef OPENSSL_NO_CRYPTO_MDEBUG_BACKTRACE
553 554 555
    {
        size_t i;
        char **strings = backtrace_symbols(m->array, m->array_siz);
R
Rich Salz 已提交
556

557 558 559 560 561
        for (i = 0; i < m->array_siz; i++)
            fprintf(stderr, "##> %s\n", strings[i]);
        free(strings);
    }
#endif
562
}
563

D
Dr. Stephen Henson 已提交
564
IMPLEMENT_LHASH_DOALL_ARG_CONST(MEM, MEM_LEAK);
565

R
Richard Levitte 已提交
566 567
int CRYPTO_mem_leaks_cb(int (*cb) (const char *str, size_t len, void *u),
                        void *u)
568 569 570
{
    MEM_LEAK ml;

571
    /* Ensure all resources are released */
572
    OPENSSL_cleanup();
573

574 575
    if (!RUN_ONCE(&memdbg_init, do_memdbg_init))
        return -1;
576

R
Rich Salz 已提交
577
    CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_DISABLE);
578

R
Richard Levitte 已提交
579 580
    ml.print_cb = cb;
    ml.print_cb_arg = u;
581 582 583
    ml.bytes = 0;
    ml.chunks = 0;
    if (mh != NULL)
D
Dr. Stephen Henson 已提交
584
        lh_MEM_doall_MEM_LEAK(mh, print_leak, &ml);
585

586
    if (ml.chunks != 0) {
R
Richard Levitte 已提交
587 588 589 590 591
        char buf[256];

        BIO_snprintf(buf, sizeof(buf), "%ld bytes leaked in %d chunks\n",
                     ml.bytes, ml.chunks);
        cb(buf, strlen(buf), u);
592 593 594 595 596
    } else {
        /*
         * Make sure that, if we found no leaks, memory-leak debugging itself
         * does not introduce memory leaks (which might irritate external
         * debugging tools). (When someone enables leak checking, but does not
R
Rich Salz 已提交
597
         * call this function, we declare it to be their fault.)
598 599 600
         */
        int old_mh_mode;

601
        CRYPTO_THREAD_write_lock(malloc_lock);
602 603

        /*
R
Rich Salz 已提交
604 605
         * avoid deadlock when lh_free() uses CRYPTO_mem_debug_free(), which uses
         * mem_check_on
606 607 608 609
         */
        old_mh_mode = mh_mode;
        mh_mode = CRYPTO_MEM_CHECK_OFF;

R
Rich Salz 已提交
610 611
        lh_MEM_free(mh);
        mh = NULL;
612 613

        mh_mode = old_mh_mode;
614
        CRYPTO_THREAD_unlock(malloc_lock);
615
    }
616 617 618 619 620 621 622 623 624
    CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_OFF);

    /* Clean up locks etc */
    CRYPTO_THREAD_cleanup_local(&appinfokey);
    CRYPTO_THREAD_lock_free(malloc_lock);
    CRYPTO_THREAD_lock_free(long_malloc_lock);
    malloc_lock = NULL;
    long_malloc_lock = NULL;

625
    return ml.chunks == 0 ? 1 : 0;
626
}
627

R
Richard Levitte 已提交
628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643
static int print_bio(const char *str, size_t len, void *b)
{
    return BIO_write((BIO *)b, str, len);
}

int CRYPTO_mem_leaks(BIO *b)
{
    /*
     * OPENSSL_cleanup() will free the ex_data locks so we can't have any
     * ex_data hanging around
     */
    bio_free_ex_data(b);

    return CRYPTO_mem_leaks_cb(print_bio, b);
}

R
Rich Salz 已提交
644
# ifndef OPENSSL_NO_STDIO
645
int CRYPTO_mem_leaks_fp(FILE *fp)
646 647
{
    BIO *b;
648
    int ret;
649 650 651 652 653 654

    /*
     * Need to turn off memory checking when allocated BIOs ... especially as
     * we're creating them at a time when we're trying to check we've not
     * left anything un-free()'d!!
     */
R
Rich Salz 已提交
655
    CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_DISABLE);
656
    b = BIO_new(BIO_s_file());
R
Rich Salz 已提交
657
    CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ENABLE);
658
    if (b == NULL)
659
        return -1;
660
    BIO_set_fp(b, fp, BIO_NOCLOSE);
R
Richard Levitte 已提交
661
    ret = CRYPTO_mem_leaks_cb(print_bio, b);
662
    BIO_free(b);
663
    return ret;
664
}
R
Rich Salz 已提交
665
# endif
666

R
Rich Salz 已提交
667
#endif