hardened_malloc/util.c

42 lines
946 B
C
Raw Permalink Normal View History

2018-10-03 20:55:25 +00:00
#include <errno.h>
2018-08-21 19:23:22 +00:00
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#ifdef __ANDROID__
#include <async_safe/log.h>
#endif
2018-08-21 19:23:22 +00:00
#include "util.h"
#ifndef __ANDROID__
2018-10-03 20:55:25 +00:00
static int write_full(int fd, const char *buf, size_t length) {
do {
ssize_t bytes_written = write(fd, buf, length);
if (bytes_written == -1) {
if (errno == EINTR) {
continue;
}
return -1;
}
buf += bytes_written;
length -= bytes_written;
} while (length);
return 0;
}
#endif
2018-10-03 20:55:25 +00:00
2018-08-21 19:23:22 +00:00
COLD noreturn void fatal_error(const char *s) {
#ifdef __ANDROID__
async_safe_fatal("hardened_malloc: fatal allocator error: %s", s);
#else
2018-10-03 20:22:28 +00:00
const char *prefix = "fatal allocator error: ";
2018-10-03 20:55:25 +00:00
(void)(write_full(STDERR_FILENO, prefix, strlen(prefix)) != -1 &&
write_full(STDERR_FILENO, s, strlen(s)) != -1 &&
write_full(STDERR_FILENO, "\n", 1));
2018-08-21 19:23:22 +00:00
abort();
#endif
2018-08-21 19:23:22 +00:00
}