
Summary: Initially, Scudo had a monolithic design where both C and C++ functions were living in the same library. This was not necessarily ideal, and with the work on -fsanitize=scudo, it became more apparent that this needed to change. We are splitting the new/delete interceptor in their own C++ library. This allows more flexibility, notably with regard to std::bad_alloc when the work is done. This also allows us to not link new & delete when using pure C. Additionally, we add the UBSan runtimes with Scudo, in order to be able to have a -fsanitize=scudo,undefined in Clang (see work in D39334). The changes in this patch: - split the cxx specific code in the scudo cmake file into a new library; (remove the spurious foreach loop, that was not necessary) - add the UBSan runtimes (both C and C++); - change the test cmake file to allow for specific C & C++ tests; - make C tests pure C, rename their extension accordingly. Reviewers: alekseyshl Reviewed By: alekseyshl Subscribers: srhines, mgorny, llvm-commits Differential Revision: https://reviews.llvm.org/D39461 llvm-svn: 317097
54 lines
1.4 KiB
C
54 lines
1.4 KiB
C
// RUN: %clang_scudo %s -o %t
|
|
// RUN: %run %t after 2>&1 | FileCheck %s
|
|
// RUN: %run %t before 2>&1 | FileCheck %s
|
|
|
|
// Test that we hit a guard page when writing past the end of a chunk
|
|
// allocated by the Secondary allocator, or writing too far in front of it.
|
|
|
|
#include <assert.h>
|
|
#include <malloc.h>
|
|
#include <signal.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
|
|
void handler(int signo, siginfo_t *info, void *uctx) {
|
|
if (info->si_code == SEGV_ACCERR) {
|
|
fprintf(stderr, "SCUDO SIGSEGV\n");
|
|
exit(0);
|
|
}
|
|
exit(1);
|
|
}
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
// The size must be large enough to be serviced by the secondary allocator.
|
|
long page_size = sysconf(_SC_PAGESIZE);
|
|
size_t size = (1U << 17) + page_size;
|
|
struct sigaction a;
|
|
|
|
assert(argc == 2);
|
|
memset(&a, 0, sizeof(a));
|
|
a.sa_sigaction = handler;
|
|
a.sa_flags = SA_SIGINFO;
|
|
|
|
char *p = (char *)malloc(size);
|
|
assert(p);
|
|
memset(p, 'A', size); // This should not trigger anything.
|
|
// Set up the SIGSEGV handler now, as the rest should trigger an AV.
|
|
sigaction(SIGSEGV, &a, NULL);
|
|
if (!strcmp(argv[1], "after")) {
|
|
for (int i = 0; i < page_size; i++)
|
|
p[size + i] = 'A';
|
|
}
|
|
if (!strcmp(argv[1], "before")) {
|
|
for (int i = 1; i < page_size; i++)
|
|
p[-i] = 'A';
|
|
}
|
|
free(p);
|
|
|
|
return 1; // A successful test means we shouldn't reach this.
|
|
}
|
|
|
|
// CHECK: SCUDO SIGSEGV
|