有些情况下malloc的memory被trash了,但是分析code看不出问题来,可以使用asan和valgrind等静态检查工具协助分析,也可以直接使用mprotect将数据框起来做读写保护,然后捕捉SIGSEGV信号,在信号处理函数中dumpstack来看是哪里trash了这块memory.
#include <unistd.h>
#include <sys/mman.h>
void * mmap(void *start, size_t length, int prot , int flags, int fd, off_t offset);/*mmap 返回的地址是page align*/
int munmap(void *start, size_t length);
#include <sys/mman.h>
int mprotect(const void *addr, size_t len, int prot);/*mprotect要求传过来的addr是page align,所以传malloc的地址要做page align*/
使用mmap+mprotect的c demo如下:
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <sys/mman.h>
#include <unistd.h>
#include <signal.h>
#include <execinfo.h>
static void sigsegv_handler(int signo)
{
void *array[10];