blob: 69d28194fb9e5e21de0d2fb367757ea5e5dc3c9c [file] [log] [blame]
Stephen Hines2d1fdb22014-05-28 23:58:16 -07001// Regression test for a leak in tsd:
2// https://code.google.com/p/address-sanitizer/issues/detail?id=233
Stephen Hines6a211c52014-07-21 00:49:56 -07003// RUN: %clangxx_asan -O1 %s -pthread -o %t
Pirama Arumuga Nainarcdce50b2015-07-01 12:26:56 -07004// RUN: env ASAN_OPTIONS=$ASAN_OPTIONS:quarantine_size_mb=0 %run %t
Stephen Hines2d1fdb22014-05-28 23:58:16 -07005#include <pthread.h>
6#include <stdio.h>
7#include <stdlib.h>
8#include <assert.h>
Stephen Hines6a211c52014-07-21 00:49:56 -07009#include <sanitizer/allocator_interface.h>
Stephen Hines2d1fdb22014-05-28 23:58:16 -070010
Stephen Hines2d1fdb22014-05-28 23:58:16 -070011static pthread_key_t tsd_key;
12
13void *Thread(void *) {
14 pthread_setspecific(tsd_key, malloc(10));
15 return 0;
16}
17
18static volatile void *v;
19
20void Dtor(void *tsd) {
21 v = malloc(10000);
22 free(tsd);
23 free((void*)v); // The bug was that this was leaking.
24}
25
26int main() {
27 assert(0 == pthread_key_create(&tsd_key, Dtor));
Stephen Hines86277eb2015-03-23 12:06:32 -070028 pthread_t t;
29 for (int i = 0; i < 3; i++) {
30 pthread_create(&t, 0, Thread, 0);
31 pthread_join(t, 0);
32 }
33 size_t old_heap_size = __sanitizer_get_heap_size();
Stephen Hines2d1fdb22014-05-28 23:58:16 -070034 for (int i = 0; i < 10; i++) {
Stephen Hines2d1fdb22014-05-28 23:58:16 -070035 pthread_create(&t, 0, Thread, 0);
36 pthread_join(t, 0);
Stephen Hines6a211c52014-07-21 00:49:56 -070037 size_t new_heap_size = __sanitizer_get_heap_size();
Stephen Hines2d1fdb22014-05-28 23:58:16 -070038 fprintf(stderr, "heap size: new: %zd old: %zd\n", new_heap_size, old_heap_size);
Stephen Hines86277eb2015-03-23 12:06:32 -070039 assert(old_heap_size == new_heap_size);
Stephen Hines2d1fdb22014-05-28 23:58:16 -070040 }
41}