1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2016 Google, Inc.
16 #include <sys/ptrace.h>
18 #include <sys/timerfd.h>
19 #include <sys/types.h>
22 #include "../kselftest.h"
30 if (sched_setaffinity(0, sizeof(set
), &set
) != 0) {
31 ksft_print_msg("sched_setaffinity() failed: %s\n",
36 if (ptrace(PTRACE_TRACEME
, 0, NULL
, NULL
) != 0) {
37 ksft_print_msg("ptrace(PTRACE_TRACEME) failed: %s\n",
42 if (raise(SIGSTOP
) != 0) {
43 ksft_print_msg("raise(SIGSTOP) failed: %s\n", strerror(errno
));
50 bool run_test(int cpu
)
57 ksft_print_msg("fork() failed: %s\n", strerror(errno
));
63 wpid
= waitpid(pid
, &status
, __WALL
);
65 ksft_print_msg("waitpid() failed: %s\n", strerror(errno
));
68 if (!WIFSTOPPED(status
)) {
69 ksft_print_msg("child did not stop: %s\n", strerror(errno
));
72 if (WSTOPSIG(status
) != SIGSTOP
) {
73 ksft_print_msg("child did not stop with SIGSTOP: %s\n",
78 if (ptrace(PTRACE_SINGLESTEP
, pid
, NULL
, NULL
) < 0) {
81 "ptrace(PTRACE_SINGLESTEP) not supported on this architecture: %s\n",
84 ksft_print_msg("ptrace(PTRACE_SINGLESTEP) failed: %s\n",
89 wpid
= waitpid(pid
, &status
, __WALL
);
91 ksft_print_msg("waitpid() failed: $s\n", strerror(errno
));
94 if (WIFEXITED(status
)) {
95 ksft_print_msg("child did not single-step: %s\n",
99 if (!WIFSTOPPED(status
)) {
100 ksft_print_msg("child did not stop: %s\n", strerror(errno
));
103 if (WSTOPSIG(status
) != SIGTRAP
) {
104 ksft_print_msg("child did not stop with SIGTRAP: %s\n",
109 if (ptrace(PTRACE_CONT
, pid
, NULL
, NULL
) < 0) {
110 ksft_print_msg("ptrace(PTRACE_CONT) failed: %s\n",
115 wpid
= waitpid(pid
, &status
, __WALL
);
117 ksft_print_msg("waitpid() failed: %s\n", strerror(errno
));
120 if (!WIFEXITED(status
)) {
121 ksft_print_msg("child did not exit after PTRACE_CONT: %s\n",
132 struct sigevent event
= {};
135 struct itimerspec spec
= {};
138 ksft_exit_skip("Please run the test as root - Exiting.\n");
140 power_state_fd
= open("/sys/power/state", O_RDWR
);
141 if (power_state_fd
< 0)
143 "open(\"/sys/power/state\") failed %s)\n",
146 timerfd
= timerfd_create(CLOCK_BOOTTIME_ALARM
, 0);
148 ksft_exit_fail_msg("timerfd_create() failed\n");
150 spec
.it_value
.tv_sec
= 5;
151 err
= timerfd_settime(timerfd
, 0, &spec
, NULL
);
153 ksft_exit_fail_msg("timerfd_settime() failed\n");
155 if (write(power_state_fd
, "mem", strlen("mem")) != strlen("mem"))
156 ksft_exit_fail_msg("Failed to enter Suspend state\n");
159 close(power_state_fd
);
162 int main(int argc
, char **argv
)
165 bool do_suspend
= true;
166 bool succeeded
= true;
167 unsigned int tests
= 0;
168 cpu_set_t available_cpus
;
174 while ((opt
= getopt(argc
, argv
, "n")) != -1) {
180 printf("Usage: %s [-n]\n", argv
[0]);
181 printf(" -n: do not trigger a suspend/resume cycle before the test\n");
186 for (cpu
= 0; cpu
< CPU_SETSIZE
; cpu
++) {
187 if (!CPU_ISSET(cpu
, &available_cpus
))
191 ksft_set_plan(tests
);
196 err
= sched_getaffinity(0, sizeof(available_cpus
), &available_cpus
);
198 ksft_exit_fail_msg("sched_getaffinity() failed\n");
200 for (cpu
= 0; cpu
< CPU_SETSIZE
; cpu
++) {
203 if (!CPU_ISSET(cpu
, &available_cpus
))
206 test_success
= run_test(cpu
);
208 ksft_test_result_pass("CPU %d\n", cpu
);
210 ksft_test_result_fail("CPU %d\n", cpu
);