qemu-malloc.c 2.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * malloc-like functions for system emulation.
 *
 * Copyright (c) 2006 Fabrice Bellard
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
#include "qemu-common.h"
25 26 27 28
#include <stdlib.h>

static void *oom_check(void *ptr)
{
M
malc 已提交
29
    if (ptr == NULL) {
30
        abort();
M
malc 已提交
31
    }
32 33
    return ptr;
}
34 35 36 37 38 39

void qemu_free(void *ptr)
{
    free(ptr);
}

40 41 42 43 44 45 46 47 48
static int allow_zero_malloc(void)
{
#if defined(CONFIG_ZERO_MALLOC)
    return 1;
#else
    return 0;
#endif
}

49 50
void *qemu_malloc(size_t size)
{
51
    if (!size && !allow_zero_malloc()) {
M
malc 已提交
52
        abort();
M
malc 已提交
53
    }
54
    return oom_check(malloc(size ? size : 1));
55 56
}

T
ths 已提交
57 58
void *qemu_realloc(void *ptr, size_t size)
{
M
Markus Armbruster 已提交
59 60
    if (!size && !allow_zero_malloc()) {
        abort();
M
malc 已提交
61
    }
M
Markus Armbruster 已提交
62
    return oom_check(realloc(ptr, size ? size : 1));
T
ths 已提交
63 64
}

65 66
void *qemu_mallocz(size_t size)
{
R
Richard Henderson 已提交
67 68 69 70
    if (!size && !allow_zero_malloc()) {
        abort();
    }
    return oom_check(calloc(1, size ? size : 1));
71 72 73 74 75
}

char *qemu_strdup(const char *str)
{
    char *ptr;
B
blueswir1 已提交
76 77
    size_t len = strlen(str);
    ptr = qemu_malloc(len + 1);
78
    memcpy(ptr, str, len + 1);
79 80
    return ptr;
}
81 82 83 84 85 86

char *qemu_strndup(const char *str, size_t size)
{
    const char *end = memchr(str, 0, size);
    char *new;

M
malc 已提交
87
    if (end) {
88
        size = end - str;
M
malc 已提交
89
    }
90 91 92 93 94 95

    new = qemu_malloc(size + 1);
    new[size] = 0;

    return memcpy(new, str, size);
}