Summary: The local and global quarantine sizes were not offering a distinction for 32-bit and 64-bit platforms. This is addressed with lower values for 32-bit. When writing additional tests for the quarantine, it was discovered that when calling some of the allocator interface function prior to any allocation operation having occured, the test would crash due to the allocator not being initialized. This was addressed by making sure the allocator is initialized for those scenarios. Relevant tests were added in interface.cpp and quarantine.cpp. Last change being the removal of the extraneous link dependencies for the tests thanks to rL293220, anf the addition of the gc-sections linker flag. Reviewers: kcc, alekseyshl Reviewed By: alekseyshl Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D29341 llvm-svn: 294037
42 lines
1.3 KiB
C++
42 lines
1.3 KiB
C++
// RUN: %clang_scudo -fsized-deallocation %s -o %t
|
|
// RUN: SCUDO_OPTIONS=DeleteSizeMismatch=1 %run %t gooddel 2>&1
|
|
// RUN: SCUDO_OPTIONS=DeleteSizeMismatch=1 not %run %t baddel 2>&1 | FileCheck %s
|
|
// RUN: SCUDO_OPTIONS=DeleteSizeMismatch=0 %run %t baddel 2>&1
|
|
// RUN: SCUDO_OPTIONS=DeleteSizeMismatch=1 %run %t gooddelarr 2>&1
|
|
// RUN: SCUDO_OPTIONS=DeleteSizeMismatch=1 not %run %t baddelarr 2>&1 | FileCheck %s
|
|
// RUN: SCUDO_OPTIONS=DeleteSizeMismatch=0 %run %t baddelarr 2>&1
|
|
|
|
// Ensures that the sized delete operator errors out when the appropriate
|
|
// option is passed and the sizes do not match between allocation and
|
|
// deallocation functions.
|
|
|
|
#include <assert.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include <new>
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
assert(argc == 2);
|
|
if (!strcmp(argv[1], "gooddel")) {
|
|
long long *p = new long long;
|
|
operator delete(p, sizeof(long long));
|
|
}
|
|
if (!strcmp(argv[1], "baddel")) {
|
|
long long *p = new long long;
|
|
operator delete(p, 2);
|
|
}
|
|
if (!strcmp(argv[1], "gooddelarr")) {
|
|
char *p = new char[64];
|
|
operator delete[](p, 64);
|
|
}
|
|
if (!strcmp(argv[1], "baddelarr")) {
|
|
char *p = new char[63];
|
|
operator delete[](p, 64);
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
// CHECK: ERROR: invalid sized delete on chunk at address
|