GCC 是否具有检测释放后使用错误的功能?
Does GCC have features to detect use-after-free bugs?
这是我的代码片段:
#include <stdlib.h>
#include <stdio.h>
typedef struct node
{
char key; // value
struct node *next; // pointer to the next element
} Node;
int main(void)
{
Node *n = malloc(sizeof(Node));
n->key = 'K';
n->next = NULL;
free(n);
printf("%c\n", n->key);
}
当上面的片段被编译并且运行...
ganningxu@Gannings-Computer:~/test$ gcc test_faults.c -o test_faults; ./test_faults
K
ganningxu@Gannings-Computer:~/test$ clang test_faults.c -o test_faults; ./test_faults
K
访问释放的内存时没有编译器警告或错误。有没有办法强制编译器显示此类错误?
用GCC编译时,可以使用-fsanitize=address
so that “Memory access instructions are instrumented to detect out-of-bounds and use-after-free bugs.”这当然会影响程序性能,如果有bug也可能改变程序行为。
这是我的代码片段:
#include <stdlib.h>
#include <stdio.h>
typedef struct node
{
char key; // value
struct node *next; // pointer to the next element
} Node;
int main(void)
{
Node *n = malloc(sizeof(Node));
n->key = 'K';
n->next = NULL;
free(n);
printf("%c\n", n->key);
}
当上面的片段被编译并且运行...
ganningxu@Gannings-Computer:~/test$ gcc test_faults.c -o test_faults; ./test_faults
K
ganningxu@Gannings-Computer:~/test$ clang test_faults.c -o test_faults; ./test_faults
K
访问释放的内存时没有编译器警告或错误。有没有办法强制编译器显示此类错误?
用GCC编译时,可以使用-fsanitize=address
so that “Memory access instructions are instrumented to detect out-of-bounds and use-after-free bugs.”这当然会影响程序性能,如果有bug也可能改变程序行为。