if (pid == 0) { /* install signal handler and notify parent */ if (remote) {
sa.sa_sigaction = sigusr1_siginfo_handler;
sa.sa_flags = SA_RESTART | SA_SIGINFO;
ASSERT_NEQ(sigaction(SIGUSR1, &sa, NULL), -1, "sigaction");
} else {
ASSERT_NEQ(signal(SIGUSR1, sigusr1_handler), SIG_ERR, "signal");
}
close(pipe_c2p[0]); /* close read */
close(pipe_p2c[1]); /* close write */
/* boost with a high priority so we got a higher chance * that if an interrupt happens, the underlying task * is this process.
*/ if (!remote) {
errno = 0;
old_prio = getpriority(PRIO_PROCESS, 0);
ASSERT_OK(errno, "getpriority");
ASSERT_OK(setpriority(PRIO_PROCESS, 0, -20), "setpriority");
}
/* notify parent signal handler is installed */
ASSERT_EQ(write(pipe_c2p[1], buf, 1), 1, "pipe_write");
/* make sure parent enabled bpf program to send_signal */
ASSERT_EQ(read(pipe_p2c[0], buf, 1), 1, "pipe_read");
/* wait a little for signal handler */ for (int i = 0; i < 1000000000 && !sigusr1_received; i++) {
j /= i + j + 1; if (remote)
sleep(1); else if (!attr) /* trigger the nanosleep tracepoint program. */
usleep(1);
}
close(pipe_c2p[1]); /* close write */
close(pipe_p2c[0]); /* close read */
skel = test_send_signal_kern__open_and_load(); if (!ASSERT_OK_PTR(skel, "skel_open_and_load")) goto skel_open_load_failure;
/* boost with a high priority so we got a higher chance * that if an interrupt happens, the underlying task * is this process.
*/ if (remote) {
errno = 0;
old_prio = getpriority(PRIO_PROCESS, 0);
ASSERT_OK(errno, "getpriority");
ASSERT_OK(setpriority(PRIO_PROCESS, 0, -20), "setpriority");
}
if (!attr) {
err = test_send_signal_kern__attach(skel); if (!ASSERT_OK(err, "skel_attach")) {
err = -1; goto destroy_skel;
}
} else { if (!remote)
pmu_fd = syscall(__NR_perf_event_open, attr, pid, -1 /* cpu */,
-1 /* group id */, 0 /* flags */); else
pmu_fd = syscall(__NR_perf_event_open, attr, getpid(), -1 /* cpu */,
-1 /* group id */, 0 /* flags */); if (!ASSERT_GE(pmu_fd, 0, "perf_event_open")) {
err = -1; goto destroy_skel;
}
skel->links.send_signal_perf =
bpf_program__attach_perf_event(skel->progs.send_signal_perf, pmu_fd); if (!ASSERT_OK_PTR(skel->links.send_signal_perf, "attach_perf_event")) goto disable_pmu;
}
/* wait until child signal handler installed */
ASSERT_EQ(read(pipe_c2p[0], buf, 1), 1, "pipe_read");
/* notify child that bpf program can send_signal now */
ASSERT_EQ(write(pipe_p2c[1], buf, 1), 1, "pipe_write");
for (retry_count = 0;;) { /* For the remote test, the BPF program is triggered from this * process but the other process/thread is signaled.
*/ if (remote) { if (!attr) { for (int i = 0; i < 10; i++)
usleep(1);
} else { for (int i = 0; i < 100000000; i++)
j /= i + 1;
}
} /* wait for result */
err = read_with_timeout(pipe_c2p[0], buf, 1, 100); if (err == -EAGAIN && retry_count++ < 10000) continue; break;
} if (!ASSERT_GE(err, 0, "reading pipe")) goto disable_pmu; if (!ASSERT_GT(err, 0, "reading pipe error: size 0")) {
err = -1; goto disable_pmu;
}
/* Some setups (e.g. virtual machines) might run with hardware * perf events disabled. If this is the case, skip this test.
*/
pmu_fd = syscall(__NR_perf_event_open, &attr, 0 /* pid */,
-1 /* cpu */, -1 /* group_fd */, 0 /* flags */); if (pmu_fd == -1) { if (errno == ENOENT || errno == EOPNOTSUPP) {
printf("%s:SKIP:no PERF_COUNT_HW_CPU_CYCLES\n",
__func__);
test__skip(); return;
} /* Let the test fail with a more informative message */
} else {
close(pmu_fd);
}
void test_send_signal(void)
{ if (test__start_subtest("send_signal_tracepoint"))
test_send_signal_tracepoint(false, false); if (test__start_subtest("send_signal_perf"))
test_send_signal_perf(false, false); if (test__start_subtest("send_signal_nmi"))
test_send_signal_nmi(false, false); if (test__start_subtest("send_signal_tracepoint_thread"))
test_send_signal_tracepoint(true, false); if (test__start_subtest("send_signal_perf_thread"))
test_send_signal_perf(true, false); if (test__start_subtest("send_signal_nmi_thread"))
test_send_signal_nmi(true, false);
/* Signal remote thread and thread group */ if (test__start_subtest("send_signal_tracepoint_remote"))
test_send_signal_tracepoint(false, true); if (test__start_subtest("send_signal_perf_remote"))
test_send_signal_perf(false, true); if (test__start_subtest("send_signal_nmi_remote"))
test_send_signal_nmi(false, true); if (test__start_subtest("send_signal_tracepoint_thread_remote"))
test_send_signal_tracepoint(true, true); if (test__start_subtest("send_signal_perf_thread_remote"))
test_send_signal_perf(true, true); if (test__start_subtest("send_signal_nmi_thread_remote"))
test_send_signal_nmi(true, true);
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.