2012-12-01 01:40:55 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2016-03-09 00:27:15 +01:00
|
|
|
#include <errno.h>
|
2014-09-04 22:54:42 +02:00
|
|
|
#include <signal.h>
|
2021-08-17 00:51:59 +02:00
|
|
|
#include <sys/cdefs.h>
|
2016-03-09 00:27:15 +01:00
|
|
|
#include <sys/syscall.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
2012-12-01 01:40:55 +01:00
|
|
|
|
2019-10-28 23:59:38 +01:00
|
|
|
#include <chrono>
|
2018-01-31 00:09:51 +01:00
|
|
|
#include <thread>
|
|
|
|
|
2018-10-09 02:28:07 +02:00
|
|
|
#include <android-base/macros.h>
|
2019-12-17 14:17:07 +01:00
|
|
|
#include <android-base/threads.h>
|
|
|
|
|
2014-09-04 22:54:42 +02:00
|
|
|
#include <gtest/gtest.h>
|
2012-12-01 01:40:55 +01:00
|
|
|
|
2018-02-07 21:44:45 +01:00
|
|
|
#include "SignalUtils.h"
|
2019-12-17 14:17:07 +01:00
|
|
|
#include "utils.h"
|
2013-10-28 23:24:04 +01:00
|
|
|
|
2019-10-28 23:59:38 +01:00
|
|
|
using namespace std::chrono_literals;
|
|
|
|
|
2022-10-20 00:03:59 +02:00
|
|
|
#if defined(ANDROID_HOST_MUSL)
|
|
|
|
// Musl doesn't export __SIGRTMIN and __SIGRTMAX, #define
|
|
|
|
// them here.
|
|
|
|
#define __SIGRTMIN 32
|
|
|
|
#define __SIGRTMAX 64
|
|
|
|
#endif
|
|
|
|
|
2018-01-31 00:09:51 +01:00
|
|
|
static int SIGNAL_MIN() {
|
2013-10-16 21:53:58 +02:00
|
|
|
return 1; // Signals start at 1 (SIGHUP), not 0.
|
|
|
|
}
|
|
|
|
|
2018-01-31 00:09:51 +01:00
|
|
|
template <typename SigSetT>
|
|
|
|
static int SIGNAL_MAX(SigSetT* set) {
|
|
|
|
return sizeof(*set) * 8;
|
2013-10-16 21:53:58 +02:00
|
|
|
}
|
|
|
|
|
2018-01-31 00:09:51 +01:00
|
|
|
template <typename SigSetT>
|
|
|
|
static void TestSigSet1(int (fn)(SigSetT*)) {
|
2018-08-03 02:31:13 +02:00
|
|
|
// nullptr sigset_t*/sigset64_t*.
|
|
|
|
SigSetT* set_ptr = nullptr;
|
2012-12-01 01:40:55 +01:00
|
|
|
errno = 0;
|
|
|
|
ASSERT_EQ(-1, fn(set_ptr));
|
2023-09-21 23:11:19 +02:00
|
|
|
ASSERT_ERRNO(EINVAL);
|
2012-12-01 01:40:55 +01:00
|
|
|
|
2018-08-03 02:31:13 +02:00
|
|
|
// Non-nullptr.
|
2018-01-31 00:09:51 +01:00
|
|
|
SigSetT set = {};
|
2012-12-01 01:40:55 +01:00
|
|
|
errno = 0;
|
|
|
|
ASSERT_EQ(0, fn(&set));
|
2023-09-21 23:11:19 +02:00
|
|
|
ASSERT_ERRNO(0);
|
2012-12-01 01:40:55 +01:00
|
|
|
}
|
|
|
|
|
2018-01-31 00:09:51 +01:00
|
|
|
template <typename SigSetT>
|
|
|
|
static void TestSigSet2(int (fn)(SigSetT*, int)) {
|
2018-08-03 02:31:13 +02:00
|
|
|
// nullptr sigset_t*/sigset64_t*.
|
|
|
|
SigSetT* set_ptr = nullptr;
|
2012-12-01 01:40:55 +01:00
|
|
|
errno = 0;
|
|
|
|
ASSERT_EQ(-1, fn(set_ptr, SIGSEGV));
|
2023-09-21 23:11:19 +02:00
|
|
|
ASSERT_ERRNO(EINVAL);
|
2012-12-01 01:40:55 +01:00
|
|
|
|
2018-01-31 00:09:51 +01:00
|
|
|
SigSetT set = {};
|
2012-12-01 01:40:55 +01:00
|
|
|
|
|
|
|
// Bad signal number: too small.
|
|
|
|
errno = 0;
|
|
|
|
ASSERT_EQ(-1, fn(&set, 0));
|
2023-09-21 23:11:19 +02:00
|
|
|
ASSERT_ERRNO(EINVAL);
|
2012-12-01 01:40:55 +01:00
|
|
|
|
|
|
|
// Bad signal number: too high.
|
|
|
|
errno = 0;
|
2018-01-31 00:09:51 +01:00
|
|
|
ASSERT_EQ(-1, fn(&set, SIGNAL_MAX(&set) + 1));
|
2023-09-21 23:11:19 +02:00
|
|
|
ASSERT_ERRNO(EINVAL);
|
2012-12-01 01:40:55 +01:00
|
|
|
|
|
|
|
// Good signal numbers, low and high ends of range.
|
|
|
|
errno = 0;
|
2013-10-16 21:53:58 +02:00
|
|
|
ASSERT_EQ(0, fn(&set, SIGNAL_MIN()));
|
2023-09-21 23:11:19 +02:00
|
|
|
ASSERT_ERRNO(0);
|
2018-01-31 00:09:51 +01:00
|
|
|
ASSERT_EQ(0, fn(&set, SIGNAL_MAX(&set)));
|
2023-09-21 23:11:19 +02:00
|
|
|
ASSERT_ERRNO(0);
|
2012-12-01 01:40:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(signal, sigaddset_invalid) {
|
|
|
|
TestSigSet2(sigaddset);
|
|
|
|
}
|
|
|
|
|
2018-01-31 00:09:51 +01:00
|
|
|
TEST(signal, sigaddset64_invalid) {
|
|
|
|
#if defined(__BIONIC__)
|
|
|
|
TestSigSet2(sigaddset64);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2012-12-01 01:40:55 +01:00
|
|
|
TEST(signal, sigdelset_invalid) {
|
|
|
|
TestSigSet2(sigdelset);
|
|
|
|
}
|
|
|
|
|
2018-01-31 00:09:51 +01:00
|
|
|
TEST(signal, sigdelset64_invalid) {
|
|
|
|
#if defined(__BIONIC__)
|
|
|
|
TestSigSet2(sigdelset64);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2012-12-01 01:40:55 +01:00
|
|
|
TEST(signal, sigemptyset_invalid) {
|
|
|
|
TestSigSet1(sigemptyset);
|
|
|
|
}
|
|
|
|
|
2018-01-31 00:09:51 +01:00
|
|
|
TEST(signal, sigemptyset64_invalid) {
|
|
|
|
#if defined(__BIONIC__)
|
|
|
|
TestSigSet1(sigemptyset64);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2012-12-01 01:40:55 +01:00
|
|
|
TEST(signal, sigfillset_invalid) {
|
|
|
|
TestSigSet1(sigfillset);
|
|
|
|
}
|
2012-12-08 03:41:10 +01:00
|
|
|
|
2018-01-31 00:09:51 +01:00
|
|
|
TEST(signal, sigfillset64_invalid) {
|
|
|
|
#if defined(__BIONIC__)
|
|
|
|
TestSigSet1(sigfillset64);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(signal, sigismember_invalid) {
|
|
|
|
TestSigSet2(sigismember);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(signal, sigismember64_invalid) {
|
|
|
|
#if defined(__BIONIC__)
|
|
|
|
TestSigSet2(sigismember64);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2012-12-08 03:41:10 +01:00
|
|
|
TEST(signal, raise_invalid) {
|
|
|
|
errno = 0;
|
|
|
|
ASSERT_EQ(-1, raise(-1));
|
2023-09-21 23:11:19 +02:00
|
|
|
ASSERT_ERRNO(EINVAL);
|
2012-12-08 03:41:10 +01:00
|
|
|
}
|
2013-01-10 23:42:14 +01:00
|
|
|
|
2013-02-21 20:22:23 +01:00
|
|
|
static void raise_in_signal_handler_helper(int signal_number) {
|
|
|
|
ASSERT_EQ(SIGALRM, signal_number);
|
|
|
|
static int count = 0;
|
|
|
|
if (++count == 1) {
|
|
|
|
raise(SIGALRM);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(signal, raise_in_signal_handler) {
|
|
|
|
ScopedSignalHandler ssh(SIGALRM, raise_in_signal_handler_helper);
|
|
|
|
raise(SIGALRM);
|
|
|
|
}
|
|
|
|
|
2018-01-31 00:09:51 +01:00
|
|
|
static int g_sigsuspend_signal_handler_call_count = 0;
|
|
|
|
|
2013-10-16 21:53:58 +02:00
|
|
|
TEST(signal, sigsuspend_sigpending) {
|
2018-01-31 00:09:51 +01:00
|
|
|
SignalMaskRestorer smr;
|
|
|
|
|
2013-10-16 03:01:56 +02:00
|
|
|
// Block SIGALRM.
|
|
|
|
sigset_t just_SIGALRM;
|
|
|
|
sigemptyset(&just_SIGALRM);
|
|
|
|
sigaddset(&just_SIGALRM, SIGALRM);
|
2018-01-31 00:09:51 +01:00
|
|
|
ASSERT_EQ(0, sigprocmask(SIG_BLOCK, &just_SIGALRM, nullptr));
|
2013-10-16 03:01:56 +02:00
|
|
|
|
2018-01-31 00:09:51 +01:00
|
|
|
ScopedSignalHandler ssh(SIGALRM, [](int) { ++g_sigsuspend_signal_handler_call_count; });
|
2013-10-25 00:15:14 +02:00
|
|
|
|
2013-10-16 21:53:58 +02:00
|
|
|
// There should be no pending signals.
|
|
|
|
sigset_t pending;
|
|
|
|
sigemptyset(&pending);
|
|
|
|
ASSERT_EQ(0, sigpending(&pending));
|
2018-01-31 00:09:51 +01:00
|
|
|
for (int i = SIGNAL_MIN(); i <= SIGNAL_MAX(&pending); ++i) {
|
2013-10-16 21:53:58 +02:00
|
|
|
EXPECT_FALSE(sigismember(&pending, i)) << i;
|
|
|
|
}
|
|
|
|
|
2013-10-16 03:01:56 +02:00
|
|
|
// Raise SIGALRM and check our signal handler wasn't called.
|
|
|
|
raise(SIGALRM);
|
2018-01-31 00:09:51 +01:00
|
|
|
ASSERT_EQ(0, g_sigsuspend_signal_handler_call_count);
|
2013-10-16 03:01:56 +02:00
|
|
|
|
2013-10-16 21:53:58 +02:00
|
|
|
// We should now have a pending SIGALRM but nothing else.
|
|
|
|
sigemptyset(&pending);
|
|
|
|
ASSERT_EQ(0, sigpending(&pending));
|
2018-01-31 00:09:51 +01:00
|
|
|
for (int i = SIGNAL_MIN(); i <= SIGNAL_MAX(&pending); ++i) {
|
2013-10-16 21:53:58 +02:00
|
|
|
EXPECT_EQ((i == SIGALRM), sigismember(&pending, i));
|
|
|
|
}
|
|
|
|
|
2013-10-16 03:01:56 +02:00
|
|
|
// Use sigsuspend to block everything except SIGALRM...
|
|
|
|
sigset_t not_SIGALRM;
|
|
|
|
sigfillset(¬_SIGALRM);
|
|
|
|
sigdelset(¬_SIGALRM, SIGALRM);
|
|
|
|
ASSERT_EQ(-1, sigsuspend(¬_SIGALRM));
|
2023-09-21 23:11:19 +02:00
|
|
|
ASSERT_ERRNO(EINTR);
|
2013-10-16 03:01:56 +02:00
|
|
|
// ...and check that we now receive our pending SIGALRM.
|
2018-01-31 00:09:51 +01:00
|
|
|
ASSERT_EQ(1, g_sigsuspend_signal_handler_call_count);
|
|
|
|
}
|
2013-10-16 03:01:56 +02:00
|
|
|
|
2018-01-31 00:09:51 +01:00
|
|
|
static int g_sigsuspend64_signal_handler_call_count = 0;
|
|
|
|
|
|
|
|
TEST(signal, sigsuspend64_sigpending64) {
|
|
|
|
SignalMaskRestorer smr;
|
|
|
|
|
|
|
|
// Block SIGRTMIN.
|
|
|
|
sigset64_t just_SIGRTMIN;
|
|
|
|
sigemptyset64(&just_SIGRTMIN);
|
|
|
|
sigaddset64(&just_SIGRTMIN, SIGRTMIN);
|
|
|
|
ASSERT_EQ(0, sigprocmask64(SIG_BLOCK, &just_SIGRTMIN, nullptr));
|
|
|
|
|
|
|
|
ScopedSignalHandler ssh(SIGRTMIN, [](int) { ++g_sigsuspend64_signal_handler_call_count; });
|
|
|
|
|
|
|
|
// There should be no pending signals.
|
|
|
|
sigset64_t pending;
|
|
|
|
sigemptyset64(&pending);
|
|
|
|
ASSERT_EQ(0, sigpending64(&pending));
|
|
|
|
for (int i = SIGNAL_MIN(); i <= SIGNAL_MAX(&pending); ++i) {
|
|
|
|
EXPECT_FALSE(sigismember64(&pending, i)) << i;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Raise SIGRTMIN and check our signal handler wasn't called.
|
|
|
|
raise(SIGRTMIN);
|
|
|
|
ASSERT_EQ(0, g_sigsuspend64_signal_handler_call_count);
|
|
|
|
|
|
|
|
// We should now have a pending SIGRTMIN but nothing else.
|
|
|
|
sigemptyset64(&pending);
|
|
|
|
ASSERT_EQ(0, sigpending64(&pending));
|
|
|
|
for (int i = SIGNAL_MIN(); i <= SIGNAL_MAX(&pending); ++i) {
|
|
|
|
EXPECT_EQ((i == SIGRTMIN), sigismember64(&pending, i));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Use sigsuspend64 to block everything except SIGRTMIN...
|
|
|
|
sigset64_t not_SIGRTMIN;
|
|
|
|
sigfillset64(¬_SIGRTMIN);
|
|
|
|
sigdelset64(¬_SIGRTMIN, SIGRTMIN);
|
|
|
|
ASSERT_EQ(-1, sigsuspend64(¬_SIGRTMIN));
|
2023-09-21 23:11:19 +02:00
|
|
|
ASSERT_ERRNO(EINTR);
|
2018-01-31 00:09:51 +01:00
|
|
|
// ...and check that we now receive our pending SIGRTMIN.
|
|
|
|
ASSERT_EQ(1, g_sigsuspend64_signal_handler_call_count);
|
2013-10-16 03:01:56 +02:00
|
|
|
}
|
2013-10-17 07:27:54 +02:00
|
|
|
|
2018-02-01 23:21:51 +01:00
|
|
|
template <typename SigActionT, typename SigSetT>
|
|
|
|
static void TestSigAction(int (sigaction_fn)(int, const SigActionT*, SigActionT*),
|
|
|
|
int (sigaddset_fn)(SigSetT*, int),
|
|
|
|
int sig) {
|
2014-09-04 22:54:42 +02:00
|
|
|
// Both bionic and glibc set SA_RESTORER when talking to the kernel on arm,
|
|
|
|
// arm64, x86, and x86-64. The version of glibc we're using also doesn't
|
2020-02-13 18:48:14 +01:00
|
|
|
// define SA_RESTORER, but luckily it's the same value everywhere.
|
2014-09-05 00:43:10 +02:00
|
|
|
static const unsigned sa_restorer = 0x4000000;
|
2014-09-04 22:54:42 +02:00
|
|
|
|
2018-02-01 23:21:51 +01:00
|
|
|
// See what's currently set for this signal.
|
|
|
|
SigActionT original_sa = {};
|
2018-08-03 02:31:13 +02:00
|
|
|
ASSERT_EQ(0, sigaction_fn(sig, nullptr, &original_sa));
|
|
|
|
ASSERT_TRUE(original_sa.sa_handler == nullptr);
|
|
|
|
ASSERT_TRUE(original_sa.sa_sigaction == nullptr);
|
2014-09-05 00:43:10 +02:00
|
|
|
ASSERT_EQ(0U, original_sa.sa_flags & ~sa_restorer);
|
2018-02-12 09:03:10 +01:00
|
|
|
#ifdef SA_RESTORER
|
2018-02-05 13:33:35 +01:00
|
|
|
ASSERT_EQ(bool(original_sa.sa_flags & sa_restorer), bool(original_sa.sa_restorer));
|
2018-02-12 09:03:10 +01:00
|
|
|
#endif
|
2013-10-17 07:27:54 +02:00
|
|
|
|
|
|
|
// Set a traditional sa_handler signal handler.
|
2018-02-01 23:21:51 +01:00
|
|
|
auto no_op_signal_handler = [](int) {};
|
|
|
|
SigActionT sa = {};
|
|
|
|
sigaddset_fn(&sa.sa_mask, sig);
|
2013-10-17 07:27:54 +02:00
|
|
|
sa.sa_flags = SA_ONSTACK;
|
2018-02-01 23:21:51 +01:00
|
|
|
sa.sa_handler = no_op_signal_handler;
|
2018-08-03 02:31:13 +02:00
|
|
|
ASSERT_EQ(0, sigaction_fn(sig, &sa, nullptr));
|
2013-10-17 07:27:54 +02:00
|
|
|
|
|
|
|
// Check that we can read it back.
|
2018-02-01 23:21:51 +01:00
|
|
|
sa = {};
|
2018-08-03 02:31:13 +02:00
|
|
|
ASSERT_EQ(0, sigaction_fn(sig, nullptr, &sa));
|
2018-02-01 23:21:51 +01:00
|
|
|
ASSERT_TRUE(sa.sa_handler == no_op_signal_handler);
|
2013-10-17 07:27:54 +02:00
|
|
|
ASSERT_TRUE((void*) sa.sa_sigaction == (void*) sa.sa_handler);
|
2014-09-05 00:43:10 +02:00
|
|
|
ASSERT_EQ(static_cast<unsigned>(SA_ONSTACK), sa.sa_flags & ~sa_restorer);
|
2018-02-12 09:03:10 +01:00
|
|
|
#ifdef SA_RESTORER
|
2018-02-05 13:33:35 +01:00
|
|
|
ASSERT_EQ(bool(sa.sa_flags & sa_restorer), bool(sa.sa_restorer));
|
2018-02-12 09:03:10 +01:00
|
|
|
#endif
|
2013-10-17 07:27:54 +02:00
|
|
|
|
|
|
|
// Set a new-style sa_sigaction signal handler.
|
2018-02-01 23:21:51 +01:00
|
|
|
auto no_op_sigaction = [](int, siginfo_t*, void*) {};
|
|
|
|
sa = {};
|
|
|
|
sigaddset_fn(&sa.sa_mask, sig);
|
2013-10-17 07:27:54 +02:00
|
|
|
sa.sa_flags = SA_ONSTACK | SA_SIGINFO;
|
2018-02-01 23:21:51 +01:00
|
|
|
sa.sa_sigaction = no_op_sigaction;
|
2018-08-03 02:31:13 +02:00
|
|
|
ASSERT_EQ(0, sigaction_fn(sig, &sa, nullptr));
|
2013-10-17 07:27:54 +02:00
|
|
|
|
|
|
|
// Check that we can read it back.
|
2018-02-01 23:21:51 +01:00
|
|
|
sa = {};
|
2018-08-03 02:31:13 +02:00
|
|
|
ASSERT_EQ(0, sigaction_fn(sig, nullptr, &sa));
|
2018-02-01 23:21:51 +01:00
|
|
|
ASSERT_TRUE(sa.sa_sigaction == no_op_sigaction);
|
2013-10-17 07:27:54 +02:00
|
|
|
ASSERT_TRUE((void*) sa.sa_sigaction == (void*) sa.sa_handler);
|
2014-09-05 00:43:10 +02:00
|
|
|
ASSERT_EQ(static_cast<unsigned>(SA_ONSTACK | SA_SIGINFO), sa.sa_flags & ~sa_restorer);
|
2018-02-12 09:03:10 +01:00
|
|
|
#ifdef SA_RESTORER
|
2018-02-05 13:33:35 +01:00
|
|
|
ASSERT_EQ(bool(sa.sa_flags & sa_restorer), bool(sa.sa_restorer));
|
2018-02-12 09:03:10 +01:00
|
|
|
#endif
|
2013-10-25 00:15:14 +02:00
|
|
|
|
|
|
|
// Put everything back how it was.
|
2018-08-03 02:31:13 +02:00
|
|
|
ASSERT_EQ(0, sigaction_fn(sig, &original_sa, nullptr));
|
2018-02-01 23:21:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(signal, sigaction) {
|
|
|
|
TestSigAction(sigaction, sigaddset, SIGALRM);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(signal, sigaction64_SIGRTMIN) {
|
|
|
|
TestSigAction(sigaction64, sigaddset64, SIGRTMIN);
|
2013-10-17 07:27:54 +02:00
|
|
|
}
|
2014-02-12 04:57:06 +01:00
|
|
|
|
2018-02-09 22:38:32 +01:00
|
|
|
static void ClearSignalMask() {
|
|
|
|
uint64_t sigset = 0;
|
2018-10-09 02:28:07 +02:00
|
|
|
SignalSetAdd(&sigset, __SIGRTMIN);
|
|
|
|
if (syscall(__NR_rt_sigprocmask, SIG_SETMASK, &sigset, nullptr, sizeof(sigset)) != 0) {
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void FillSignalMask() {
|
|
|
|
uint64_t sigset = ~0ULL;
|
|
|
|
for (int signo = __SIGRTMIN + 1; signo < SIGRTMIN; ++signo) {
|
|
|
|
SignalSetDel(&sigset, signo);
|
|
|
|
}
|
2018-02-09 22:38:32 +01:00
|
|
|
if (syscall(__NR_rt_sigprocmask, SIG_SETMASK, &sigset, nullptr, sizeof(sigset)) != 0) {
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint64_t GetSignalMask() {
|
|
|
|
uint64_t sigset;
|
|
|
|
if (syscall(__NR_rt_sigprocmask, SIG_SETMASK, nullptr, &sigset, sizeof(sigset)) != 0) {
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
return sigset;
|
|
|
|
}
|
|
|
|
|
2018-10-09 02:28:07 +02:00
|
|
|
static void TestSignalMaskFiltered(uint64_t sigset) {
|
|
|
|
#if defined(__BIONIC__)
|
|
|
|
for (int signo = __SIGRTMIN; signo < SIGRTMIN; ++signo) {
|
2018-02-09 22:38:32 +01:00
|
|
|
bool signal_blocked = sigset & (1ULL << (signo - 1));
|
2018-10-09 02:28:07 +02:00
|
|
|
if (signo == __SIGRTMIN) {
|
|
|
|
// TIMER_SIGNAL must be blocked.
|
2018-02-09 22:38:32 +01:00
|
|
|
EXPECT_EQ(true, signal_blocked) << "signal " << signo;
|
2018-10-09 02:28:07 +02:00
|
|
|
} else {
|
|
|
|
// The other reserved signals must not be blocked.
|
2018-02-09 22:38:32 +01:00
|
|
|
EXPECT_EQ(false, signal_blocked) << "signal " << signo;
|
|
|
|
}
|
|
|
|
}
|
2018-10-09 02:28:07 +02:00
|
|
|
#else
|
|
|
|
UNUSED(sigset);
|
|
|
|
#endif
|
2018-02-09 22:38:32 +01:00
|
|
|
}
|
|
|
|
|
2018-10-09 02:28:07 +02:00
|
|
|
static void TestSignalMaskFunction(std::function<void()> fn) {
|
2018-02-09 22:38:32 +01:00
|
|
|
ClearSignalMask();
|
|
|
|
fn();
|
2018-10-09 02:28:07 +02:00
|
|
|
TestSignalMaskFiltered(GetSignalMask());
|
2018-02-09 22:38:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(signal, sigaction_filter) {
|
|
|
|
ClearSignalMask();
|
|
|
|
static uint64_t sigset;
|
|
|
|
struct sigaction sa = {};
|
|
|
|
sa.sa_handler = [](int) { sigset = GetSignalMask(); };
|
2019-01-23 07:53:49 +01:00
|
|
|
sa.sa_flags = SA_ONSTACK | SA_NODEFER;
|
2018-02-09 22:38:32 +01:00
|
|
|
sigfillset(&sa.sa_mask);
|
|
|
|
sigaction(SIGUSR1, &sa, nullptr);
|
|
|
|
raise(SIGUSR1);
|
2019-01-23 07:53:49 +01:00
|
|
|
|
|
|
|
// On LP32, struct sigaction::sa_mask is only 32-bits wide.
|
|
|
|
unsigned long expected_sigset = ~0UL;
|
|
|
|
|
|
|
|
// SIGKILL and SIGSTOP are always blocked.
|
|
|
|
expected_sigset &= ~(1UL << (SIGKILL - 1));
|
|
|
|
expected_sigset &= ~(1UL << (SIGSTOP - 1));
|
|
|
|
|
|
|
|
ASSERT_EQ(static_cast<uint64_t>(expected_sigset), sigset);
|
2018-02-09 22:38:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(signal, sigaction64_filter) {
|
|
|
|
ClearSignalMask();
|
|
|
|
static uint64_t sigset;
|
|
|
|
struct sigaction64 sa = {};
|
|
|
|
sa.sa_handler = [](int) { sigset = GetSignalMask(); };
|
2019-01-23 07:53:49 +01:00
|
|
|
sa.sa_flags = SA_ONSTACK | SA_NODEFER;
|
2018-02-09 22:38:32 +01:00
|
|
|
sigfillset64(&sa.sa_mask);
|
|
|
|
sigaction64(SIGUSR1, &sa, nullptr);
|
|
|
|
raise(SIGUSR1);
|
2019-01-23 07:53:49 +01:00
|
|
|
|
|
|
|
uint64_t expected_sigset = ~0ULL;
|
|
|
|
|
|
|
|
// SIGKILL and SIGSTOP are always blocked.
|
|
|
|
expected_sigset &= ~(1ULL << (SIGKILL - 1));
|
|
|
|
expected_sigset &= ~(1ULL << (SIGSTOP - 1));
|
|
|
|
|
|
|
|
ASSERT_EQ(expected_sigset, sigset);
|
2018-02-09 22:38:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(signal, sigprocmask_setmask_filter) {
|
2018-10-09 02:28:07 +02:00
|
|
|
TestSignalMaskFunction([]() {
|
|
|
|
ClearSignalMask();
|
|
|
|
sigset_t sigset_libc;
|
|
|
|
sigfillset(&sigset_libc);
|
|
|
|
ASSERT_EQ(0, sigprocmask(SIG_SETMASK, &sigset_libc, nullptr));
|
|
|
|
});
|
2018-02-09 22:38:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(signal, sigprocmask64_setmask_filter) {
|
2018-10-09 02:28:07 +02:00
|
|
|
TestSignalMaskFunction([]() {
|
|
|
|
ClearSignalMask();
|
|
|
|
sigset64_t sigset_libc;
|
|
|
|
sigfillset64(&sigset_libc);
|
|
|
|
ASSERT_EQ(0, sigprocmask64(SIG_SETMASK, &sigset_libc, nullptr));
|
|
|
|
});
|
2018-02-09 22:38:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(signal, pthread_sigmask_setmask_filter) {
|
2018-10-09 02:28:07 +02:00
|
|
|
TestSignalMaskFunction([]() {
|
|
|
|
ClearSignalMask();
|
|
|
|
sigset_t sigset_libc;
|
|
|
|
sigfillset(&sigset_libc);
|
|
|
|
ASSERT_EQ(0, pthread_sigmask(SIG_SETMASK, &sigset_libc, nullptr));
|
|
|
|
});
|
2018-02-09 22:38:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(signal, pthread_sigmask64_setmask_filter) {
|
2018-10-09 02:28:07 +02:00
|
|
|
TestSignalMaskFunction([]() {
|
|
|
|
ClearSignalMask();
|
|
|
|
sigset64_t sigset_libc;
|
|
|
|
sigfillset64(&sigset_libc);
|
|
|
|
ASSERT_EQ(0, pthread_sigmask64(SIG_SETMASK, &sigset_libc, nullptr));
|
|
|
|
});
|
2018-02-09 22:38:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(signal, sigprocmask_block_filter) {
|
2018-10-09 02:28:07 +02:00
|
|
|
TestSignalMaskFunction([]() {
|
|
|
|
ClearSignalMask();
|
|
|
|
sigset_t sigset_libc;
|
|
|
|
sigfillset(&sigset_libc);
|
|
|
|
ASSERT_EQ(0, sigprocmask(SIG_BLOCK, &sigset_libc, nullptr));
|
|
|
|
});
|
2018-02-09 22:38:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(signal, sigprocmask64_block_filter) {
|
2018-10-09 02:28:07 +02:00
|
|
|
TestSignalMaskFunction([]() {
|
|
|
|
ClearSignalMask();
|
|
|
|
sigset64_t sigset_libc;
|
|
|
|
sigfillset64(&sigset_libc);
|
|
|
|
ASSERT_EQ(0, sigprocmask64(SIG_BLOCK, &sigset_libc, nullptr));
|
|
|
|
});
|
2018-02-09 22:38:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(signal, pthread_sigmask_block_filter) {
|
2018-10-09 02:28:07 +02:00
|
|
|
TestSignalMaskFunction([]() {
|
|
|
|
ClearSignalMask();
|
|
|
|
sigset_t sigset_libc;
|
|
|
|
sigfillset(&sigset_libc);
|
|
|
|
ASSERT_EQ(0, pthread_sigmask(SIG_BLOCK, &sigset_libc, nullptr));
|
|
|
|
});
|
2018-02-09 22:38:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(signal, pthread_sigmask64_block_filter) {
|
2018-10-09 02:28:07 +02:00
|
|
|
TestSignalMaskFunction([]() {
|
|
|
|
ClearSignalMask();
|
|
|
|
sigset64_t sigset_libc;
|
|
|
|
sigfillset64(&sigset_libc);
|
|
|
|
ASSERT_EQ(0, pthread_sigmask64(SIG_BLOCK, &sigset_libc, nullptr));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(signal, sigprocmask_unblock_filter) {
|
|
|
|
TestSignalMaskFunction([]() {
|
|
|
|
FillSignalMask();
|
|
|
|
sigset_t sigset_libc;
|
|
|
|
sigfillset(&sigset_libc);
|
|
|
|
ASSERT_EQ(0, sigprocmask(SIG_UNBLOCK, &sigset_libc, nullptr));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(signal, sigprocmask64_unblock_filter) {
|
|
|
|
TestSignalMaskFunction([]() {
|
|
|
|
FillSignalMask();
|
|
|
|
sigset64_t sigset_libc;
|
|
|
|
sigfillset64(&sigset_libc);
|
|
|
|
ASSERT_EQ(0, sigprocmask64(SIG_UNBLOCK, &sigset_libc, nullptr));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(signal, pthread_sigmask_unblock_filter) {
|
|
|
|
TestSignalMaskFunction([]() {
|
|
|
|
FillSignalMask();
|
|
|
|
sigset_t sigset_libc;
|
|
|
|
sigfillset(&sigset_libc);
|
|
|
|
ASSERT_EQ(0, pthread_sigmask(SIG_UNBLOCK, &sigset_libc, nullptr));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(signal, pthread_sigmask64_unblock_filter) {
|
|
|
|
TestSignalMaskFunction([]() {
|
|
|
|
FillSignalMask();
|
|
|
|
sigset64_t sigset_libc;
|
|
|
|
sigfillset64(&sigset_libc);
|
|
|
|
ASSERT_EQ(0, pthread_sigmask64(SIG_UNBLOCK, &sigset_libc, nullptr));
|
|
|
|
});
|
2018-02-09 22:38:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// glibc filters out signals via sigfillset, not the actual underlying functions.
|
|
|
|
TEST(signal, sigset_filter) {
|
|
|
|
#if defined(__BIONIC__)
|
2018-10-09 02:28:07 +02:00
|
|
|
TestSignalMaskFunction([]() {
|
|
|
|
for (int i = 1; i <= 64; ++i) {
|
|
|
|
sigset(i, SIG_HOLD);
|
|
|
|
}
|
|
|
|
});
|
2018-02-09 22:38:32 +01:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(signal, sighold_filter) {
|
|
|
|
#if defined(__BIONIC__)
|
2018-10-09 02:28:07 +02:00
|
|
|
TestSignalMaskFunction([]() {
|
|
|
|
for (int i = 1; i <= 64; ++i) {
|
|
|
|
sighold(i);
|
|
|
|
}
|
|
|
|
});
|
2018-02-09 22:38:32 +01:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
De-pessimize SigSetConverter usage.
While looking at the disassembly for the epoll stuff I noticed that this
expands to quite a lot of code that the compiler can't optimize out for
LP64 (because it doesn't know that the "copy the argument into a local
and then use the local" bit isn't important).
There are two obvious options here. Something like this:
```
int signalfd64(int fd, const sigset64_t* mask, int flags) {
return __signalfd4(fd, mask, sizeof(*mask), flags);
}
int signalfd(int fd, const sigset_t* mask, int flags) {
#if defined(__LP64__)
return signalfd64(fd, mask, flags);
#else
SigSetConverter set = {.sigset = *mask};
return signalfd64(fd, &set.sigset64, flags);
#endif
}
```
Or something like this:
```
int signalfd64(int fd, const sigset64_t* mask, int flags) {
return __signalfd4(fd, mask, sizeof(*mask), flags);
}
#if defined(__LP64__)
__strong_alias(signalfd, signalfd64);
#else
int signalfd(int fd, const sigset_t* mask, int flags) {
SigSetConverter set = {};
set.sigset = *mask;
return signalfd64(fd, &set.sigset64, flags);
}
#endif
```
The former is slightly more verbose, but seems a bit more obvious, so I
initially went with that. (The former is more verbose in the generated
code too, given that the latter expands to _no_ code, just another symbol
pointing to the same code address.)
Having done that, I realized that slight changes to the interface would
let clang optimize away most/all of the overhead for LP64 with the only
preprocessor hackery being in SigSetConverter itself.
I also pulled out the legacy bsd `int` conversions since they're only
used in two (secret!) functions, so it's clearer to just have a separate
union for them. While doing so, I suppressed those functions for
riscv64, since there's no reason to keep carrying that mistake forward.
posix_spawn() is another simple case that doesn't actually benefit from
SigSetConverter, so I've given that its own anonymous union too.
Test: treehugger
Change-Id: Iaf67486da40d40fc53ec69717c3492ab7ab81ad6
2023-07-18 02:15:01 +02:00
|
|
|
#if defined(__BIONIC__) && !defined(__riscv)
|
2018-02-09 22:38:32 +01:00
|
|
|
// Not exposed via headers, but the symbols are available if you declare them yourself.
|
|
|
|
extern "C" int sigblock(int);
|
|
|
|
extern "C" int sigsetmask(int);
|
De-pessimize SigSetConverter usage.
While looking at the disassembly for the epoll stuff I noticed that this
expands to quite a lot of code that the compiler can't optimize out for
LP64 (because it doesn't know that the "copy the argument into a local
and then use the local" bit isn't important).
There are two obvious options here. Something like this:
```
int signalfd64(int fd, const sigset64_t* mask, int flags) {
return __signalfd4(fd, mask, sizeof(*mask), flags);
}
int signalfd(int fd, const sigset_t* mask, int flags) {
#if defined(__LP64__)
return signalfd64(fd, mask, flags);
#else
SigSetConverter set = {.sigset = *mask};
return signalfd64(fd, &set.sigset64, flags);
#endif
}
```
Or something like this:
```
int signalfd64(int fd, const sigset64_t* mask, int flags) {
return __signalfd4(fd, mask, sizeof(*mask), flags);
}
#if defined(__LP64__)
__strong_alias(signalfd, signalfd64);
#else
int signalfd(int fd, const sigset_t* mask, int flags) {
SigSetConverter set = {};
set.sigset = *mask;
return signalfd64(fd, &set.sigset64, flags);
}
#endif
```
The former is slightly more verbose, but seems a bit more obvious, so I
initially went with that. (The former is more verbose in the generated
code too, given that the latter expands to _no_ code, just another symbol
pointing to the same code address.)
Having done that, I realized that slight changes to the interface would
let clang optimize away most/all of the overhead for LP64 with the only
preprocessor hackery being in SigSetConverter itself.
I also pulled out the legacy bsd `int` conversions since they're only
used in two (secret!) functions, so it's clearer to just have a separate
union for them. While doing so, I suppressed those functions for
riscv64, since there's no reason to keep carrying that mistake forward.
posix_spawn() is another simple case that doesn't actually benefit from
SigSetConverter, so I've given that its own anonymous union too.
Test: treehugger
Change-Id: Iaf67486da40d40fc53ec69717c3492ab7ab81ad6
2023-07-18 02:15:01 +02:00
|
|
|
#define HAVE_SIGBLOCK_SIGSETMASK
|
2018-02-09 22:38:32 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
TEST(signal, sigblock_filter) {
|
De-pessimize SigSetConverter usage.
While looking at the disassembly for the epoll stuff I noticed that this
expands to quite a lot of code that the compiler can't optimize out for
LP64 (because it doesn't know that the "copy the argument into a local
and then use the local" bit isn't important).
There are two obvious options here. Something like this:
```
int signalfd64(int fd, const sigset64_t* mask, int flags) {
return __signalfd4(fd, mask, sizeof(*mask), flags);
}
int signalfd(int fd, const sigset_t* mask, int flags) {
#if defined(__LP64__)
return signalfd64(fd, mask, flags);
#else
SigSetConverter set = {.sigset = *mask};
return signalfd64(fd, &set.sigset64, flags);
#endif
}
```
Or something like this:
```
int signalfd64(int fd, const sigset64_t* mask, int flags) {
return __signalfd4(fd, mask, sizeof(*mask), flags);
}
#if defined(__LP64__)
__strong_alias(signalfd, signalfd64);
#else
int signalfd(int fd, const sigset_t* mask, int flags) {
SigSetConverter set = {};
set.sigset = *mask;
return signalfd64(fd, &set.sigset64, flags);
}
#endif
```
The former is slightly more verbose, but seems a bit more obvious, so I
initially went with that. (The former is more verbose in the generated
code too, given that the latter expands to _no_ code, just another symbol
pointing to the same code address.)
Having done that, I realized that slight changes to the interface would
let clang optimize away most/all of the overhead for LP64 with the only
preprocessor hackery being in SigSetConverter itself.
I also pulled out the legacy bsd `int` conversions since they're only
used in two (secret!) functions, so it's clearer to just have a separate
union for them. While doing so, I suppressed those functions for
riscv64, since there's no reason to keep carrying that mistake forward.
posix_spawn() is another simple case that doesn't actually benefit from
SigSetConverter, so I've given that its own anonymous union too.
Test: treehugger
Change-Id: Iaf67486da40d40fc53ec69717c3492ab7ab81ad6
2023-07-18 02:15:01 +02:00
|
|
|
#if defined(HAVE_SIGBLOCK_SIGSETMASK)
|
2018-10-09 02:28:07 +02:00
|
|
|
TestSignalMaskFunction([]() {
|
|
|
|
sigblock(~0U);
|
|
|
|
});
|
2018-02-09 22:38:32 +01:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(signal, sigsetmask_filter) {
|
De-pessimize SigSetConverter usage.
While looking at the disassembly for the epoll stuff I noticed that this
expands to quite a lot of code that the compiler can't optimize out for
LP64 (because it doesn't know that the "copy the argument into a local
and then use the local" bit isn't important).
There are two obvious options here. Something like this:
```
int signalfd64(int fd, const sigset64_t* mask, int flags) {
return __signalfd4(fd, mask, sizeof(*mask), flags);
}
int signalfd(int fd, const sigset_t* mask, int flags) {
#if defined(__LP64__)
return signalfd64(fd, mask, flags);
#else
SigSetConverter set = {.sigset = *mask};
return signalfd64(fd, &set.sigset64, flags);
#endif
}
```
Or something like this:
```
int signalfd64(int fd, const sigset64_t* mask, int flags) {
return __signalfd4(fd, mask, sizeof(*mask), flags);
}
#if defined(__LP64__)
__strong_alias(signalfd, signalfd64);
#else
int signalfd(int fd, const sigset_t* mask, int flags) {
SigSetConverter set = {};
set.sigset = *mask;
return signalfd64(fd, &set.sigset64, flags);
}
#endif
```
The former is slightly more verbose, but seems a bit more obvious, so I
initially went with that. (The former is more verbose in the generated
code too, given that the latter expands to _no_ code, just another symbol
pointing to the same code address.)
Having done that, I realized that slight changes to the interface would
let clang optimize away most/all of the overhead for LP64 with the only
preprocessor hackery being in SigSetConverter itself.
I also pulled out the legacy bsd `int` conversions since they're only
used in two (secret!) functions, so it's clearer to just have a separate
union for them. While doing so, I suppressed those functions for
riscv64, since there's no reason to keep carrying that mistake forward.
posix_spawn() is another simple case that doesn't actually benefit from
SigSetConverter, so I've given that its own anonymous union too.
Test: treehugger
Change-Id: Iaf67486da40d40fc53ec69717c3492ab7ab81ad6
2023-07-18 02:15:01 +02:00
|
|
|
#if defined(HAVE_SIGBLOCK_SIGSETMASK)
|
2018-10-09 02:28:07 +02:00
|
|
|
TestSignalMaskFunction([]() {
|
|
|
|
sigsetmask(~0U);
|
|
|
|
});
|
2018-02-09 22:38:32 +01:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2014-02-12 04:57:06 +01:00
|
|
|
TEST(signal, sys_signame) {
|
2014-02-13 04:04:27 +01:00
|
|
|
#if defined(__BIONIC__)
|
2018-08-03 02:31:13 +02:00
|
|
|
ASSERT_TRUE(sys_signame[0] == nullptr);
|
2014-02-12 04:57:06 +01:00
|
|
|
ASSERT_STREQ("HUP", sys_signame[SIGHUP]);
|
|
|
|
#else
|
2019-03-09 00:20:23 +01:00
|
|
|
GTEST_SKIP() << "glibc doesn't have sys_signame";
|
2014-02-12 04:57:06 +01:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(signal, sys_siglist) {
|
2021-08-17 00:51:59 +02:00
|
|
|
#if !defined(ANDROID_HOST_MUSL)
|
2018-08-03 02:31:13 +02:00
|
|
|
ASSERT_TRUE(sys_siglist[0] == nullptr);
|
2014-02-12 04:57:06 +01:00
|
|
|
ASSERT_STREQ("Hangup", sys_siglist[SIGHUP]);
|
2021-07-28 20:18:11 +02:00
|
|
|
#else
|
|
|
|
GTEST_SKIP() << "musl doesn't have sys_siglist";
|
|
|
|
#endif
|
2014-02-12 04:57:06 +01:00
|
|
|
}
|
2014-04-30 18:45:40 +02:00
|
|
|
|
|
|
|
TEST(signal, limits) {
|
2020-02-13 18:48:14 +01:00
|
|
|
// These come from the kernel.
|
2014-04-30 18:45:40 +02:00
|
|
|
ASSERT_EQ(32, __SIGRTMIN);
|
2020-02-13 18:48:14 +01:00
|
|
|
ASSERT_EQ(64, __SIGRTMAX);
|
2014-04-30 18:45:40 +02:00
|
|
|
|
|
|
|
// We reserve a non-zero number at the bottom for ourselves.
|
|
|
|
ASSERT_GT(SIGRTMIN, __SIGRTMIN);
|
|
|
|
|
|
|
|
// We don't currently reserve any at the top.
|
|
|
|
ASSERT_EQ(SIGRTMAX, __SIGRTMAX);
|
|
|
|
}
|
2014-12-02 02:41:04 +01:00
|
|
|
|
|
|
|
static int g_sigqueue_signal_handler_call_count = 0;
|
|
|
|
|
|
|
|
static void SigqueueSignalHandler(int signum, siginfo_t* info, void*) {
|
|
|
|
ASSERT_EQ(SIGALRM, signum);
|
|
|
|
ASSERT_EQ(SIGALRM, info->si_signo);
|
|
|
|
ASSERT_EQ(SI_QUEUE, info->si_code);
|
|
|
|
ASSERT_EQ(1, info->si_value.sival_int);
|
|
|
|
++g_sigqueue_signal_handler_call_count;
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(signal, sigqueue) {
|
|
|
|
ScopedSignalHandler ssh(SIGALRM, SigqueueSignalHandler, SA_SIGINFO);
|
2021-07-28 20:18:11 +02:00
|
|
|
sigval sigval = {.sival_int = 1};
|
2014-12-02 02:41:04 +01:00
|
|
|
errno = 0;
|
|
|
|
ASSERT_EQ(0, sigqueue(getpid(), SIGALRM, sigval));
|
2023-09-21 23:11:19 +02:00
|
|
|
ASSERT_ERRNO(0);
|
2014-12-02 02:41:04 +01:00
|
|
|
ASSERT_EQ(1, g_sigqueue_signal_handler_call_count);
|
|
|
|
}
|
|
|
|
|
2018-08-28 01:00:58 +02:00
|
|
|
TEST(signal, pthread_sigqueue_self) {
|
2021-08-17 00:51:59 +02:00
|
|
|
#if !defined(ANDROID_HOST_MUSL)
|
2018-08-28 01:00:58 +02:00
|
|
|
ScopedSignalHandler ssh(SIGALRM, SigqueueSignalHandler, SA_SIGINFO);
|
2021-07-28 20:18:11 +02:00
|
|
|
sigval sigval = {.sival_int = 1};
|
2018-08-28 01:00:58 +02:00
|
|
|
errno = 0;
|
|
|
|
ASSERT_EQ(0, pthread_sigqueue(pthread_self(), SIGALRM, sigval));
|
2023-09-21 23:11:19 +02:00
|
|
|
ASSERT_ERRNO(0);
|
2018-08-28 01:00:58 +02:00
|
|
|
ASSERT_EQ(1, g_sigqueue_signal_handler_call_count);
|
2021-07-28 20:18:11 +02:00
|
|
|
#else
|
|
|
|
GTEST_SKIP() << "musl doesn't have pthread_sigqueue";
|
|
|
|
#endif
|
2018-08-28 01:00:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(signal, pthread_sigqueue_other) {
|
2021-08-17 00:51:59 +02:00
|
|
|
#if !defined(ANDROID_HOST_MUSL)
|
2018-08-28 01:00:58 +02:00
|
|
|
ScopedSignalHandler ssh(SIGALRM, SigqueueSignalHandler, SA_SIGINFO);
|
2021-07-28 20:18:11 +02:00
|
|
|
sigval sigval = {.sival_int = 1};
|
2018-08-28 01:00:58 +02:00
|
|
|
|
|
|
|
sigset_t mask;
|
|
|
|
sigfillset(&mask);
|
|
|
|
pthread_sigmask(SIG_SETMASK, &mask, nullptr);
|
|
|
|
pthread_t thread;
|
|
|
|
int rc = pthread_create(&thread, nullptr,
|
|
|
|
[](void*) -> void* {
|
|
|
|
sigset_t mask;
|
|
|
|
sigemptyset(&mask);
|
|
|
|
sigsuspend(&mask);
|
|
|
|
return nullptr;
|
|
|
|
},
|
|
|
|
nullptr);
|
|
|
|
ASSERT_EQ(0, rc);
|
|
|
|
|
|
|
|
errno = 0;
|
|
|
|
ASSERT_EQ(0, pthread_sigqueue(thread, SIGALRM, sigval));
|
2023-09-21 23:11:19 +02:00
|
|
|
ASSERT_ERRNO(0);
|
2018-08-28 01:00:58 +02:00
|
|
|
pthread_join(thread, nullptr);
|
|
|
|
ASSERT_EQ(1, g_sigqueue_signal_handler_call_count);
|
2021-07-28 20:18:11 +02:00
|
|
|
#else
|
|
|
|
GTEST_SKIP() << "musl doesn't have pthread_sigqueue";
|
|
|
|
#endif
|
2018-08-28 01:00:58 +02:00
|
|
|
}
|
|
|
|
|
2020-03-21 00:25:54 +01:00
|
|
|
TEST(signal, sigwait_SIGALRM) {
|
|
|
|
SignalMaskRestorer smr;
|
|
|
|
|
|
|
|
// Block SIGALRM.
|
|
|
|
sigset_t just_SIGALRM;
|
|
|
|
sigemptyset(&just_SIGALRM);
|
|
|
|
sigaddset(&just_SIGALRM, SIGALRM);
|
|
|
|
ASSERT_EQ(0, sigprocmask(SIG_BLOCK, &just_SIGALRM, nullptr));
|
|
|
|
|
|
|
|
// Raise SIGALRM.
|
2021-07-28 20:18:11 +02:00
|
|
|
sigval sigval = {.sival_int = 1};
|
2020-03-21 00:25:54 +01:00
|
|
|
ASSERT_EQ(0, sigqueue(getpid(), SIGALRM, sigval));
|
|
|
|
|
|
|
|
// Get pending SIGALRM.
|
|
|
|
int sig;
|
|
|
|
ASSERT_EQ(0, sigwait(&just_SIGALRM, &sig));
|
|
|
|
ASSERT_EQ(SIGALRM, sig);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(signal, sigwait64_SIGRTMIN) {
|
|
|
|
SignalMaskRestorer smr;
|
|
|
|
|
|
|
|
// Block SIGRTMIN.
|
|
|
|
sigset64_t just_SIGRTMIN;
|
|
|
|
sigemptyset64(&just_SIGRTMIN);
|
|
|
|
sigaddset64(&just_SIGRTMIN, SIGRTMIN);
|
|
|
|
ASSERT_EQ(0, sigprocmask64(SIG_BLOCK, &just_SIGRTMIN, nullptr));
|
|
|
|
|
|
|
|
// Raise SIGRTMIN.
|
2021-07-28 20:18:11 +02:00
|
|
|
sigval sigval = {.sival_int = 1};
|
2020-03-21 00:25:54 +01:00
|
|
|
ASSERT_EQ(0, sigqueue(getpid(), SIGRTMIN, sigval));
|
|
|
|
|
|
|
|
// Get pending SIGRTMIN.
|
|
|
|
int sig;
|
|
|
|
ASSERT_EQ(0, sigwait64(&just_SIGRTMIN, &sig));
|
|
|
|
ASSERT_EQ(SIGRTMIN, sig);
|
|
|
|
}
|
|
|
|
|
2014-12-02 02:41:04 +01:00
|
|
|
TEST(signal, sigwaitinfo) {
|
2018-01-31 00:09:51 +01:00
|
|
|
SignalMaskRestorer smr;
|
|
|
|
|
2014-12-02 02:41:04 +01:00
|
|
|
// Block SIGALRM.
|
|
|
|
sigset_t just_SIGALRM;
|
|
|
|
sigemptyset(&just_SIGALRM);
|
|
|
|
sigaddset(&just_SIGALRM, SIGALRM);
|
2018-01-31 00:09:51 +01:00
|
|
|
ASSERT_EQ(0, sigprocmask(SIG_BLOCK, &just_SIGALRM, nullptr));
|
2014-12-02 02:41:04 +01:00
|
|
|
|
|
|
|
// Raise SIGALRM.
|
2021-07-28 20:18:11 +02:00
|
|
|
sigval sigval = {.sival_int = 1};
|
2014-12-02 02:41:04 +01:00
|
|
|
ASSERT_EQ(0, sigqueue(getpid(), SIGALRM, sigval));
|
|
|
|
|
|
|
|
// Get pending SIGALRM.
|
|
|
|
siginfo_t info;
|
|
|
|
errno = 0;
|
|
|
|
ASSERT_EQ(SIGALRM, sigwaitinfo(&just_SIGALRM, &info));
|
2023-09-21 23:11:19 +02:00
|
|
|
ASSERT_ERRNO(0);
|
2014-12-02 02:41:04 +01:00
|
|
|
ASSERT_EQ(SIGALRM, info.si_signo);
|
|
|
|
ASSERT_EQ(1, info.si_value.sival_int);
|
2018-01-31 00:09:51 +01:00
|
|
|
}
|
2014-12-02 02:41:04 +01:00
|
|
|
|
2018-01-31 00:09:51 +01:00
|
|
|
TEST(signal, sigwaitinfo64_SIGRTMIN) {
|
|
|
|
SignalMaskRestorer smr;
|
|
|
|
|
|
|
|
// Block SIGRTMIN.
|
|
|
|
sigset64_t just_SIGRTMIN;
|
|
|
|
sigemptyset64(&just_SIGRTMIN);
|
|
|
|
sigaddset64(&just_SIGRTMIN, SIGRTMIN);
|
|
|
|
ASSERT_EQ(0, sigprocmask64(SIG_BLOCK, &just_SIGRTMIN, nullptr));
|
|
|
|
|
|
|
|
// Raise SIGRTMIN.
|
2021-07-28 20:18:11 +02:00
|
|
|
sigval sigval = {.sival_int = 1};
|
2018-01-31 00:09:51 +01:00
|
|
|
ASSERT_EQ(0, sigqueue(getpid(), SIGRTMIN, sigval));
|
|
|
|
|
|
|
|
// Get pending SIGRTMIN.
|
|
|
|
siginfo_t info;
|
|
|
|
errno = 0;
|
|
|
|
ASSERT_EQ(SIGRTMIN, sigwaitinfo64(&just_SIGRTMIN, &info));
|
2023-09-21 23:11:19 +02:00
|
|
|
ASSERT_ERRNO(0);
|
2018-01-31 00:09:51 +01:00
|
|
|
ASSERT_EQ(SIGRTMIN, info.si_signo);
|
|
|
|
ASSERT_EQ(1, info.si_value.sival_int);
|
2014-12-02 02:41:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(signal, sigtimedwait) {
|
2018-01-31 00:09:51 +01:00
|
|
|
SignalMaskRestorer smr;
|
|
|
|
|
2014-12-02 02:41:04 +01:00
|
|
|
// Block SIGALRM.
|
|
|
|
sigset_t just_SIGALRM;
|
|
|
|
sigemptyset(&just_SIGALRM);
|
|
|
|
sigaddset(&just_SIGALRM, SIGALRM);
|
2018-01-31 00:09:51 +01:00
|
|
|
ASSERT_EQ(0, sigprocmask(SIG_BLOCK, &just_SIGALRM, nullptr));
|
2014-12-02 02:41:04 +01:00
|
|
|
|
|
|
|
// Raise SIGALRM.
|
2021-07-28 20:18:11 +02:00
|
|
|
sigval sigval = { .sival_int = 1 };
|
2014-12-02 02:41:04 +01:00
|
|
|
ASSERT_EQ(0, sigqueue(getpid(), SIGALRM, sigval));
|
|
|
|
|
|
|
|
// Get pending SIGALRM.
|
|
|
|
siginfo_t info;
|
2018-01-31 00:09:51 +01:00
|
|
|
timespec timeout = { .tv_sec = 2, .tv_nsec = 0 };
|
2014-12-02 02:41:04 +01:00
|
|
|
errno = 0;
|
|
|
|
ASSERT_EQ(SIGALRM, sigtimedwait(&just_SIGALRM, &info, &timeout));
|
2023-09-21 23:11:19 +02:00
|
|
|
ASSERT_ERRNO(0);
|
2018-01-31 00:09:51 +01:00
|
|
|
}
|
2014-12-02 02:41:04 +01:00
|
|
|
|
2018-01-31 00:09:51 +01:00
|
|
|
TEST(signal, sigtimedwait64_SIGRTMIN) {
|
|
|
|
SignalMaskRestorer smr;
|
|
|
|
|
|
|
|
// Block SIGRTMIN.
|
|
|
|
sigset64_t just_SIGRTMIN;
|
|
|
|
sigemptyset64(&just_SIGRTMIN);
|
|
|
|
sigaddset64(&just_SIGRTMIN, SIGRTMIN);
|
|
|
|
ASSERT_EQ(0, sigprocmask64(SIG_BLOCK, &just_SIGRTMIN, nullptr));
|
|
|
|
|
|
|
|
// Raise SIGALRM.
|
2021-07-28 20:18:11 +02:00
|
|
|
sigval sigval = { .sival_int = 1 };
|
2018-01-31 00:09:51 +01:00
|
|
|
ASSERT_EQ(0, sigqueue(getpid(), SIGRTMIN, sigval));
|
|
|
|
|
|
|
|
// Get pending SIGALRM.
|
|
|
|
siginfo_t info;
|
|
|
|
timespec timeout = { .tv_sec = 2, .tv_nsec = 0 };
|
|
|
|
errno = 0;
|
|
|
|
ASSERT_EQ(SIGRTMIN, sigtimedwait64(&just_SIGRTMIN, &info, &timeout));
|
2023-09-21 23:11:19 +02:00
|
|
|
ASSERT_ERRNO(0);
|
2014-12-02 02:41:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(signal, sigtimedwait_timeout) {
|
|
|
|
// Block SIGALRM.
|
|
|
|
sigset_t just_SIGALRM;
|
|
|
|
sigemptyset(&just_SIGALRM);
|
|
|
|
sigaddset(&just_SIGALRM, SIGALRM);
|
|
|
|
sigset_t original_set;
|
|
|
|
ASSERT_EQ(0, sigprocmask(SIG_BLOCK, &just_SIGALRM, &original_set));
|
|
|
|
|
|
|
|
// Wait timeout.
|
2019-10-28 23:59:38 +01:00
|
|
|
auto t0 = std::chrono::steady_clock::now();
|
2014-12-02 02:41:04 +01:00
|
|
|
siginfo_t info;
|
2018-01-31 00:09:51 +01:00
|
|
|
timespec timeout = { .tv_sec = 0, .tv_nsec = 1000000 };
|
2014-12-02 02:41:04 +01:00
|
|
|
errno = 0;
|
|
|
|
ASSERT_EQ(-1, sigtimedwait(&just_SIGALRM, &info, &timeout));
|
2023-09-21 23:11:19 +02:00
|
|
|
ASSERT_ERRNO(EAGAIN);
|
2019-10-28 23:59:38 +01:00
|
|
|
auto t1 = std::chrono::steady_clock::now();
|
|
|
|
ASSERT_GE(t1-t0, 1000000ns);
|
2014-12-02 02:41:04 +01:00
|
|
|
|
2018-08-03 02:31:13 +02:00
|
|
|
ASSERT_EQ(0, sigprocmask(SIG_SETMASK, &original_set, nullptr));
|
2014-12-02 02:41:04 +01:00
|
|
|
}
|
2016-03-09 00:27:15 +01:00
|
|
|
|
|
|
|
#if defined(__BIONIC__)
|
|
|
|
TEST(signal, rt_tgsigqueueinfo) {
|
|
|
|
// Test whether rt_tgsigqueueinfo allows sending arbitrary si_code values to self.
|
|
|
|
// If this fails, your kernel needs commit 66dd34a to be backported.
|
|
|
|
static constexpr char error_msg[] =
|
|
|
|
"\nPlease ensure that the following kernel patch has been applied:\n"
|
|
|
|
"* https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=66dd34ad31e5963d72a700ec3f2449291d322921\n";
|
|
|
|
static siginfo received;
|
|
|
|
|
2018-02-01 23:21:51 +01:00
|
|
|
struct sigaction handler = {};
|
2016-03-09 00:27:15 +01:00
|
|
|
handler.sa_sigaction = [](int, siginfo_t* siginfo, void*) { received = *siginfo; };
|
|
|
|
handler.sa_flags = SA_SIGINFO;
|
|
|
|
|
|
|
|
ASSERT_EQ(0, sigaction(SIGUSR1, &handler, nullptr));
|
|
|
|
|
2016-03-15 02:15:15 +01:00
|
|
|
siginfo sent;
|
|
|
|
memset(&sent, 0, sizeof(sent));
|
2016-03-09 00:27:15 +01:00
|
|
|
|
|
|
|
sent.si_code = SI_TKILL;
|
|
|
|
ASSERT_EQ(0, syscall(SYS_rt_tgsigqueueinfo, getpid(), gettid(), SIGUSR1, &sent))
|
|
|
|
<< "rt_tgsigqueueinfo failed: " << strerror(errno) << error_msg;
|
|
|
|
ASSERT_EQ(sent.si_code, received.si_code) << "rt_tgsigqueueinfo modified si_code, expected "
|
|
|
|
<< sent.si_code << ", received " << received.si_code
|
|
|
|
<< error_msg;
|
|
|
|
|
|
|
|
sent.si_code = SI_USER;
|
|
|
|
ASSERT_EQ(0, syscall(SYS_rt_tgsigqueueinfo, getpid(), gettid(), SIGUSR1, &sent))
|
|
|
|
<< "rt_tgsigqueueinfo failed: " << strerror(errno) << error_msg;
|
|
|
|
ASSERT_EQ(sent.si_code, received.si_code) << "rt_tgsigqueueinfo modified si_code, expected "
|
|
|
|
<< sent.si_code << ", received " << received.si_code
|
|
|
|
<< error_msg;
|
|
|
|
}
|
2018-01-31 00:09:51 +01:00
|
|
|
#endif
|
2016-03-29 23:34:03 +02:00
|
|
|
|
|
|
|
TEST(signal, sigset_size) {
|
2022-11-11 23:52:04 +01:00
|
|
|
// The setjmp implementations assume that sigset_t can fit in a long.
|
|
|
|
// This is true because the 32-bit ABIs have broken rt signal support,
|
|
|
|
// but the 64-bit ABIs both have a SIGRTMAX defined as 64.
|
2018-01-31 00:09:51 +01:00
|
|
|
#if defined(__BIONIC__)
|
2016-03-29 23:34:03 +02:00
|
|
|
static_assert(sizeof(sigset_t) <= sizeof(long), "sigset_t doesn't fit in a long");
|
|
|
|
#endif
|
2018-01-31 00:09:51 +01:00
|
|
|
static_assert(sizeof(sigset64_t)*8 >= 64, "sigset64_t too small for real-time signals");
|
|
|
|
}
|
2016-02-29 21:35:33 +01:00
|
|
|
|
|
|
|
TEST(signal, sigignore_EINVAL) {
|
|
|
|
errno = 0;
|
|
|
|
ASSERT_EQ(-1, sigignore(99999));
|
2023-09-21 23:11:19 +02:00
|
|
|
ASSERT_ERRNO(EINVAL);
|
2016-02-29 21:35:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(signal, sigignore) {
|
|
|
|
errno = 0;
|
|
|
|
EXPECT_EQ(-1, sigignore(SIGKILL));
|
2023-09-21 23:11:19 +02:00
|
|
|
EXPECT_ERRNO(EINVAL);
|
2016-02-29 21:35:33 +01:00
|
|
|
|
|
|
|
errno = 0;
|
|
|
|
EXPECT_EQ(-1, sigignore(SIGSTOP));
|
2023-09-21 23:11:19 +02:00
|
|
|
EXPECT_ERRNO(EINVAL);
|
2016-02-29 21:35:33 +01:00
|
|
|
|
|
|
|
ScopedSignalHandler sigalrm{SIGALRM};
|
|
|
|
ASSERT_EQ(0, sigignore(SIGALRM));
|
|
|
|
|
|
|
|
struct sigaction sa;
|
|
|
|
ASSERT_EQ(0, sigaction(SIGALRM, nullptr, &sa));
|
|
|
|
EXPECT_EQ(SIG_IGN, sa.sa_handler);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(signal, sighold_EINVAL) {
|
|
|
|
errno = 0;
|
|
|
|
ASSERT_EQ(-1, sighold(99999));
|
2023-09-21 23:11:19 +02:00
|
|
|
ASSERT_ERRNO(EINVAL);
|
2016-02-29 21:35:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(signal, sigpause_EINVAL) {
|
|
|
|
errno = 0;
|
|
|
|
ASSERT_EQ(-1, sigpause(99999));
|
2023-09-21 23:11:19 +02:00
|
|
|
ASSERT_ERRNO(EINVAL);
|
2016-02-29 21:35:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(signal, sigrelse_EINVAL) {
|
|
|
|
errno = 0;
|
|
|
|
ASSERT_EQ(-1, sigpause(99999));
|
2023-09-21 23:11:19 +02:00
|
|
|
ASSERT_ERRNO(EINVAL);
|
2016-02-29 21:35:33 +01:00
|
|
|
}
|
|
|
|
|
2018-01-25 03:54:38 +01:00
|
|
|
static void TestSigholdSigpauseSigrelse(int sig) {
|
|
|
|
static int signal_handler_call_count = 0;
|
|
|
|
ScopedSignalHandler ssh{sig, [](int) { signal_handler_call_count++; }};
|
|
|
|
SignalMaskRestorer mask_restorer;
|
2016-02-29 21:35:33 +01:00
|
|
|
sigset_t set;
|
|
|
|
|
2018-01-25 03:54:38 +01:00
|
|
|
// sighold(SIGALRM/SIGRTMIN) should add SIGALRM/SIGRTMIN to the signal mask ...
|
|
|
|
ASSERT_EQ(0, sighold(sig));
|
2018-08-03 02:31:13 +02:00
|
|
|
ASSERT_EQ(0, sigprocmask(SIG_SETMASK, nullptr, &set));
|
2018-01-25 03:54:38 +01:00
|
|
|
EXPECT_TRUE(sigismember(&set, sig));
|
2016-02-29 21:35:33 +01:00
|
|
|
|
2018-01-25 03:54:38 +01:00
|
|
|
// ... preventing our SIGALRM/SIGRTMIN handler from running ...
|
|
|
|
raise(sig);
|
|
|
|
ASSERT_EQ(0, signal_handler_call_count);
|
|
|
|
// ... until sigpause(SIGALRM/SIGRTMIN) temporarily unblocks it.
|
|
|
|
ASSERT_EQ(-1, sigpause(sig));
|
2023-09-21 23:11:19 +02:00
|
|
|
ASSERT_ERRNO(EINTR);
|
2018-01-25 03:54:38 +01:00
|
|
|
ASSERT_EQ(1, signal_handler_call_count);
|
|
|
|
|
|
|
|
if (sig >= SIGRTMIN && sizeof(void*) == 8) {
|
|
|
|
// But sigpause(SIGALRM/SIGRTMIN) shouldn't permanently unblock SIGALRM/SIGRTMIN.
|
2018-08-03 02:31:13 +02:00
|
|
|
ASSERT_EQ(0, sigprocmask(SIG_SETMASK, nullptr, &set));
|
2018-01-25 03:54:38 +01:00
|
|
|
EXPECT_TRUE(sigismember(&set, sig));
|
|
|
|
|
|
|
|
// Whereas sigrelse(SIGALRM/SIGRTMIN) should.
|
|
|
|
ASSERT_EQ(0, sigrelse(sig));
|
2018-08-03 02:31:13 +02:00
|
|
|
ASSERT_EQ(0, sigprocmask(SIG_SETMASK, nullptr, &set));
|
2018-01-25 03:54:38 +01:00
|
|
|
EXPECT_FALSE(sigismember(&set, sig));
|
|
|
|
} else {
|
|
|
|
// sigismember won't work for SIGRTMIN on LP32.
|
|
|
|
}
|
|
|
|
}
|
2016-02-29 21:35:33 +01:00
|
|
|
|
2018-01-25 03:54:38 +01:00
|
|
|
TEST(signal, sighold_sigpause_sigrelse) {
|
|
|
|
TestSigholdSigpauseSigrelse(SIGALRM);
|
|
|
|
}
|
2016-02-29 21:35:33 +01:00
|
|
|
|
2018-01-25 03:54:38 +01:00
|
|
|
TEST(signal, sighold_sigpause_sigrelse_RT) {
|
|
|
|
TestSigholdSigpauseSigrelse(SIGRTMIN);
|
2016-02-29 21:35:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(signal, sigset_EINVAL) {
|
|
|
|
errno = 0;
|
|
|
|
ASSERT_EQ(SIG_ERR, sigset(99999, SIG_DFL));
|
2023-09-21 23:11:19 +02:00
|
|
|
ASSERT_ERRNO(EINVAL);
|
2016-02-29 21:35:33 +01:00
|
|
|
}
|
|
|
|
|
2018-01-25 03:54:38 +01:00
|
|
|
TEST(signal, sigset_RT) {
|
|
|
|
static int signal_handler_call_count = 0;
|
|
|
|
auto signal_handler = [](int) { signal_handler_call_count++; };
|
|
|
|
ScopedSignalHandler ssh{SIGRTMIN, signal_handler};
|
|
|
|
SignalMaskRestorer mask_restorer;
|
|
|
|
|
|
|
|
ASSERT_EQ(signal_handler, sigset(SIGRTMIN, SIG_HOLD));
|
|
|
|
#if defined(__LP64__)
|
|
|
|
sigset_t set;
|
|
|
|
ASSERT_EQ(0, sigprocmask(SIG_BLOCK, nullptr, &set));
|
|
|
|
ASSERT_TRUE(sigismember(&set, SIGRTMIN));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
ASSERT_EQ(SIG_HOLD, sigset(SIGRTMIN, signal_handler));
|
|
|
|
ASSERT_EQ(signal_handler, sigset(SIGRTMIN, signal_handler));
|
|
|
|
ASSERT_EQ(0, signal_handler_call_count);
|
|
|
|
raise(SIGRTMIN);
|
|
|
|
ASSERT_EQ(1, signal_handler_call_count);
|
|
|
|
}
|
|
|
|
|
2016-02-29 21:35:33 +01:00
|
|
|
TEST(signal, sigset) {
|
2018-01-25 03:54:38 +01:00
|
|
|
static int signal_handler_call_count = 0;
|
|
|
|
auto signal_handler = [](int) { signal_handler_call_count++; };
|
|
|
|
ScopedSignalHandler ssh{SIGALRM, signal_handler};
|
|
|
|
SignalMaskRestorer mask_restorer;
|
2016-02-29 21:35:33 +01:00
|
|
|
|
2018-01-25 03:54:38 +01:00
|
|
|
ASSERT_EQ(0, signal_handler_call_count);
|
|
|
|
raise(SIGALRM);
|
|
|
|
ASSERT_EQ(1, signal_handler_call_count);
|
2016-02-29 21:35:33 +01:00
|
|
|
|
2018-01-25 03:54:38 +01:00
|
|
|
// Block SIGALRM so the next sigset(SIGARLM) call will return SIG_HOLD.
|
2016-02-29 21:35:33 +01:00
|
|
|
sigset_t set;
|
2018-01-25 03:54:38 +01:00
|
|
|
sigemptyset(&set);
|
|
|
|
sigaddset(&set, SIGALRM);
|
|
|
|
ASSERT_EQ(0, sigprocmask(SIG_BLOCK, &set, nullptr));
|
|
|
|
|
|
|
|
sigemptyset(&set);
|
|
|
|
ASSERT_EQ(SIG_HOLD, sigset(SIGALRM, signal_handler));
|
2016-02-29 21:35:33 +01:00
|
|
|
ASSERT_EQ(0, sigprocmask(SIG_BLOCK, nullptr, &set));
|
|
|
|
EXPECT_FALSE(sigismember(&set, SIGALRM));
|
|
|
|
|
2018-01-25 03:54:38 +01:00
|
|
|
ASSERT_EQ(signal_handler, sigset(SIGALRM, SIG_IGN));
|
2016-02-29 21:35:33 +01:00
|
|
|
ASSERT_EQ(0, sigprocmask(SIG_BLOCK, nullptr, &set));
|
|
|
|
EXPECT_FALSE(sigismember(&set, SIGALRM));
|
|
|
|
|
|
|
|
ASSERT_EQ(SIG_IGN, sigset(SIGALRM, SIG_DFL));
|
|
|
|
ASSERT_EQ(0, sigprocmask(SIG_BLOCK, nullptr, &set));
|
|
|
|
EXPECT_FALSE(sigismember(&set, SIGALRM));
|
|
|
|
|
|
|
|
ASSERT_EQ(SIG_DFL, sigset(SIGALRM, SIG_HOLD));
|
|
|
|
ASSERT_EQ(0, sigprocmask(SIG_BLOCK, nullptr, &set));
|
|
|
|
EXPECT_TRUE(sigismember(&set, SIGALRM));
|
|
|
|
}
|
2017-07-12 00:00:17 +02:00
|
|
|
|
|
|
|
TEST(signal, killpg_EINVAL) {
|
|
|
|
// POSIX leaves pgrp <= 1 undefined, but glibc fails with EINVAL for < 0
|
|
|
|
// and passes 0 through to kill(2).
|
|
|
|
errno = 0;
|
|
|
|
ASSERT_EQ(-1, killpg(-1, SIGKILL));
|
2023-09-21 23:11:19 +02:00
|
|
|
ASSERT_ERRNO(EINVAL);
|
2017-07-12 00:00:17 +02:00
|
|
|
}
|