2008-06-09 13:47:45 +00:00
|
|
|
/*
|
|
|
|
* 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"
|
2010-05-22 17:09:25 +00:00
|
|
|
#include "trace.h"
|
2009-02-05 22:05:49 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
static void *oom_check(void *ptr)
|
|
|
|
{
|
2009-05-19 18:28:26 +00:00
|
|
|
if (ptr == NULL) {
|
2009-02-06 00:19:42 +00:00
|
|
|
abort();
|
2009-05-19 18:28:26 +00:00
|
|
|
}
|
2009-02-05 22:05:49 +00:00
|
|
|
return ptr;
|
|
|
|
}
|
2008-06-09 13:47:45 +00:00
|
|
|
|
|
|
|
void qemu_free(void *ptr)
|
|
|
|
{
|
2010-05-22 17:09:25 +00:00
|
|
|
trace_qemu_free(ptr);
|
2008-06-09 13:47:45 +00:00
|
|
|
free(ptr);
|
|
|
|
}
|
|
|
|
|
2009-12-09 18:59:36 +00:00
|
|
|
static int allow_zero_malloc(void)
|
|
|
|
{
|
|
|
|
#if defined(CONFIG_ZERO_MALLOC)
|
|
|
|
return 1;
|
|
|
|
#else
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2008-06-09 13:47:45 +00:00
|
|
|
void *qemu_malloc(size_t size)
|
|
|
|
{
|
2010-05-22 17:09:25 +00:00
|
|
|
void *ptr;
|
2009-12-09 18:59:36 +00:00
|
|
|
if (!size && !allow_zero_malloc()) {
|
2009-05-19 18:26:42 +00:00
|
|
|
abort();
|
2009-05-19 18:28:26 +00:00
|
|
|
}
|
2010-05-22 17:09:25 +00:00
|
|
|
ptr = oom_check(malloc(size ? size : 1));
|
|
|
|
trace_qemu_malloc(size, ptr);
|
|
|
|
return ptr;
|
2008-06-09 13:47:45 +00:00
|
|
|
}
|
|
|
|
|
2008-08-06 08:37:17 +00:00
|
|
|
void *qemu_realloc(void *ptr, size_t size)
|
|
|
|
{
|
2010-05-22 17:09:25 +00:00
|
|
|
void *newptr;
|
2009-12-14 09:48:05 +00:00
|
|
|
if (!size && !allow_zero_malloc()) {
|
|
|
|
abort();
|
2009-05-19 18:26:42 +00:00
|
|
|
}
|
2010-05-22 17:09:25 +00:00
|
|
|
newptr = oom_check(realloc(ptr, size ? size : 1));
|
|
|
|
trace_qemu_realloc(ptr, size, newptr);
|
|
|
|
return newptr;
|
2008-08-06 08:37:17 +00:00
|
|
|
}
|
|
|
|
|
2008-06-09 13:47:45 +00:00
|
|
|
void *qemu_mallocz(size_t size)
|
|
|
|
{
|
2010-05-21 17:37:51 +00:00
|
|
|
if (!size && !allow_zero_malloc()) {
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
return oom_check(calloc(1, size ? size : 1));
|
2008-06-09 13:47:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
char *qemu_strdup(const char *str)
|
|
|
|
{
|
|
|
|
char *ptr;
|
2008-08-21 17:58:08 +00:00
|
|
|
size_t len = strlen(str);
|
|
|
|
ptr = qemu_malloc(len + 1);
|
2008-11-09 00:28:40 +00:00
|
|
|
memcpy(ptr, str, len + 1);
|
2008-06-09 13:47:45 +00:00
|
|
|
return ptr;
|
|
|
|
}
|
2008-11-09 00:28:40 +00:00
|
|
|
|
|
|
|
char *qemu_strndup(const char *str, size_t size)
|
|
|
|
{
|
|
|
|
const char *end = memchr(str, 0, size);
|
|
|
|
char *new;
|
|
|
|
|
2009-05-19 18:28:26 +00:00
|
|
|
if (end) {
|
2008-11-09 00:28:40 +00:00
|
|
|
size = end - str;
|
2009-05-19 18:28:26 +00:00
|
|
|
}
|
2008-11-09 00:28:40 +00:00
|
|
|
|
|
|
|
new = qemu_malloc(size + 1);
|
|
|
|
new[size] = 0;
|
|
|
|
|
|
|
|
return memcpy(new, str, size);
|
|
|
|
}
|