mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 15:03:34 +00:00
This change enables Address Sanitizer systemically w/ `make MODE=dbg`. Our version of Rust's `unsafe` keyword is named `noasan` which is used for two functions that do aligned memory chunking, like `strcpy.c` and we need to fix the tiny DEFLATE code, but that's it everything else is fabulous you can have all the fischer price security blankets you need Best of all is we're now able to use the ASAN data in Blinkenlights to colorize the memory dumps. See the screenshot below of a test program: https://justine.lol/blinkenlights/asan.png Which is operating on float arrays stored on the stack, with red areas indicating poisoned memory, and the green areas indicate valid memory.
34 lines
1.2 KiB
C
34 lines
1.2 KiB
C
#ifndef COSMOPOLITAN_LIBC_RUNTIME_INTERNAL_H_
|
|
#define COSMOPOLITAN_LIBC_RUNTIME_INTERNAL_H_
|
|
#ifndef __STRICT_ANSI__
|
|
#include "libc/dce.h"
|
|
#include "libc/elf/struct/ehdr.h"
|
|
#include "libc/runtime/ezmap.internal.h"
|
|
#include "libc/runtime/runtime.h"
|
|
|
|
#define STACK_CEIL 0x700000000000ul
|
|
#define STACK_SIZE FRAMESIZE
|
|
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
COSMOPOLITAN_C_START_
|
|
|
|
extern hidden bool _mmap_asan_mode;
|
|
extern hidden char **g_freebsdhint;
|
|
extern hidden void *g_stacktop;
|
|
|
|
void _init(void) hidden;
|
|
void _piro(int) hidden;
|
|
void *__cxa_finalize(void *) hidden;
|
|
void cosmo(int, char **, char **, long (*)[2]) hidden wontreturn;
|
|
void __stack_chk_fail(void) wontreturn relegated;
|
|
void __stack_chk_fail_local(void) wontreturn relegated hidden;
|
|
void _jmpstack(void *, void *, ...) hidden wontreturn;
|
|
long _setstack(void *, void *, ...) hidden;
|
|
int GetDosArgv(const char16_t *, char *, size_t, char **, size_t) hidden;
|
|
Elf64_Ehdr *MapElfRead(const char *, struct MappedFile *) hidden;
|
|
int GetDosEnviron(const char16_t *, char *, size_t, char **, size_t) hidden;
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* ANSI */
|
|
#endif /* COSMOPOLITAN_LIBC_RUNTIME_INTERNAL_H_ */
|