2015-06-16 05:08:47 +08:00
|
|
|
// RUN: %clang_safestack %s -pthread -o %t
|
2018-08-15 04:28:58 +08:00
|
|
|
// RUN: %run %t 0
|
|
|
|
// RUN: not --crash %run %t 1
|
2015-06-16 05:08:47 +08:00
|
|
|
|
2018-08-15 04:28:58 +08:00
|
|
|
// Test unsafe stack deallocation. Unsafe stacks are not deallocated immediately
|
|
|
|
// at thread exit. They are deallocated by following exiting threads.
|
2015-06-16 05:08:47 +08:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <pthread.h>
|
|
|
|
|
|
|
|
enum { kBufferSize = (1 << 15) };
|
|
|
|
|
2018-08-15 04:28:58 +08:00
|
|
|
void *start(void *ptr)
|
2015-06-16 05:08:47 +08:00
|
|
|
{
|
|
|
|
char buffer[kBufferSize];
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2018-08-15 04:28:58 +08:00
|
|
|
int arg = atoi(argv[1]);
|
2015-06-16 05:08:47 +08:00
|
|
|
|
2018-08-15 04:28:58 +08:00
|
|
|
pthread_t t1, t2;
|
|
|
|
char *t1_buffer = NULL;
|
|
|
|
|
|
|
|
if (pthread_create(&t1, NULL, start, NULL))
|
|
|
|
abort();
|
|
|
|
if (pthread_join(t1, &t1_buffer))
|
|
|
|
abort();
|
|
|
|
|
|
|
|
memset(t1_buffer, 0, kBufferSize);
|
|
|
|
|
|
|
|
if (arg == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (pthread_create(&t2, NULL, start, NULL))
|
2015-06-16 05:08:47 +08:00
|
|
|
abort();
|
2018-08-15 04:28:58 +08:00
|
|
|
// Second thread destructor cleans up the first thread's stack.
|
|
|
|
if (pthread_join(t2, NULL))
|
2015-06-16 05:08:47 +08:00
|
|
|
abort();
|
|
|
|
|
|
|
|
// should segfault here
|
2018-08-15 04:28:58 +08:00
|
|
|
memset(t1_buffer, 0, kBufferSize);
|
2015-06-16 05:08:47 +08:00
|
|
|
return 0;
|
|
|
|
}
|