blob: ed6b2111244cd0461f60d417cffa3c8980a13be2 [file] [log] [blame]
Christopher Ferris17e91d42013-10-21 13:30:52 -07001/*
2 * Copyright (C) 2013 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <dirent.h>
18#include <errno.h>
Christopher Ferrise2960912014-03-07 19:42:19 -080019#include <inttypes.h>
Christopher Ferris17e91d42013-10-21 13:30:52 -070020#include <pthread.h>
21#include <signal.h>
Christopher Ferrise2960912014-03-07 19:42:19 -080022#include <stdint.h>
Christopher Ferris17e91d42013-10-21 13:30:52 -070023#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
26#include <sys/ptrace.h>
27#include <sys/types.h>
28#include <sys/wait.h>
29#include <time.h>
30#include <unistd.h>
31
Christopher Ferris20303f82014-01-10 16:33:16 -080032#include <backtrace/Backtrace.h>
Christopher Ferris46756822014-01-14 20:16:30 -080033#include <backtrace/BacktraceMap.h>
Christopher Ferris20303f82014-01-10 16:33:16 -080034#include <UniquePtr.h>
Christopher Ferris17e91d42013-10-21 13:30:52 -070035
Christopher Ferrisaa63d9f2014-04-29 09:35:30 -070036// For the THREAD_SIGNAL definition.
37#include "BacktraceThread.h"
38
Christopher Ferris17e91d42013-10-21 13:30:52 -070039#include <cutils/atomic.h>
40#include <gtest/gtest.h>
41
Christopher Ferrise2960912014-03-07 19:42:19 -080042#include <algorithm>
Christopher Ferris17e91d42013-10-21 13:30:52 -070043#include <vector>
44
45#include "thread_utils.h"
46
47// Number of microseconds per milliseconds.
48#define US_PER_MSEC 1000
49
50// Number of nanoseconds in a second.
51#define NS_PER_SEC 1000000000ULL
52
53// Number of simultaneous dumping operations to perform.
54#define NUM_THREADS 20
55
56// Number of simultaneous threads running in our forked process.
57#define NUM_PTRACE_THREADS 5
58
Christopher Ferris46756822014-01-14 20:16:30 -080059struct thread_t {
Christopher Ferris17e91d42013-10-21 13:30:52 -070060 pid_t tid;
61 int32_t state;
62 pthread_t threadId;
Christopher Ferris46756822014-01-14 20:16:30 -080063};
Christopher Ferris17e91d42013-10-21 13:30:52 -070064
Christopher Ferris46756822014-01-14 20:16:30 -080065struct dump_thread_t {
Christopher Ferris17e91d42013-10-21 13:30:52 -070066 thread_t thread;
Christopher Ferris20303f82014-01-10 16:33:16 -080067 Backtrace* backtrace;
Christopher Ferris17e91d42013-10-21 13:30:52 -070068 int32_t* now;
69 int32_t done;
Christopher Ferris46756822014-01-14 20:16:30 -080070};
Christopher Ferris17e91d42013-10-21 13:30:52 -070071
72extern "C" {
73// Prototypes for functions in the test library.
74int test_level_one(int, int, int, int, void (*)(void*), void*);
75
76int test_recursive_call(int, void (*)(void*), void*);
77}
78
79uint64_t NanoTime() {
80 struct timespec t = { 0, 0 };
81 clock_gettime(CLOCK_MONOTONIC, &t);
82 return static_cast<uint64_t>(t.tv_sec * NS_PER_SEC + t.tv_nsec);
83}
84
Christopher Ferris20303f82014-01-10 16:33:16 -080085void DumpFrames(Backtrace* backtrace) {
86 if (backtrace->NumFrames() == 0) {
Christopher Ferris17e91d42013-10-21 13:30:52 -070087 printf(" No frames to dump\n");
Christopher Ferris20303f82014-01-10 16:33:16 -080088 return;
89 }
90
91 for (size_t i = 0; i < backtrace->NumFrames(); i++) {
92 printf(" %s\n", backtrace->FormatFrameData(i).c_str());
Christopher Ferris17e91d42013-10-21 13:30:52 -070093 }
94}
95
96void WaitForStop(pid_t pid) {
97 uint64_t start = NanoTime();
98
99 siginfo_t si;
100 while (ptrace(PTRACE_GETSIGINFO, pid, 0, &si) < 0 && (errno == EINTR || errno == ESRCH)) {
101 if ((NanoTime() - start) > NS_PER_SEC) {
102 printf("The process did not get to a stopping point in 1 second.\n");
103 break;
104 }
105 usleep(US_PER_MSEC);
106 }
107}
108
Christopher Ferris20303f82014-01-10 16:33:16 -0800109bool ReadyLevelBacktrace(Backtrace* backtrace) {
Christopher Ferris17e91d42013-10-21 13:30:52 -0700110 // See if test_level_four is in the backtrace.
111 bool found = false;
Christopher Ferris46756822014-01-14 20:16:30 -0800112 for (Backtrace::const_iterator it = backtrace->begin(); it != backtrace->end(); ++it) {
113 if (it->func_name == "test_level_four") {
Christopher Ferris17e91d42013-10-21 13:30:52 -0700114 found = true;
115 break;
116 }
117 }
118
119 return found;
120}
121
Christopher Ferris20303f82014-01-10 16:33:16 -0800122void VerifyLevelDump(Backtrace* backtrace) {
123 ASSERT_GT(backtrace->NumFrames(), static_cast<size_t>(0));
124 ASSERT_LT(backtrace->NumFrames(), static_cast<size_t>(MAX_BACKTRACE_FRAMES));
Christopher Ferris17e91d42013-10-21 13:30:52 -0700125
126 // Look through the frames starting at the highest to find the
127 // frame we want.
128 size_t frame_num = 0;
Christopher Ferris20303f82014-01-10 16:33:16 -0800129 for (size_t i = backtrace->NumFrames()-1; i > 2; i--) {
Christopher Ferris46756822014-01-14 20:16:30 -0800130 if (backtrace->GetFrame(i)->func_name == "test_level_one") {
Christopher Ferris17e91d42013-10-21 13:30:52 -0700131 frame_num = i;
132 break;
133 }
134 }
Christopher Ferris20303f82014-01-10 16:33:16 -0800135 ASSERT_LT(static_cast<size_t>(0), frame_num);
136 ASSERT_LE(static_cast<size_t>(3), frame_num);
Christopher Ferris17e91d42013-10-21 13:30:52 -0700137
Christopher Ferris46756822014-01-14 20:16:30 -0800138 ASSERT_EQ(backtrace->GetFrame(frame_num)->func_name, "test_level_one");
139 ASSERT_EQ(backtrace->GetFrame(frame_num-1)->func_name, "test_level_two");
140 ASSERT_EQ(backtrace->GetFrame(frame_num-2)->func_name, "test_level_three");
141 ASSERT_EQ(backtrace->GetFrame(frame_num-3)->func_name, "test_level_four");
Christopher Ferris17e91d42013-10-21 13:30:52 -0700142}
143
144void VerifyLevelBacktrace(void*) {
Christopher Ferris20303f82014-01-10 16:33:16 -0800145 UniquePtr<Backtrace> backtrace(
146 Backtrace::Create(BACKTRACE_CURRENT_PROCESS, BACKTRACE_CURRENT_THREAD));
147 ASSERT_TRUE(backtrace.get() != NULL);
148 ASSERT_TRUE(backtrace->Unwind(0));
Christopher Ferris17e91d42013-10-21 13:30:52 -0700149
Christopher Ferris20303f82014-01-10 16:33:16 -0800150 VerifyLevelDump(backtrace.get());
Christopher Ferris17e91d42013-10-21 13:30:52 -0700151}
152
Christopher Ferris20303f82014-01-10 16:33:16 -0800153bool ReadyMaxBacktrace(Backtrace* backtrace) {
154 return (backtrace->NumFrames() == MAX_BACKTRACE_FRAMES);
Christopher Ferris17e91d42013-10-21 13:30:52 -0700155}
156
Christopher Ferris20303f82014-01-10 16:33:16 -0800157void VerifyMaxDump(Backtrace* backtrace) {
158 ASSERT_EQ(backtrace->NumFrames(), static_cast<size_t>(MAX_BACKTRACE_FRAMES));
Christopher Ferris17e91d42013-10-21 13:30:52 -0700159 // Verify that the last frame is our recursive call.
Christopher Ferris46756822014-01-14 20:16:30 -0800160 ASSERT_EQ(backtrace->GetFrame(MAX_BACKTRACE_FRAMES-1)->func_name,
161 "test_recursive_call");
Christopher Ferris17e91d42013-10-21 13:30:52 -0700162}
163
164void VerifyMaxBacktrace(void*) {
Christopher Ferris20303f82014-01-10 16:33:16 -0800165 UniquePtr<Backtrace> backtrace(
166 Backtrace::Create(BACKTRACE_CURRENT_PROCESS, BACKTRACE_CURRENT_THREAD));
167 ASSERT_TRUE(backtrace.get() != NULL);
168 ASSERT_TRUE(backtrace->Unwind(0));
Christopher Ferris17e91d42013-10-21 13:30:52 -0700169
Christopher Ferris20303f82014-01-10 16:33:16 -0800170 VerifyMaxDump(backtrace.get());
Christopher Ferris17e91d42013-10-21 13:30:52 -0700171}
172
173void ThreadSetState(void* data) {
174 thread_t* thread = reinterpret_cast<thread_t*>(data);
175 android_atomic_acquire_store(1, &thread->state);
176 volatile int i = 0;
177 while (thread->state) {
178 i++;
179 }
180}
181
Christopher Ferris20303f82014-01-10 16:33:16 -0800182void VerifyThreadTest(pid_t tid, void (*VerifyFunc)(Backtrace*)) {
183 UniquePtr<Backtrace> backtrace(Backtrace::Create(getpid(), tid));
184 ASSERT_TRUE(backtrace.get() != NULL);
185 ASSERT_TRUE(backtrace->Unwind(0));
Christopher Ferris17e91d42013-10-21 13:30:52 -0700186
Christopher Ferris20303f82014-01-10 16:33:16 -0800187 VerifyFunc(backtrace.get());
Christopher Ferris17e91d42013-10-21 13:30:52 -0700188}
189
190bool WaitForNonZero(int32_t* value, uint64_t seconds) {
191 uint64_t start = NanoTime();
192 do {
193 if (android_atomic_acquire_load(value)) {
194 return true;
195 }
196 } while ((NanoTime() - start) < seconds * NS_PER_SEC);
197 return false;
198}
199
200TEST(libbacktrace, local_trace) {
201 ASSERT_NE(test_level_one(1, 2, 3, 4, VerifyLevelBacktrace, NULL), 0);
202}
203
204void VerifyIgnoreFrames(
Christopher Ferris20303f82014-01-10 16:33:16 -0800205 Backtrace* bt_all, Backtrace* bt_ign1,
206 Backtrace* bt_ign2, const char* cur_proc) {
207 EXPECT_EQ(bt_all->NumFrames(), bt_ign1->NumFrames() + 1);
208 EXPECT_EQ(bt_all->NumFrames(), bt_ign2->NumFrames() + 2);
Christopher Ferris17e91d42013-10-21 13:30:52 -0700209
210 // Check all of the frames are the same > the current frame.
211 bool check = (cur_proc == NULL);
Christopher Ferris20303f82014-01-10 16:33:16 -0800212 for (size_t i = 0; i < bt_ign2->NumFrames(); i++) {
Christopher Ferris17e91d42013-10-21 13:30:52 -0700213 if (check) {
Christopher Ferris20303f82014-01-10 16:33:16 -0800214 EXPECT_EQ(bt_ign2->GetFrame(i)->pc, bt_ign1->GetFrame(i+1)->pc);
215 EXPECT_EQ(bt_ign2->GetFrame(i)->sp, bt_ign1->GetFrame(i+1)->sp);
216 EXPECT_EQ(bt_ign2->GetFrame(i)->stack_size, bt_ign1->GetFrame(i+1)->stack_size);
Christopher Ferris17e91d42013-10-21 13:30:52 -0700217
Christopher Ferris20303f82014-01-10 16:33:16 -0800218 EXPECT_EQ(bt_ign2->GetFrame(i)->pc, bt_all->GetFrame(i+2)->pc);
219 EXPECT_EQ(bt_ign2->GetFrame(i)->sp, bt_all->GetFrame(i+2)->sp);
220 EXPECT_EQ(bt_ign2->GetFrame(i)->stack_size, bt_all->GetFrame(i+2)->stack_size);
Christopher Ferris17e91d42013-10-21 13:30:52 -0700221 }
Christopher Ferris46756822014-01-14 20:16:30 -0800222 if (!check && bt_ign2->GetFrame(i)->func_name == cur_proc) {
Christopher Ferris17e91d42013-10-21 13:30:52 -0700223 check = true;
224 }
225 }
226}
227
228void VerifyLevelIgnoreFrames(void*) {
Christopher Ferris20303f82014-01-10 16:33:16 -0800229 UniquePtr<Backtrace> all(
230 Backtrace::Create(BACKTRACE_CURRENT_PROCESS, BACKTRACE_CURRENT_THREAD));
231 ASSERT_TRUE(all.get() != NULL);
232 ASSERT_TRUE(all->Unwind(0));
Christopher Ferris17e91d42013-10-21 13:30:52 -0700233
Christopher Ferris20303f82014-01-10 16:33:16 -0800234 UniquePtr<Backtrace> ign1(
235 Backtrace::Create(BACKTRACE_CURRENT_PROCESS, BACKTRACE_CURRENT_THREAD));
236 ASSERT_TRUE(ign1.get() != NULL);
237 ASSERT_TRUE(ign1->Unwind(1));
Christopher Ferris17e91d42013-10-21 13:30:52 -0700238
Christopher Ferris20303f82014-01-10 16:33:16 -0800239 UniquePtr<Backtrace> ign2(
240 Backtrace::Create(BACKTRACE_CURRENT_PROCESS, BACKTRACE_CURRENT_THREAD));
241 ASSERT_TRUE(ign2.get() != NULL);
242 ASSERT_TRUE(ign2->Unwind(2));
Christopher Ferris17e91d42013-10-21 13:30:52 -0700243
Christopher Ferris20303f82014-01-10 16:33:16 -0800244 VerifyIgnoreFrames(all.get(), ign1.get(), ign2.get(), "VerifyLevelIgnoreFrames");
Christopher Ferris17e91d42013-10-21 13:30:52 -0700245}
246
247TEST(libbacktrace, local_trace_ignore_frames) {
248 ASSERT_NE(test_level_one(1, 2, 3, 4, VerifyLevelIgnoreFrames, NULL), 0);
249}
250
251TEST(libbacktrace, local_max_trace) {
252 ASSERT_NE(test_recursive_call(MAX_BACKTRACE_FRAMES+10, VerifyMaxBacktrace, NULL), 0);
253}
254
Christopher Ferrisdf290612014-01-22 19:21:07 -0800255void VerifyProcTest(pid_t pid, pid_t tid, bool share_map,
Christopher Ferris20303f82014-01-10 16:33:16 -0800256 bool (*ReadyFunc)(Backtrace*),
257 void (*VerifyFunc)(Backtrace*)) {
Christopher Ferris17e91d42013-10-21 13:30:52 -0700258 pid_t ptrace_tid;
259 if (tid < 0) {
260 ptrace_tid = pid;
261 } else {
262 ptrace_tid = tid;
263 }
264 uint64_t start = NanoTime();
265 bool verified = false;
266 do {
267 usleep(US_PER_MSEC);
268 if (ptrace(PTRACE_ATTACH, ptrace_tid, 0, 0) == 0) {
269 // Wait for the process to get to a stopping point.
270 WaitForStop(ptrace_tid);
271
Christopher Ferrisdf290612014-01-22 19:21:07 -0800272 UniquePtr<BacktraceMap> map;
273 if (share_map) {
274 map.reset(BacktraceMap::Create(pid));
275 }
276 UniquePtr<Backtrace> backtrace(Backtrace::Create(pid, tid, map.get()));
Christopher Ferris20303f82014-01-10 16:33:16 -0800277 ASSERT_TRUE(backtrace->Unwind(0));
278 ASSERT_TRUE(backtrace.get() != NULL);
279 if (ReadyFunc(backtrace.get())) {
280 VerifyFunc(backtrace.get());
Christopher Ferris17e91d42013-10-21 13:30:52 -0700281 verified = true;
282 }
Christopher Ferris20303f82014-01-10 16:33:16 -0800283
Christopher Ferris17e91d42013-10-21 13:30:52 -0700284 ASSERT_TRUE(ptrace(PTRACE_DETACH, ptrace_tid, 0, 0) == 0);
285 }
286 // If 5 seconds have passed, then we are done.
287 } while (!verified && (NanoTime() - start) <= 5 * NS_PER_SEC);
288 ASSERT_TRUE(verified);
289}
290
291TEST(libbacktrace, ptrace_trace) {
292 pid_t pid;
293 if ((pid = fork()) == 0) {
294 ASSERT_NE(test_level_one(1, 2, 3, 4, NULL, NULL), 0);
Christopher Ferrise2960912014-03-07 19:42:19 -0800295 _exit(1);
Christopher Ferris17e91d42013-10-21 13:30:52 -0700296 }
Christopher Ferrisdf290612014-01-22 19:21:07 -0800297 VerifyProcTest(pid, BACKTRACE_CURRENT_THREAD, false, ReadyLevelBacktrace, VerifyLevelDump);
298
299 kill(pid, SIGKILL);
300 int status;
301 ASSERT_EQ(waitpid(pid, &status, 0), pid);
302}
303
304TEST(libbacktrace, ptrace_trace_shared_map) {
305 pid_t pid;
306 if ((pid = fork()) == 0) {
307 ASSERT_NE(test_level_one(1, 2, 3, 4, NULL, NULL), 0);
Christopher Ferrise2960912014-03-07 19:42:19 -0800308 _exit(1);
Christopher Ferrisdf290612014-01-22 19:21:07 -0800309 }
310
311 VerifyProcTest(pid, BACKTRACE_CURRENT_THREAD, true, ReadyLevelBacktrace, VerifyLevelDump);
Christopher Ferris17e91d42013-10-21 13:30:52 -0700312
313 kill(pid, SIGKILL);
314 int status;
315 ASSERT_EQ(waitpid(pid, &status, 0), pid);
316}
317
318TEST(libbacktrace, ptrace_max_trace) {
319 pid_t pid;
320 if ((pid = fork()) == 0) {
321 ASSERT_NE(test_recursive_call(MAX_BACKTRACE_FRAMES+10, NULL, NULL), 0);
Christopher Ferrise2960912014-03-07 19:42:19 -0800322 _exit(1);
Christopher Ferris17e91d42013-10-21 13:30:52 -0700323 }
Christopher Ferrisdf290612014-01-22 19:21:07 -0800324 VerifyProcTest(pid, BACKTRACE_CURRENT_THREAD, false, ReadyMaxBacktrace, VerifyMaxDump);
Christopher Ferris17e91d42013-10-21 13:30:52 -0700325
326 kill(pid, SIGKILL);
327 int status;
328 ASSERT_EQ(waitpid(pid, &status, 0), pid);
329}
330
Christopher Ferris20303f82014-01-10 16:33:16 -0800331void VerifyProcessIgnoreFrames(Backtrace* bt_all) {
332 UniquePtr<Backtrace> ign1(Backtrace::Create(bt_all->Pid(), BACKTRACE_CURRENT_THREAD));
333 ASSERT_TRUE(ign1.get() != NULL);
334 ASSERT_TRUE(ign1->Unwind(1));
Christopher Ferris17e91d42013-10-21 13:30:52 -0700335
Christopher Ferris20303f82014-01-10 16:33:16 -0800336 UniquePtr<Backtrace> ign2(Backtrace::Create(bt_all->Pid(), BACKTRACE_CURRENT_THREAD));
337 ASSERT_TRUE(ign2.get() != NULL);
338 ASSERT_TRUE(ign2->Unwind(2));
Christopher Ferris17e91d42013-10-21 13:30:52 -0700339
Christopher Ferris20303f82014-01-10 16:33:16 -0800340 VerifyIgnoreFrames(bt_all, ign1.get(), ign2.get(), NULL);
Christopher Ferris17e91d42013-10-21 13:30:52 -0700341}
342
343TEST(libbacktrace, ptrace_ignore_frames) {
344 pid_t pid;
345 if ((pid = fork()) == 0) {
346 ASSERT_NE(test_level_one(1, 2, 3, 4, NULL, NULL), 0);
Christopher Ferrise2960912014-03-07 19:42:19 -0800347 _exit(1);
Christopher Ferris17e91d42013-10-21 13:30:52 -0700348 }
Christopher Ferrisdf290612014-01-22 19:21:07 -0800349 VerifyProcTest(pid, BACKTRACE_CURRENT_THREAD, false, ReadyLevelBacktrace, VerifyProcessIgnoreFrames);
Christopher Ferris17e91d42013-10-21 13:30:52 -0700350
351 kill(pid, SIGKILL);
352 int status;
353 ASSERT_EQ(waitpid(pid, &status, 0), pid);
354}
355
356// Create a process with multiple threads and dump all of the threads.
357void* PtraceThreadLevelRun(void*) {
358 EXPECT_NE(test_level_one(1, 2, 3, 4, NULL, NULL), 0);
359 return NULL;
360}
361
362void GetThreads(pid_t pid, std::vector<pid_t>* threads) {
363 // Get the list of tasks.
364 char task_path[128];
365 snprintf(task_path, sizeof(task_path), "/proc/%d/task", pid);
366
367 DIR* tasks_dir = opendir(task_path);
368 ASSERT_TRUE(tasks_dir != NULL);
369 struct dirent* entry;
370 while ((entry = readdir(tasks_dir)) != NULL) {
371 char* end;
372 pid_t tid = strtoul(entry->d_name, &end, 10);
373 if (*end == '\0') {
374 threads->push_back(tid);
375 }
376 }
377 closedir(tasks_dir);
378}
379
380TEST(libbacktrace, ptrace_threads) {
381 pid_t pid;
382 if ((pid = fork()) == 0) {
383 for (size_t i = 0; i < NUM_PTRACE_THREADS; i++) {
384 pthread_attr_t attr;
385 pthread_attr_init(&attr);
386 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
387
388 pthread_t thread;
389 ASSERT_TRUE(pthread_create(&thread, &attr, PtraceThreadLevelRun, NULL) == 0);
390 }
391 ASSERT_NE(test_level_one(1, 2, 3, 4, NULL, NULL), 0);
Christopher Ferrise2960912014-03-07 19:42:19 -0800392 _exit(1);
Christopher Ferris17e91d42013-10-21 13:30:52 -0700393 }
394
395 // Check to see that all of the threads are running before unwinding.
396 std::vector<pid_t> threads;
397 uint64_t start = NanoTime();
398 do {
399 usleep(US_PER_MSEC);
400 threads.clear();
401 GetThreads(pid, &threads);
402 } while ((threads.size() != NUM_PTRACE_THREADS + 1) &&
403 ((NanoTime() - start) <= 5 * NS_PER_SEC));
404 ASSERT_EQ(threads.size(), static_cast<size_t>(NUM_PTRACE_THREADS + 1));
405
406 ASSERT_TRUE(ptrace(PTRACE_ATTACH, pid, 0, 0) == 0);
407 WaitForStop(pid);
408 for (std::vector<int>::const_iterator it = threads.begin(); it != threads.end(); ++it) {
409 // Skip the current forked process, we only care about the threads.
410 if (pid == *it) {
411 continue;
412 }
Christopher Ferrisdf290612014-01-22 19:21:07 -0800413 VerifyProcTest(pid, *it, false, ReadyLevelBacktrace, VerifyLevelDump);
Christopher Ferris17e91d42013-10-21 13:30:52 -0700414 }
415 ASSERT_TRUE(ptrace(PTRACE_DETACH, pid, 0, 0) == 0);
416
417 kill(pid, SIGKILL);
418 int status;
419 ASSERT_EQ(waitpid(pid, &status, 0), pid);
420}
421
422void VerifyLevelThread(void*) {
Christopher Ferris20303f82014-01-10 16:33:16 -0800423 UniquePtr<Backtrace> backtrace(Backtrace::Create(getpid(), gettid()));
424 ASSERT_TRUE(backtrace.get() != NULL);
425 ASSERT_TRUE(backtrace->Unwind(0));
Christopher Ferris17e91d42013-10-21 13:30:52 -0700426
Christopher Ferris20303f82014-01-10 16:33:16 -0800427 VerifyLevelDump(backtrace.get());
Christopher Ferris17e91d42013-10-21 13:30:52 -0700428}
429
430TEST(libbacktrace, thread_current_level) {
431 ASSERT_NE(test_level_one(1, 2, 3, 4, VerifyLevelThread, NULL), 0);
432}
433
434void VerifyMaxThread(void*) {
Christopher Ferris20303f82014-01-10 16:33:16 -0800435 UniquePtr<Backtrace> backtrace(Backtrace::Create(getpid(), gettid()));
436 ASSERT_TRUE(backtrace.get() != NULL);
437 ASSERT_TRUE(backtrace->Unwind(0));
Christopher Ferris17e91d42013-10-21 13:30:52 -0700438
Christopher Ferris20303f82014-01-10 16:33:16 -0800439 VerifyMaxDump(backtrace.get());
Christopher Ferris17e91d42013-10-21 13:30:52 -0700440}
441
442TEST(libbacktrace, thread_current_max) {
443 ASSERT_NE(test_recursive_call(MAX_BACKTRACE_FRAMES+10, VerifyMaxThread, NULL), 0);
444}
445
446void* ThreadLevelRun(void* data) {
447 thread_t* thread = reinterpret_cast<thread_t*>(data);
448
449 thread->tid = gettid();
450 EXPECT_NE(test_level_one(1, 2, 3, 4, ThreadSetState, data), 0);
451 return NULL;
452}
453
454TEST(libbacktrace, thread_level_trace) {
455 pthread_attr_t attr;
456 pthread_attr_init(&attr);
457 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
458
459 thread_t thread_data = { 0, 0, 0 };
460 pthread_t thread;
461 ASSERT_TRUE(pthread_create(&thread, &attr, ThreadLevelRun, &thread_data) == 0);
462
463 // Wait up to 2 seconds for the tid to be set.
464 ASSERT_TRUE(WaitForNonZero(&thread_data.state, 2));
465
Christopher Ferrisaa63d9f2014-04-29 09:35:30 -0700466 // Make sure that the thread signal used is not visible when compiled for
467 // the target.
468#if !defined(__GLIBC__)
469 ASSERT_LT(THREAD_SIGNAL, SIGRTMIN);
470#endif
471
Christopher Ferris17e91d42013-10-21 13:30:52 -0700472 // Save the current signal action and make sure it is restored afterwards.
473 struct sigaction cur_action;
Christopher Ferrisaa63d9f2014-04-29 09:35:30 -0700474 ASSERT_TRUE(sigaction(THREAD_SIGNAL, NULL, &cur_action) == 0);
Christopher Ferris17e91d42013-10-21 13:30:52 -0700475
Christopher Ferris20303f82014-01-10 16:33:16 -0800476 UniquePtr<Backtrace> backtrace(Backtrace::Create(getpid(), thread_data.tid));
477 ASSERT_TRUE(backtrace.get() != NULL);
478 ASSERT_TRUE(backtrace->Unwind(0));
Christopher Ferris17e91d42013-10-21 13:30:52 -0700479
Christopher Ferris20303f82014-01-10 16:33:16 -0800480 VerifyLevelDump(backtrace.get());
Christopher Ferris17e91d42013-10-21 13:30:52 -0700481
482 // Tell the thread to exit its infinite loop.
483 android_atomic_acquire_store(0, &thread_data.state);
484
485 // Verify that the old action was restored.
486 struct sigaction new_action;
Christopher Ferrisaa63d9f2014-04-29 09:35:30 -0700487 ASSERT_TRUE(sigaction(THREAD_SIGNAL, NULL, &new_action) == 0);
Christopher Ferris17e91d42013-10-21 13:30:52 -0700488 EXPECT_EQ(cur_action.sa_sigaction, new_action.sa_sigaction);
489 EXPECT_EQ(cur_action.sa_flags, new_action.sa_flags);
490}
491
492TEST(libbacktrace, thread_ignore_frames) {
493 pthread_attr_t attr;
494 pthread_attr_init(&attr);
495 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
496
497 thread_t thread_data = { 0, 0, 0 };
498 pthread_t thread;
499 ASSERT_TRUE(pthread_create(&thread, &attr, ThreadLevelRun, &thread_data) == 0);
500
501 // Wait up to 2 seconds for the tid to be set.
502 ASSERT_TRUE(WaitForNonZero(&thread_data.state, 2));
503
Christopher Ferris20303f82014-01-10 16:33:16 -0800504 UniquePtr<Backtrace> all(Backtrace::Create(getpid(), thread_data.tid));
505 ASSERT_TRUE(all.get() != NULL);
506 ASSERT_TRUE(all->Unwind(0));
Christopher Ferris17e91d42013-10-21 13:30:52 -0700507
Christopher Ferris20303f82014-01-10 16:33:16 -0800508 UniquePtr<Backtrace> ign1(Backtrace::Create(getpid(), thread_data.tid));
509 ASSERT_TRUE(ign1.get() != NULL);
510 ASSERT_TRUE(ign1->Unwind(1));
Christopher Ferris17e91d42013-10-21 13:30:52 -0700511
Christopher Ferris20303f82014-01-10 16:33:16 -0800512 UniquePtr<Backtrace> ign2(Backtrace::Create(getpid(), thread_data.tid));
513 ASSERT_TRUE(ign2.get() != NULL);
514 ASSERT_TRUE(ign2->Unwind(2));
Christopher Ferris17e91d42013-10-21 13:30:52 -0700515
Christopher Ferris20303f82014-01-10 16:33:16 -0800516 VerifyIgnoreFrames(all.get(), ign1.get(), ign2.get(), NULL);
Christopher Ferris17e91d42013-10-21 13:30:52 -0700517
518 // Tell the thread to exit its infinite loop.
519 android_atomic_acquire_store(0, &thread_data.state);
520}
521
522void* ThreadMaxRun(void* data) {
523 thread_t* thread = reinterpret_cast<thread_t*>(data);
524
525 thread->tid = gettid();
526 EXPECT_NE(test_recursive_call(MAX_BACKTRACE_FRAMES+10, ThreadSetState, data), 0);
527 return NULL;
528}
529
530TEST(libbacktrace, thread_max_trace) {
531 pthread_attr_t attr;
532 pthread_attr_init(&attr);
533 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
534
535 thread_t thread_data = { 0, 0, 0 };
536 pthread_t thread;
537 ASSERT_TRUE(pthread_create(&thread, &attr, ThreadMaxRun, &thread_data) == 0);
538
539 // Wait for the tid to be set.
540 ASSERT_TRUE(WaitForNonZero(&thread_data.state, 2));
541
Christopher Ferris20303f82014-01-10 16:33:16 -0800542 UniquePtr<Backtrace> backtrace(Backtrace::Create(getpid(), thread_data.tid));
543 ASSERT_TRUE(backtrace.get() != NULL);
544 ASSERT_TRUE(backtrace->Unwind(0));
Christopher Ferris17e91d42013-10-21 13:30:52 -0700545
Christopher Ferris20303f82014-01-10 16:33:16 -0800546 VerifyMaxDump(backtrace.get());
Christopher Ferris17e91d42013-10-21 13:30:52 -0700547
548 // Tell the thread to exit its infinite loop.
549 android_atomic_acquire_store(0, &thread_data.state);
550}
551
552void* ThreadDump(void* data) {
553 dump_thread_t* dump = reinterpret_cast<dump_thread_t*>(data);
554 while (true) {
555 if (android_atomic_acquire_load(dump->now)) {
556 break;
557 }
558 }
559
Christopher Ferris17e91d42013-10-21 13:30:52 -0700560 // The status of the actual unwind will be checked elsewhere.
Christopher Ferris20303f82014-01-10 16:33:16 -0800561 dump->backtrace = Backtrace::Create(getpid(), dump->thread.tid);
562 dump->backtrace->Unwind(0);
Christopher Ferris17e91d42013-10-21 13:30:52 -0700563
564 android_atomic_acquire_store(1, &dump->done);
565
566 return NULL;
567}
568
569TEST(libbacktrace, thread_multiple_dump) {
570 // Dump NUM_THREADS simultaneously.
571 std::vector<thread_t> runners(NUM_THREADS);
572 std::vector<dump_thread_t> dumpers(NUM_THREADS);
573
574 pthread_attr_t attr;
575 pthread_attr_init(&attr);
576 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
577 for (size_t i = 0; i < NUM_THREADS; i++) {
578 // Launch the runners, they will spin in hard loops doing nothing.
579 runners[i].tid = 0;
580 runners[i].state = 0;
581 ASSERT_TRUE(pthread_create(&runners[i].threadId, &attr, ThreadMaxRun, &runners[i]) == 0);
582 }
583
584 // Wait for tids to be set.
585 for (std::vector<thread_t>::iterator it = runners.begin(); it != runners.end(); ++it) {
586 ASSERT_TRUE(WaitForNonZero(&it->state, 10));
587 }
588
589 // Start all of the dumpers at once, they will spin until they are signalled
590 // to begin their dump run.
591 int32_t dump_now = 0;
592 for (size_t i = 0; i < NUM_THREADS; i++) {
593 dumpers[i].thread.tid = runners[i].tid;
594 dumpers[i].thread.state = 0;
595 dumpers[i].done = 0;
596 dumpers[i].now = &dump_now;
597
598 ASSERT_TRUE(pthread_create(&dumpers[i].thread.threadId, &attr, ThreadDump, &dumpers[i]) == 0);
599 }
600
601 // Start all of the dumpers going at once.
602 android_atomic_acquire_store(1, &dump_now);
603
604 for (size_t i = 0; i < NUM_THREADS; i++) {
605 ASSERT_TRUE(WaitForNonZero(&dumpers[i].done, 10));
606
607 // Tell the runner thread to exit its infinite loop.
608 android_atomic_acquire_store(0, &runners[i].state);
609
Christopher Ferris20303f82014-01-10 16:33:16 -0800610 ASSERT_TRUE(dumpers[i].backtrace != NULL);
611 VerifyMaxDump(dumpers[i].backtrace);
612
613 delete dumpers[i].backtrace;
614 dumpers[i].backtrace = NULL;
Christopher Ferris17e91d42013-10-21 13:30:52 -0700615 }
616}
617
Christopher Ferrisa2efd3a2014-05-06 15:23:59 -0700618TEST(libbacktrace, thread_multiple_dump_same_thread) {
619 pthread_attr_t attr;
620 pthread_attr_init(&attr);
621 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
622 thread_t runner;
623 runner.tid = 0;
624 runner.state = 0;
625 ASSERT_TRUE(pthread_create(&runner.threadId, &attr, ThreadMaxRun, &runner) == 0);
626
627 // Wait for tids to be set.
628 ASSERT_TRUE(WaitForNonZero(&runner.state, 10));
629
630 // Start all of the dumpers at once, they will spin until they are signalled
631 // to begin their dump run.
632 int32_t dump_now = 0;
633 // Dump the same thread NUM_THREADS simultaneously.
634 std::vector<dump_thread_t> dumpers(NUM_THREADS);
635 for (size_t i = 0; i < NUM_THREADS; i++) {
636 dumpers[i].thread.tid = runner.tid;
637 dumpers[i].thread.state = 0;
638 dumpers[i].done = 0;
639 dumpers[i].now = &dump_now;
640
641 ASSERT_TRUE(pthread_create(&dumpers[i].thread.threadId, &attr, ThreadDump, &dumpers[i]) == 0);
642 }
643
644 // Start all of the dumpers going at once.
645 android_atomic_acquire_store(1, &dump_now);
646
647 for (size_t i = 0; i < NUM_THREADS; i++) {
648 ASSERT_TRUE(WaitForNonZero(&dumpers[i].done, 100));
649
650 ASSERT_TRUE(dumpers[i].backtrace != NULL);
651 VerifyMaxDump(dumpers[i].backtrace);
652
653 delete dumpers[i].backtrace;
654 dumpers[i].backtrace = NULL;
655 }
656
657 // Tell the runner thread to exit its infinite loop.
658 android_atomic_acquire_store(0, &runner.state);
659}
660
Christopher Ferrisdf290612014-01-22 19:21:07 -0800661// This test is for UnwindMaps that should share the same map cursor when
662// multiple maps are created for the current process at the same time.
663TEST(libbacktrace, simultaneous_maps) {
664 BacktraceMap* map1 = BacktraceMap::Create(getpid());
665 BacktraceMap* map2 = BacktraceMap::Create(getpid());
666 BacktraceMap* map3 = BacktraceMap::Create(getpid());
667
668 Backtrace* back1 = Backtrace::Create(getpid(), BACKTRACE_CURRENT_THREAD, map1);
669 EXPECT_TRUE(back1->Unwind(0));
670 delete back1;
671 delete map1;
672
673 Backtrace* back2 = Backtrace::Create(getpid(), BACKTRACE_CURRENT_THREAD, map2);
674 EXPECT_TRUE(back2->Unwind(0));
675 delete back2;
676 delete map2;
677
678 Backtrace* back3 = Backtrace::Create(getpid(), BACKTRACE_CURRENT_THREAD, map3);
679 EXPECT_TRUE(back3->Unwind(0));
680 delete back3;
681 delete map3;
682}
683
Christopher Ferris17e91d42013-10-21 13:30:52 -0700684TEST(libbacktrace, format_test) {
Christopher Ferris20303f82014-01-10 16:33:16 -0800685 UniquePtr<Backtrace> backtrace(Backtrace::Create(getpid(), BACKTRACE_CURRENT_THREAD));
686 ASSERT_TRUE(backtrace.get() != NULL);
Christopher Ferris17e91d42013-10-21 13:30:52 -0700687
Christopher Ferris20303f82014-01-10 16:33:16 -0800688 backtrace_frame_data_t frame;
Christopher Ferris46756822014-01-14 20:16:30 -0800689 frame.num = 1;
690 frame.pc = 2;
691 frame.sp = 0;
692 frame.stack_size = 0;
693 frame.map = NULL;
694 frame.func_offset = 0;
Christopher Ferris17e91d42013-10-21 13:30:52 -0700695
Christopher Ferris46756822014-01-14 20:16:30 -0800696 backtrace_map_t map;
697 map.start = 0;
698 map.end = 0;
699
700 // Check no map set.
Christopher Ferris20303f82014-01-10 16:33:16 -0800701 frame.num = 1;
Christopher Ferris17e91d42013-10-21 13:30:52 -0700702#if defined(__LP64__)
Christopher Ferris46756822014-01-14 20:16:30 -0800703 EXPECT_EQ("#01 pc 0000000000000002 <unknown>",
Christopher Ferris17e91d42013-10-21 13:30:52 -0700704#else
Christopher Ferris46756822014-01-14 20:16:30 -0800705 EXPECT_EQ("#01 pc 00000002 <unknown>",
Christopher Ferris17e91d42013-10-21 13:30:52 -0700706#endif
Christopher Ferris46756822014-01-14 20:16:30 -0800707 backtrace->FormatFrameData(&frame));
Christopher Ferris17e91d42013-10-21 13:30:52 -0700708
Christopher Ferris46756822014-01-14 20:16:30 -0800709 // Check map name empty, but exists.
710 frame.map = &map;
711 map.start = 1;
Christopher Ferris17e91d42013-10-21 13:30:52 -0700712#if defined(__LP64__)
Christopher Ferris46756822014-01-14 20:16:30 -0800713 EXPECT_EQ("#01 pc 0000000000000001 <unknown>",
Christopher Ferris17e91d42013-10-21 13:30:52 -0700714#else
Christopher Ferris46756822014-01-14 20:16:30 -0800715 EXPECT_EQ("#01 pc 00000001 <unknown>",
Christopher Ferris17e91d42013-10-21 13:30:52 -0700716#endif
Christopher Ferris46756822014-01-14 20:16:30 -0800717 backtrace->FormatFrameData(&frame));
Christopher Ferris17e91d42013-10-21 13:30:52 -0700718
Christopher Ferris46756822014-01-14 20:16:30 -0800719
720 // Check relative pc is set and map name is set.
721 frame.pc = 0x12345679;
722 frame.map = &map;
723 map.name = "MapFake";
724 map.start = 1;
Christopher Ferris17e91d42013-10-21 13:30:52 -0700725#if defined(__LP64__)
Christopher Ferris46756822014-01-14 20:16:30 -0800726 EXPECT_EQ("#01 pc 0000000012345678 MapFake",
Christopher Ferris17e91d42013-10-21 13:30:52 -0700727#else
Christopher Ferris46756822014-01-14 20:16:30 -0800728 EXPECT_EQ("#01 pc 12345678 MapFake",
Christopher Ferris17e91d42013-10-21 13:30:52 -0700729#endif
Christopher Ferris46756822014-01-14 20:16:30 -0800730 backtrace->FormatFrameData(&frame));
Christopher Ferris17e91d42013-10-21 13:30:52 -0700731
Christopher Ferris46756822014-01-14 20:16:30 -0800732 // Check func_name is set, but no func offset.
733 frame.func_name = "ProcFake";
734#if defined(__LP64__)
735 EXPECT_EQ("#01 pc 0000000012345678 MapFake (ProcFake)",
736#else
737 EXPECT_EQ("#01 pc 12345678 MapFake (ProcFake)",
738#endif
739 backtrace->FormatFrameData(&frame));
740
741 // Check func_name is set, and func offset is non-zero.
Christopher Ferris20303f82014-01-10 16:33:16 -0800742 frame.func_offset = 645;
Christopher Ferris17e91d42013-10-21 13:30:52 -0700743#if defined(__LP64__)
Christopher Ferris46756822014-01-14 20:16:30 -0800744 EXPECT_EQ("#01 pc 0000000012345678 MapFake (ProcFake+645)",
Christopher Ferris17e91d42013-10-21 13:30:52 -0700745#else
Christopher Ferris46756822014-01-14 20:16:30 -0800746 EXPECT_EQ("#01 pc 12345678 MapFake (ProcFake+645)",
Christopher Ferris17e91d42013-10-21 13:30:52 -0700747#endif
Christopher Ferris46756822014-01-14 20:16:30 -0800748 backtrace->FormatFrameData(&frame));
Christopher Ferris17e91d42013-10-21 13:30:52 -0700749}
Christopher Ferrise2960912014-03-07 19:42:19 -0800750
751struct map_test_t {
752 uintptr_t start;
753 uintptr_t end;
754};
755
756bool map_sort(map_test_t i, map_test_t j) {
757 return i.start < j.start;
758}
759
760static void VerifyMap(pid_t pid) {
761 char buffer[4096];
762 snprintf(buffer, sizeof(buffer), "/proc/%d/maps", pid);
763
764 FILE* map_file = fopen(buffer, "r");
765 ASSERT_TRUE(map_file != NULL);
766 std::vector<map_test_t> test_maps;
767 while (fgets(buffer, sizeof(buffer), map_file)) {
768 map_test_t map;
769 ASSERT_EQ(2, sscanf(buffer, "%" SCNxPTR "-%" SCNxPTR " ", &map.start, &map.end));
770 test_maps.push_back(map);
771 }
772 fclose(map_file);
773 std::sort(test_maps.begin(), test_maps.end(), map_sort);
774
775 UniquePtr<BacktraceMap> map(BacktraceMap::Create(pid));
776
777 // Basic test that verifies that the map is in the expected order.
778 std::vector<map_test_t>::const_iterator test_it = test_maps.begin();
779 for (BacktraceMap::const_iterator it = map->begin(); it != map->end(); ++it) {
780 ASSERT_TRUE(test_it != test_maps.end());
781 ASSERT_EQ(test_it->start, it->start);
782 ASSERT_EQ(test_it->end, it->end);
783 ++test_it;
784 }
785 ASSERT_TRUE(test_it == test_maps.end());
786}
787
788TEST(libbacktrace, verify_map_remote) {
789 pid_t pid;
790
791 if ((pid = fork()) == 0) {
792 while (true) {
793 }
794 _exit(0);
795 }
796 ASSERT_LT(0, pid);
797
798 ASSERT_TRUE(ptrace(PTRACE_ATTACH, pid, 0, 0) == 0);
799
800 // Wait for the process to get to a stopping point.
801 WaitForStop(pid);
802
803 // The maps should match exactly since the forked process has been paused.
804 VerifyMap(pid);
805
806 ASSERT_TRUE(ptrace(PTRACE_DETACH, pid, 0, 0) == 0);
807
808 kill(pid, SIGKILL);
809 ASSERT_EQ(waitpid(pid, NULL, 0), pid);
810}
811
812#if defined(ENABLE_PSS_TESTS)
813#include "GetPss.h"
814
815#define MAX_LEAK_BYTES 32*1024UL
816
817static void CheckForLeak(pid_t pid, pid_t tid) {
818 // Do a few runs to get the PSS stable.
819 for (size_t i = 0; i < 100; i++) {
820 Backtrace* backtrace = Backtrace::Create(pid, tid);
821 ASSERT_TRUE(backtrace != NULL);
822 ASSERT_TRUE(backtrace->Unwind(0));
823 delete backtrace;
824 }
825 size_t stable_pss = GetPssBytes();
826
827 // Loop enough that even a small leak should be detectable.
828 for (size_t i = 0; i < 4096; i++) {
829 Backtrace* backtrace = Backtrace::Create(pid, tid);
830 ASSERT_TRUE(backtrace != NULL);
831 ASSERT_TRUE(backtrace->Unwind(0));
832 delete backtrace;
833 }
834 size_t new_pss = GetPssBytes();
835 size_t abs_diff = (new_pss > stable_pss) ? new_pss - stable_pss : stable_pss - new_pss;
836 // As long as the new pss is within a certain amount, consider everything okay.
837 ASSERT_LE(abs_diff, MAX_LEAK_BYTES);
838}
839
840TEST(libbacktrace, check_for_leak_local) {
841 CheckForLeak(BACKTRACE_CURRENT_PROCESS, BACKTRACE_CURRENT_THREAD);
842}
843
844TEST(libbacktrace, check_for_leak_local_thread) {
845 thread_t thread_data = { 0, 0, 0 };
846 pthread_t thread;
847 ASSERT_TRUE(pthread_create(&thread, NULL, ThreadLevelRun, &thread_data) == 0);
848
849 // Wait up to 2 seconds for the tid to be set.
850 ASSERT_TRUE(WaitForNonZero(&thread_data.state, 2));
851
852 CheckForLeak(BACKTRACE_CURRENT_PROCESS, thread_data.tid);
853
854 // Tell the thread to exit its infinite loop.
855 android_atomic_acquire_store(0, &thread_data.state);
856
857 ASSERT_TRUE(pthread_join(thread, NULL) == 0);
858}
859
860TEST(libbacktrace, check_for_leak_remote) {
861 pid_t pid;
862
863 if ((pid = fork()) == 0) {
864 while (true) {
865 }
866 _exit(0);
867 }
868 ASSERT_LT(0, pid);
869
870 ASSERT_TRUE(ptrace(PTRACE_ATTACH, pid, 0, 0) == 0);
871
872 // Wait for the process to get to a stopping point.
873 WaitForStop(pid);
874
875 CheckForLeak(pid, BACKTRACE_CURRENT_THREAD);
876
877 ASSERT_TRUE(ptrace(PTRACE_DETACH, pid, 0, 0) == 0);
878
879 kill(pid, SIGKILL);
880 ASSERT_EQ(waitpid(pid, NULL, 0), pid);
881}
882#endif