blob: a079eaddf810b8dd4c9e6ac466023f0862400525 [file] [log] [blame]
Pavel Labath1faca6c2016-04-21 15:13:22 +01001/*
2 * Copyright (C) 2016 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 <sys/ptrace.h>
18
19#include <elf.h>
Josh Gaobc055ca2017-03-29 15:01:15 -070020#include <err.h>
Josh Gao5e3fe952017-02-16 14:12:41 -080021#include <fcntl.h>
Pavel Labath1faca6c2016-04-21 15:13:22 +010022#include <sched.h>
23#include <sys/prctl.h>
Josh Gao5e3fe952017-02-16 14:12:41 -080024#include <sys/ptrace.h>
Pavel Labath1faca6c2016-04-21 15:13:22 +010025#include <sys/uio.h>
26#include <sys/user.h>
Josh Gao5e3fe952017-02-16 14:12:41 -080027#include <sys/wait.h>
Pavel Labath1faca6c2016-04-21 15:13:22 +010028#include <unistd.h>
29
Josh Gaobc055ca2017-03-29 15:01:15 -070030#include <chrono>
31#include <thread>
32
Pavel Labath1faca6c2016-04-21 15:13:22 +010033#include <gtest/gtest.h>
34
Pavel Labath3dad8d52017-02-22 18:22:46 +000035#include <android-base/macros.h>
Josh Gao5e3fe952017-02-16 14:12:41 -080036#include <android-base/unique_fd.h>
37
Evgenii Stepanov7cc67062019-02-05 18:43:34 -080038#include "utils.h"
39
Josh Gaobc055ca2017-03-29 15:01:15 -070040using namespace std::chrono_literals;
41
Josh Gao5e3fe952017-02-16 14:12:41 -080042using android::base::unique_fd;
43
Pavel Labath1faca6c2016-04-21 15:13:22 +010044// Host libc does not define this.
45#ifndef TRAP_HWBKPT
46#define TRAP_HWBKPT 4
47#endif
48
Pavel Labath1faca6c2016-04-21 15:13:22 +010049class ChildGuard {
50 public:
Chih-Hung Hsieh62e3a072016-05-03 12:08:05 -070051 explicit ChildGuard(pid_t pid) : pid(pid) {}
Pavel Labath1faca6c2016-04-21 15:13:22 +010052
53 ~ChildGuard() {
54 kill(pid, SIGKILL);
55 int status;
Elliott Hughescabc77f2017-11-28 12:55:19 -080056 TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
Pavel Labath1faca6c2016-04-21 15:13:22 +010057 }
58
59 private:
60 pid_t pid;
61};
62
Pavel Labathfb082ee2017-01-23 15:41:35 +000063enum class HwFeature { Watchpoint, Breakpoint };
64
Elliott Hughesbcaa4542019-03-08 15:20:23 -080065static void check_hw_feature_supported(pid_t child, HwFeature feature) {
Pavel Labath1faca6c2016-04-21 15:13:22 +010066#if defined(__arm__)
67 long capabilities;
68 long result = ptrace(PTRACE_GETHBPREGS, child, 0, &capabilities);
69 if (result == -1) {
70 EXPECT_EQ(EIO, errno);
Elliott Hughesbcaa4542019-03-08 15:20:23 -080071 GTEST_SKIP() << "Hardware debug support disabled at kernel configuration time";
Pavel Labath1faca6c2016-04-21 15:13:22 +010072 }
Pavel Labath95d8fb12017-07-07 11:42:34 +010073 uint8_t hb_count = capabilities & 0xff;
74 capabilities >>= 8;
75 uint8_t wp_count = capabilities & 0xff;
76 capabilities >>= 8;
77 uint8_t max_wp_size = capabilities & 0xff;
78 if (max_wp_size == 0) {
Elliott Hughesbcaa4542019-03-08 15:20:23 -080079 GTEST_SKIP() << "Kernel reports zero maximum watchpoint size";
80 } else if (feature == HwFeature::Watchpoint && wp_count == 0) {
81 GTEST_SKIP() << "Kernel reports zero hardware watchpoints";
82 } else if (feature == HwFeature::Breakpoint && hb_count == 0) {
83 GTEST_SKIP() << "Kernel reports zero hardware breakpoints";
Pavel Labathfb082ee2017-01-23 15:41:35 +000084 }
Pavel Labath1faca6c2016-04-21 15:13:22 +010085#elif defined(__aarch64__)
86 user_hwdebug_state dreg_state;
87 iovec iov;
88 iov.iov_base = &dreg_state;
89 iov.iov_len = sizeof(dreg_state);
90
Pavel Labathfb082ee2017-01-23 15:41:35 +000091 long result = ptrace(PTRACE_GETREGSET, child,
92 feature == HwFeature::Watchpoint ? NT_ARM_HW_WATCH : NT_ARM_HW_BREAK, &iov);
Pavel Labath1faca6c2016-04-21 15:13:22 +010093 if (result == -1) {
Elliott Hughesbcaa4542019-03-08 15:20:23 -080094 ASSERT_EQ(EINVAL, errno);
Evgeny Eltsinbd1c6302019-12-11 15:30:16 +010095 GTEST_SKIP() << "Hardware support missing";
96 } else if ((dreg_state.dbg_info & 0xff) == 0) {
97 if (feature == HwFeature::Watchpoint) {
98 GTEST_SKIP() << "Kernel reports zero hardware watchpoints";
99 } else {
100 GTEST_SKIP() << "Kernel reports zero hardware breakpoints";
101 }
Pavel Labath1faca6c2016-04-21 15:13:22 +0100102 }
Elliott Hughesbcaa4542019-03-08 15:20:23 -0800103#else
Pavel Labathfb082ee2017-01-23 15:41:35 +0000104 // We assume watchpoints and breakpoints are always supported on x86.
Pavel Labath3dad8d52017-02-22 18:22:46 +0000105 UNUSED(child);
106 UNUSED(feature);
Pavel Labath1faca6c2016-04-21 15:13:22 +0100107#endif
108}
109
Pavel Labath3dad8d52017-02-22 18:22:46 +0000110static void set_watchpoint(pid_t child, uintptr_t address, size_t size) {
111 ASSERT_EQ(0u, address & 0x7) << "address: " << address;
Pavel Labath1faca6c2016-04-21 15:13:22 +0100112#if defined(__arm__) || defined(__aarch64__)
113 const unsigned byte_mask = (1 << size) - 1;
114 const unsigned type = 2; // Write.
115 const unsigned enable = 1;
116 const unsigned control = byte_mask << 5 | type << 3 | enable;
117
118#ifdef __arm__
119 ASSERT_EQ(0, ptrace(PTRACE_SETHBPREGS, child, -1, &address)) << strerror(errno);
120 ASSERT_EQ(0, ptrace(PTRACE_SETHBPREGS, child, -2, &control)) << strerror(errno);
121#else // aarch64
122 user_hwdebug_state dreg_state;
123 memset(&dreg_state, 0, sizeof dreg_state);
Pavel Labath3dad8d52017-02-22 18:22:46 +0000124 dreg_state.dbg_regs[0].addr = address;
Pavel Labath1faca6c2016-04-21 15:13:22 +0100125 dreg_state.dbg_regs[0].ctrl = control;
126
127 iovec iov;
128 iov.iov_base = &dreg_state;
129 iov.iov_len = offsetof(user_hwdebug_state, dbg_regs) + sizeof(dreg_state.dbg_regs[0]);
130
131 ASSERT_EQ(0, ptrace(PTRACE_SETREGSET, child, NT_ARM_HW_WATCH, &iov)) << strerror(errno);
132#endif
133#elif defined(__i386__) || defined(__x86_64__)
134 ASSERT_EQ(0, ptrace(PTRACE_POKEUSER, child, offsetof(user, u_debugreg[0]), address)) << strerror(errno);
135 errno = 0;
136 unsigned data = ptrace(PTRACE_PEEKUSER, child, offsetof(user, u_debugreg[7]), nullptr);
137 ASSERT_EQ(0, errno);
138
139 const unsigned size_flag = (size == 8) ? 2 : size - 1;
140 const unsigned enable = 1;
141 const unsigned type = 1; // Write.
142
143 const unsigned mask = 3 << 18 | 3 << 16 | 1;
144 const unsigned value = size_flag << 18 | type << 16 | enable;
145 data &= mask;
146 data |= value;
147 ASSERT_EQ(0, ptrace(PTRACE_POKEUSER, child, offsetof(user, u_debugreg[7]), data)) << strerror(errno);
148#else
Pavel Labath3dad8d52017-02-22 18:22:46 +0000149 UNUSED(child);
150 UNUSED(address);
151 UNUSED(size);
Pavel Labath1faca6c2016-04-21 15:13:22 +0100152#endif
153}
154
Pavel Labath3dad8d52017-02-22 18:22:46 +0000155template <typename T>
156static void run_watchpoint_test(std::function<void(T&)> child_func, size_t offset, size_t size) {
157 alignas(16) T data{};
Pavel Labath1faca6c2016-04-21 15:13:22 +0100158
159 pid_t child = fork();
160 ASSERT_NE(-1, child) << strerror(errno);
Pavel Labath3dad8d52017-02-22 18:22:46 +0000161 if (child == 0) {
162 // Extra precaution: make sure we go away if anything happens to our parent.
163 if (prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0) == -1) {
164 perror("prctl(PR_SET_PDEATHSIG)");
165 _exit(1);
166 }
167
168 if (ptrace(PTRACE_TRACEME, 0, nullptr, nullptr) == -1) {
169 perror("ptrace(PTRACE_TRACEME)");
170 _exit(2);
171 }
172
173 child_func(data);
174 _exit(0);
175 }
Pavel Labath1faca6c2016-04-21 15:13:22 +0100176
177 ChildGuard guard(child);
178
179 int status;
Elliott Hughescabc77f2017-11-28 12:55:19 -0800180 ASSERT_EQ(child, TEMP_FAILURE_RETRY(waitpid(child, &status, __WALL))) << strerror(errno);
Pavel Labath1faca6c2016-04-21 15:13:22 +0100181 ASSERT_TRUE(WIFSTOPPED(status)) << "Status was: " << status;
182 ASSERT_EQ(SIGSTOP, WSTOPSIG(status)) << "Status was: " << status;
183
Elliott Hughesbcaa4542019-03-08 15:20:23 -0800184 check_hw_feature_supported(child, HwFeature::Watchpoint);
Christopher Ferris103b9982019-09-23 09:03:10 -0700185 if (::testing::Test::IsSkipped()) {
186 return;
187 }
Pavel Labath1faca6c2016-04-21 15:13:22 +0100188
Evgenii Stepanov7cc67062019-02-05 18:43:34 -0800189 set_watchpoint(child, uintptr_t(untag_address(&data)) + offset, size);
Pavel Labath1faca6c2016-04-21 15:13:22 +0100190
191 ASSERT_EQ(0, ptrace(PTRACE_CONT, child, nullptr, nullptr)) << strerror(errno);
Elliott Hughescabc77f2017-11-28 12:55:19 -0800192 ASSERT_EQ(child, TEMP_FAILURE_RETRY(waitpid(child, &status, __WALL))) << strerror(errno);
Pavel Labath1faca6c2016-04-21 15:13:22 +0100193 ASSERT_TRUE(WIFSTOPPED(status)) << "Status was: " << status;
194 ASSERT_EQ(SIGTRAP, WSTOPSIG(status)) << "Status was: " << status;
195
196 siginfo_t siginfo;
197 ASSERT_EQ(0, ptrace(PTRACE_GETSIGINFO, child, nullptr, &siginfo)) << strerror(errno);
198 ASSERT_EQ(TRAP_HWBKPT, siginfo.si_code);
199#if defined(__arm__) || defined(__aarch64__)
Pavel Labath3dad8d52017-02-22 18:22:46 +0000200 ASSERT_LE(&data, siginfo.si_addr);
201 ASSERT_GT((&data) + 1, siginfo.si_addr);
Pavel Labath1faca6c2016-04-21 15:13:22 +0100202#endif
203}
204
Pavel Labath3dad8d52017-02-22 18:22:46 +0000205template <typename T>
206static void watchpoint_stress_child(unsigned cpu, T& data) {
207 cpu_set_t cpus;
208 CPU_ZERO(&cpus);
209 CPU_SET(cpu, &cpus);
210 if (sched_setaffinity(0, sizeof cpus, &cpus) == -1) {
211 perror("sched_setaffinity");
212 _exit(3);
213 }
214 raise(SIGSTOP); // Synchronize with the tracer, let it set the watchpoint.
215
216 data = 1; // Now trigger the watchpoint.
217}
218
219template <typename T>
220static void run_watchpoint_stress(size_t cpu) {
221 run_watchpoint_test<T>(std::bind(watchpoint_stress_child<T>, cpu, std::placeholders::_1), 0,
222 sizeof(T));
Pavel Labath1faca6c2016-04-21 15:13:22 +0100223}
224
225// Test watchpoint API. The test is considered successful if our watchpoints get hit OR the
226// system reports that watchpoint support is not present. We run the test for different
227// watchpoint sizes, while pinning the process to each cpu in turn, for better coverage.
Pavel Labathfb082ee2017-01-23 15:41:35 +0000228TEST(sys_ptrace, watchpoint_stress) {
Pavel Labath1faca6c2016-04-21 15:13:22 +0100229 cpu_set_t available_cpus;
230 ASSERT_EQ(0, sched_getaffinity(0, sizeof available_cpus, &available_cpus));
231
232 for (size_t cpu = 0; cpu < CPU_SETSIZE; ++cpu) {
233 if (!CPU_ISSET(cpu, &available_cpus)) continue;
Pavel Labath3dad8d52017-02-22 18:22:46 +0000234
235 run_watchpoint_stress<uint8_t>(cpu);
Christopher Ferris103b9982019-09-23 09:03:10 -0700236 if (::testing::Test::IsSkipped()) {
237 // Only check first case, since all others would skip for same reason.
238 return;
239 }
Pavel Labath3dad8d52017-02-22 18:22:46 +0000240 run_watchpoint_stress<uint16_t>(cpu);
241 run_watchpoint_stress<uint32_t>(cpu);
242#if defined(__LP64__)
243 run_watchpoint_stress<uint64_t>(cpu);
244#endif
Pavel Labath1faca6c2016-04-21 15:13:22 +0100245 }
246}
Pavel Labathfb082ee2017-01-23 15:41:35 +0000247
Pavel Labath3dad8d52017-02-22 18:22:46 +0000248struct Uint128_t {
249 uint64_t data[2];
250};
251static void watchpoint_imprecise_child(Uint128_t& data) {
252 raise(SIGSTOP); // Synchronize with the tracer, let it set the watchpoint.
253
254#if defined(__i386__) || defined(__x86_64__)
255 asm volatile("movdqa %%xmm0, %0" : : "m"(data));
256#elif defined(__arm__)
257 asm volatile("stm %0, { r0, r1, r2, r3 }" : : "r"(&data));
258#elif defined(__aarch64__)
259 asm volatile("stp x0, x1, %0" : : "m"(data));
Pavel Labath3dad8d52017-02-22 18:22:46 +0000260#endif
261}
262
263// Test that the kernel is able to handle the case when the instruction writes
264// to a larger block of memory than the one we are watching. If you see this
265// test fail on arm64, you will likely need to cherry-pick fdfeff0f into your
266// kernel.
267TEST(sys_ptrace, watchpoint_imprecise) {
Yabin Cui143b4542017-11-29 10:34:24 -0800268 // This test relies on the infrastructure to timeout if the test hangs.
Pavel Labath4a620262017-04-26 11:30:06 +0100269 run_watchpoint_test<Uint128_t>(watchpoint_imprecise_child, 8, sizeof(void*));
Pavel Labath3dad8d52017-02-22 18:22:46 +0000270}
271
Pavel Labathfb082ee2017-01-23 15:41:35 +0000272static void __attribute__((noinline)) breakpoint_func() {
273 asm volatile("");
274}
275
276static void __attribute__((noreturn)) breakpoint_fork_child() {
277 // Extra precaution: make sure we go away if anything happens to our parent.
278 if (prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0) == -1) {
279 perror("prctl(PR_SET_PDEATHSIG)");
280 _exit(1);
281 }
282
283 if (ptrace(PTRACE_TRACEME, 0, nullptr, nullptr) == -1) {
284 perror("ptrace(PTRACE_TRACEME)");
285 _exit(2);
286 }
287
288 raise(SIGSTOP); // Synchronize with the tracer, let it set the breakpoint.
289
290 breakpoint_func(); // Now trigger the breakpoint.
291
292 _exit(0);
293}
294
295static void set_breakpoint(pid_t child) {
296 uintptr_t address = uintptr_t(breakpoint_func);
297#if defined(__arm__) || defined(__aarch64__)
298 address &= ~3;
299 const unsigned byte_mask = 0xf;
300 const unsigned enable = 1;
301 const unsigned control = byte_mask << 5 | enable;
302
303#ifdef __arm__
304 ASSERT_EQ(0, ptrace(PTRACE_SETHBPREGS, child, 1, &address)) << strerror(errno);
305 ASSERT_EQ(0, ptrace(PTRACE_SETHBPREGS, child, 2, &control)) << strerror(errno);
306#else // aarch64
307 user_hwdebug_state dreg_state;
308 memset(&dreg_state, 0, sizeof dreg_state);
309 dreg_state.dbg_regs[0].addr = reinterpret_cast<uintptr_t>(address);
310 dreg_state.dbg_regs[0].ctrl = control;
311
312 iovec iov;
313 iov.iov_base = &dreg_state;
314 iov.iov_len = offsetof(user_hwdebug_state, dbg_regs) + sizeof(dreg_state.dbg_regs[0]);
315
316 ASSERT_EQ(0, ptrace(PTRACE_SETREGSET, child, NT_ARM_HW_BREAK, &iov)) << strerror(errno);
317#endif
318#elif defined(__i386__) || defined(__x86_64__)
319 ASSERT_EQ(0, ptrace(PTRACE_POKEUSER, child, offsetof(user, u_debugreg[0]), address))
320 << strerror(errno);
321 errno = 0;
322 unsigned data = ptrace(PTRACE_PEEKUSER, child, offsetof(user, u_debugreg[7]), nullptr);
323 ASSERT_EQ(0, errno);
324
325 const unsigned size = 0;
326 const unsigned enable = 1;
327 const unsigned type = 0; // Execute
328
329 const unsigned mask = 3 << 18 | 3 << 16 | 1;
330 const unsigned value = size << 18 | type << 16 | enable;
331 data &= mask;
332 data |= value;
333 ASSERT_EQ(0, ptrace(PTRACE_POKEUSER, child, offsetof(user, u_debugreg[7]), data))
334 << strerror(errno);
335#else
Pavel Labath3dad8d52017-02-22 18:22:46 +0000336 UNUSED(child);
337 UNUSED(address);
Pavel Labathfb082ee2017-01-23 15:41:35 +0000338#endif
339}
340
341// Test hardware breakpoint API. The test is considered successful if the breakpoints get hit OR the
342// system reports that hardware breakpoint support is not present.
343TEST(sys_ptrace, hardware_breakpoint) {
344 pid_t child = fork();
345 ASSERT_NE(-1, child) << strerror(errno);
346 if (child == 0) breakpoint_fork_child();
347
348 ChildGuard guard(child);
349
350 int status;
Elliott Hughescabc77f2017-11-28 12:55:19 -0800351 ASSERT_EQ(child, TEMP_FAILURE_RETRY(waitpid(child, &status, __WALL))) << strerror(errno);
Pavel Labathfb082ee2017-01-23 15:41:35 +0000352 ASSERT_TRUE(WIFSTOPPED(status)) << "Status was: " << status;
353 ASSERT_EQ(SIGSTOP, WSTOPSIG(status)) << "Status was: " << status;
354
Elliott Hughesbcaa4542019-03-08 15:20:23 -0800355 check_hw_feature_supported(child, HwFeature::Breakpoint);
Christopher Ferris103b9982019-09-23 09:03:10 -0700356 if (::testing::Test::IsSkipped()) {
357 return;
358 }
Pavel Labathfb082ee2017-01-23 15:41:35 +0000359
360 set_breakpoint(child);
361
362 ASSERT_EQ(0, ptrace(PTRACE_CONT, child, nullptr, nullptr)) << strerror(errno);
Elliott Hughescabc77f2017-11-28 12:55:19 -0800363 ASSERT_EQ(child, TEMP_FAILURE_RETRY(waitpid(child, &status, __WALL))) << strerror(errno);
Pavel Labathfb082ee2017-01-23 15:41:35 +0000364 ASSERT_TRUE(WIFSTOPPED(status)) << "Status was: " << status;
365 ASSERT_EQ(SIGTRAP, WSTOPSIG(status)) << "Status was: " << status;
366
367 siginfo_t siginfo;
368 ASSERT_EQ(0, ptrace(PTRACE_GETSIGINFO, child, nullptr, &siginfo)) << strerror(errno);
369 ASSERT_EQ(TRAP_HWBKPT, siginfo.si_code);
370}
Josh Gao5e3fe952017-02-16 14:12:41 -0800371
372class PtraceResumptionTest : public ::testing::Test {
373 public:
Josh Gaobc055ca2017-03-29 15:01:15 -0700374 unique_fd worker_pipe_write;
375
Josh Gao5e3fe952017-02-16 14:12:41 -0800376 pid_t worker = -1;
Josh Gaobc055ca2017-03-29 15:01:15 -0700377 pid_t tracer = -1;
378
Josh Gao5e3fe952017-02-16 14:12:41 -0800379 PtraceResumptionTest() {
Josh Gaobc055ca2017-03-29 15:01:15 -0700380 unique_fd worker_pipe_read;
Luis Hector Chavez7300d832018-04-04 10:13:25 -0700381 if (!android::base::Pipe(&worker_pipe_read, &worker_pipe_write)) {
Josh Gaobc055ca2017-03-29 15:01:15 -0700382 err(1, "failed to create pipe");
383 }
384
Luis Hector Chavez7300d832018-04-04 10:13:25 -0700385 // Second pipe to synchronize the Yama ptracer setup.
386 unique_fd worker_pipe_setup_read, worker_pipe_setup_write;
387 if (!android::base::Pipe(&worker_pipe_setup_read, &worker_pipe_setup_write)) {
388 err(1, "failed to create pipe");
389 }
Josh Gaobc055ca2017-03-29 15:01:15 -0700390
391 worker = fork();
392 if (worker == -1) {
393 err(1, "failed to fork worker");
394 } else if (worker == 0) {
395 char buf;
Luis Hector Chavez7300d832018-04-04 10:13:25 -0700396 // Allow the tracer process, which is not a direct process ancestor, to
397 // be able to use ptrace(2) on this process when Yama LSM is active.
398 if (prctl(PR_SET_PTRACER, PR_SET_PTRACER_ANY, 0, 0, 0) == -1) {
399 // if Yama is off prctl(PR_SET_PTRACER) returns EINVAL - don't log in this
400 // case since it's expected behaviour.
401 if (errno != EINVAL) {
402 err(1, "prctl(PR_SET_PTRACER, PR_SET_PTRACER_ANY) failed for pid %d", getpid());
403 }
404 }
405 worker_pipe_setup_write.reset();
406
Josh Gaobc055ca2017-03-29 15:01:15 -0700407 worker_pipe_write.reset();
408 TEMP_FAILURE_RETRY(read(worker_pipe_read.get(), &buf, sizeof(buf)));
409 exit(0);
Luis Hector Chavez7300d832018-04-04 10:13:25 -0700410 } else {
411 // Wait until the Yama ptracer is setup.
412 char buf;
413 worker_pipe_setup_write.reset();
414 TEMP_FAILURE_RETRY(read(worker_pipe_setup_read.get(), &buf, sizeof(buf)));
Josh Gaobc055ca2017-03-29 15:01:15 -0700415 }
Josh Gao5e3fe952017-02-16 14:12:41 -0800416 }
417
Yi Kong358603a2019-03-29 14:25:16 -0700418 ~PtraceResumptionTest() override {
Josh Gao5e3fe952017-02-16 14:12:41 -0800419 }
420
421 void AssertDeath(int signo);
Josh Gao5e3fe952017-02-16 14:12:41 -0800422
Josh Gaobc055ca2017-03-29 15:01:15 -0700423 void StartTracer(std::function<void()> f) {
424 tracer = fork();
Josh Gao5e3fe952017-02-16 14:12:41 -0800425 ASSERT_NE(-1, tracer);
426 if (tracer == 0) {
427 f();
428 if (HasFatalFailure()) {
429 exit(1);
430 }
431 exit(0);
432 }
Josh Gaobc055ca2017-03-29 15:01:15 -0700433 }
434
435 bool WaitForTracer() {
436 if (tracer == -1) {
437 errx(1, "tracer not started");
438 }
Josh Gao5e3fe952017-02-16 14:12:41 -0800439
440 int result;
Elliott Hughescabc77f2017-11-28 12:55:19 -0800441 pid_t rc = TEMP_FAILURE_RETRY(waitpid(tracer, &result, 0));
Josh Gaobc055ca2017-03-29 15:01:15 -0700442 if (rc != tracer) {
443 printf("waitpid returned %d (%s)\n", rc, strerror(errno));
444 return false;
445 }
446
447 if (!WIFEXITED(result) && !WIFSIGNALED(result)) {
448 printf("!WIFEXITED && !WIFSIGNALED\n");
449 return false;
450 }
451
Josh Gao5e3fe952017-02-16 14:12:41 -0800452 if (WIFEXITED(result)) {
453 if (WEXITSTATUS(result) != 0) {
Josh Gaobc055ca2017-03-29 15:01:15 -0700454 printf("tracer failed\n");
455 return false;
Josh Gao5e3fe952017-02-16 14:12:41 -0800456 }
457 }
458
Josh Gaobc055ca2017-03-29 15:01:15 -0700459 return true;
460 }
461
462 bool WaitForWorker() {
463 if (worker == -1) {
464 errx(1, "worker not started");
465 }
466
467 int result;
Elliott Hughescabc77f2017-11-28 12:55:19 -0800468 pid_t rc = TEMP_FAILURE_RETRY(waitpid(worker, &result, WNOHANG));
Josh Gaobc055ca2017-03-29 15:01:15 -0700469 if (rc != 0) {
470 printf("worker exited prematurely\n");
471 return false;
472 }
Josh Gao5e3fe952017-02-16 14:12:41 -0800473
474 worker_pipe_write.reset();
475
Elliott Hughescabc77f2017-11-28 12:55:19 -0800476 rc = TEMP_FAILURE_RETRY(waitpid(worker, &result, 0));
Josh Gaobc055ca2017-03-29 15:01:15 -0700477 if (rc != worker) {
478 printf("waitpid for worker returned %d (%s)\n", rc, strerror(errno));
479 return false;
480 }
481
482 if (!WIFEXITED(result)) {
483 printf("worker didn't exit\n");
484 return false;
485 }
486
487 if (WEXITSTATUS(result) != 0) {
488 printf("worker exited with status %d\n", WEXITSTATUS(result));
489 return false;
490 }
491
492 return true;
Josh Gao5e3fe952017-02-16 14:12:41 -0800493 }
494};
495
496static void wait_for_ptrace_stop(pid_t pid) {
497 while (true) {
498 int status;
499 pid_t rc = TEMP_FAILURE_RETRY(waitpid(pid, &status, __WALL));
500 if (rc != pid) {
501 abort();
502 }
503 if (WIFSTOPPED(status)) {
504 return;
505 }
506 }
507}
508
Josh Gaobc055ca2017-03-29 15:01:15 -0700509TEST_F(PtraceResumptionTest, smoke) {
510 // Make sure that the worker doesn't exit before the tracer stops tracing.
511 StartTracer([this]() {
512 ASSERT_EQ(0, ptrace(PTRACE_SEIZE, worker, 0, 0)) << strerror(errno);
513 ASSERT_EQ(0, ptrace(PTRACE_INTERRUPT, worker, 0, 0)) << strerror(errno);
514 wait_for_ptrace_stop(worker);
515 std::this_thread::sleep_for(500ms);
516 });
517
518 worker_pipe_write.reset();
519 std::this_thread::sleep_for(250ms);
520
521 int result;
Elliott Hughescabc77f2017-11-28 12:55:19 -0800522 ASSERT_EQ(0, TEMP_FAILURE_RETRY(waitpid(worker, &result, WNOHANG)));
Josh Gaobc055ca2017-03-29 15:01:15 -0700523 ASSERT_TRUE(WaitForTracer());
Elliott Hughescabc77f2017-11-28 12:55:19 -0800524 ASSERT_EQ(worker, TEMP_FAILURE_RETRY(waitpid(worker, &result, 0)));
Josh Gaobc055ca2017-03-29 15:01:15 -0700525}
526
Josh Gao5e3fe952017-02-16 14:12:41 -0800527TEST_F(PtraceResumptionTest, seize) {
Josh Gaobc055ca2017-03-29 15:01:15 -0700528 StartTracer([this]() { ASSERT_EQ(0, ptrace(PTRACE_SEIZE, worker, 0, 0)) << strerror(errno); });
529 ASSERT_TRUE(WaitForTracer());
530 ASSERT_TRUE(WaitForWorker());
Josh Gao5e3fe952017-02-16 14:12:41 -0800531}
532
533TEST_F(PtraceResumptionTest, seize_interrupt) {
Josh Gaobc055ca2017-03-29 15:01:15 -0700534 StartTracer([this]() {
Josh Gao5e3fe952017-02-16 14:12:41 -0800535 ASSERT_EQ(0, ptrace(PTRACE_SEIZE, worker, 0, 0)) << strerror(errno);
536 ASSERT_EQ(0, ptrace(PTRACE_INTERRUPT, worker, 0, 0)) << strerror(errno);
Josh Gaobc055ca2017-03-29 15:01:15 -0700537 wait_for_ptrace_stop(worker);
Josh Gao5e3fe952017-02-16 14:12:41 -0800538 });
Josh Gaobc055ca2017-03-29 15:01:15 -0700539 ASSERT_TRUE(WaitForTracer());
540 ASSERT_TRUE(WaitForWorker());
Josh Gao5e3fe952017-02-16 14:12:41 -0800541}
542
543TEST_F(PtraceResumptionTest, seize_interrupt_cont) {
Josh Gaobc055ca2017-03-29 15:01:15 -0700544 StartTracer([this]() {
Josh Gao5e3fe952017-02-16 14:12:41 -0800545 ASSERT_EQ(0, ptrace(PTRACE_SEIZE, worker, 0, 0)) << strerror(errno);
546 ASSERT_EQ(0, ptrace(PTRACE_INTERRUPT, worker, 0, 0)) << strerror(errno);
547 wait_for_ptrace_stop(worker);
548 ASSERT_EQ(0, ptrace(PTRACE_CONT, worker, 0, 0)) << strerror(errno);
549 });
Josh Gaobc055ca2017-03-29 15:01:15 -0700550 ASSERT_TRUE(WaitForTracer());
551 ASSERT_TRUE(WaitForWorker());
552}
553
554TEST_F(PtraceResumptionTest, zombie_seize) {
555 StartTracer([this]() { ASSERT_EQ(0, ptrace(PTRACE_SEIZE, worker, 0, 0)) << strerror(errno); });
556 ASSERT_TRUE(WaitForWorker());
557 ASSERT_TRUE(WaitForTracer());
558}
559
560TEST_F(PtraceResumptionTest, zombie_seize_interrupt) {
561 StartTracer([this]() {
562 ASSERT_EQ(0, ptrace(PTRACE_SEIZE, worker, 0, 0)) << strerror(errno);
563 ASSERT_EQ(0, ptrace(PTRACE_INTERRUPT, worker, 0, 0)) << strerror(errno);
564 wait_for_ptrace_stop(worker);
565 });
566 ASSERT_TRUE(WaitForWorker());
567 ASSERT_TRUE(WaitForTracer());
568}
569
570TEST_F(PtraceResumptionTest, zombie_seize_interrupt_cont) {
571 StartTracer([this]() {
572 ASSERT_EQ(0, ptrace(PTRACE_SEIZE, worker, 0, 0)) << strerror(errno);
573 ASSERT_EQ(0, ptrace(PTRACE_INTERRUPT, worker, 0, 0)) << strerror(errno);
574 wait_for_ptrace_stop(worker);
575 ASSERT_EQ(0, ptrace(PTRACE_CONT, worker, 0, 0)) << strerror(errno);
576 });
577 ASSERT_TRUE(WaitForWorker());
578 ASSERT_TRUE(WaitForTracer());
Josh Gao5e3fe952017-02-16 14:12:41 -0800579}