* [LTP] [PATCH 1/2] safe_macros: Add SAFE_SIGFILLSET()
@ 2020-08-15 5:13 Xiao Yang
2020-08-15 5:13 ` [LTP] [PATCH 2/2] syscalls/sigsuspend01.c: Convert to the new API Xiao Yang
0 siblings, 1 reply; 4+ messages in thread
From: Xiao Yang @ 2020-08-15 5:13 UTC (permalink / raw)
To: ltp
Signed-off-by: Xiao Yang <yangx.jy@cn.fujitsu.com>
---
include/tst_safe_macros.h | 5 +++++
lib/tst_safe_macros.c | 10 ++++++++++
2 files changed, 15 insertions(+)
diff --git a/include/tst_safe_macros.h b/include/tst_safe_macros.h
index 45fd0500a..000381c4f 100644
--- a/include/tst_safe_macros.h
+++ b/include/tst_safe_macros.h
@@ -446,6 +446,11 @@ void safe_sigemptyset(const char *file, const int lineno,
#define SAFE_SIGEMPTYSET(sigs) \
safe_sigemptyset(__FILE__, __LINE__, (sigs))
+void safe_sigfillset(const char *file, const int lineno,
+ sigset_t *sigs);
+#define SAFE_SIGFILLSET(sigs) \
+ safe_sigfillset(__FILE__, __LINE__, (sigs))
+
void safe_sigprocmask(const char *file, const int lineno,
int how, sigset_t *set, sigset_t *oldset);
#define SAFE_SIGPROCMASK(how, set, oldset) \
diff --git a/lib/tst_safe_macros.c b/lib/tst_safe_macros.c
index f18cb4625..25c37dfd8 100644
--- a/lib/tst_safe_macros.c
+++ b/lib/tst_safe_macros.c
@@ -166,6 +166,16 @@ void safe_sigemptyset(const char *file, const int lineno,
tst_brk_(file, lineno, TBROK | TERRNO, "sigemptyset() failed");
}
+void safe_sigfillset(const char *file, const int lineno,
+ sigset_t *sigs)
+{
+ int rval;
+
+ rval = sigfillset(sigs);
+ if (rval == -1)
+ tst_brk_(file, lineno, TBROK | TERRNO, "sigfillset() failed");
+}
+
static const char *strhow(int how)
{
switch (how) {
--
2.21.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [LTP] [PATCH 2/2] syscalls/sigsuspend01.c: Convert to the new API
2020-08-15 5:13 [LTP] [PATCH 1/2] safe_macros: Add SAFE_SIGFILLSET() Xiao Yang
@ 2020-08-15 5:13 ` Xiao Yang
2020-08-17 14:33 ` Cyril Hrubis
0 siblings, 1 reply; 4+ messages in thread
From: Xiao Yang @ 2020-08-15 5:13 UTC (permalink / raw)
To: ltp
Also add an extra check point:
The process can unblock and receive SIGALRM by sigsuspend()
even if sigprocmask() has blocked SIGALRM.
Signed-off-by: Xiao Yang <yangx.jy@cn.fujitsu.com>
---
.../kernel/syscalls/sigsuspend/sigsuspend01.c | 237 ++++--------------
1 file changed, 53 insertions(+), 184 deletions(-)
diff --git a/testcases/kernel/syscalls/sigsuspend/sigsuspend01.c b/testcases/kernel/syscalls/sigsuspend/sigsuspend01.c
index a846f6330..e96fb837c 100644
--- a/testcases/kernel/syscalls/sigsuspend/sigsuspend01.c
+++ b/testcases/kernel/syscalls/sigsuspend/sigsuspend01.c
@@ -1,212 +1,81 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
/*
+ * Copyright (c) International Business Machines Corp., 2001
*
- * Copyright (c) International Business Machines Corp., 2001
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
- * the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-/*
- * Test Name: sigsuspend01
- *
- * Test Description:
- * Verify that sigsuspend() succeeds to change process's current signal
- * mask with the specified signal mask and suspends the process execution
- * until the delivery of a signal.
- *
- * Expected Result:
- * sigsuspend() should return after the execution of signal catching
- * function and the previous signal mask should be restored.
- *
- * Algorithm:
- * Setup:
- * Setup signal handling.
- * Create temporary directory.
- * Pause for SIGUSR1 if option specified.
- *
- * Test:
- * Loop if the proper options are given.
- * Execute system call
- * Check return code, if system call failed (return=-1)
- * Log the errno and Issue a FAIL message.
- * Otherwise,
- * Verify the Functionality of system call
- * if successful,
- * Issue Functionality-Pass message.
- * Otherwise,
- * Issue Functionality-Fail message.
- * Cleanup:
- * Print errno log and/or timing stats if options given
- * Delete the temporary directory created.
- *
- * Usage: <for command-line>
- * sigsuspend01 [-c n] [-e] [-f] [-i n] [-I x] [-p x] [-t]
- * where, -c n : Run n copies concurrently.
- * -e : Turn on errno logging.
- * -f : Turn off functionality Testing.
- * -i n : Execute test n times.
- * -I x : Execute test for x seconds.
- * -P x : Pause for x seconds between iterations.
- * -t : Turn on syscall timing.
- *
- * History
- * 07/2001 John George
- * -Ported
- *
- * Restrictions:
- * None.
+ * Description:
+ * Verify the basic function of sigsuspend():
+ * 1) sigsuspend() can replace process's current signal mask
+ * by the specified signal mask and suspend the process
+ * execution until the delivery of a signal.
+ * 2) sigsuspend() should return after the execution of signal
+ * handler and restore the previous signal mask.
*/
-#include <stdio.h>
-#include <unistd.h>
-#include <sys/types.h>
#include <errno.h>
-#include <fcntl.h>
+#include <unistd.h>
#include <string.h>
#include <signal.h>
-#include <ucontext.h>
-
-#include "test.h"
-char *TCID = "sigsuspend01";
-int TST_TOTAL = 1;
+#include "tst_test.h"
-struct sigaction sa_new; /* struct to hold signal info */
-sigset_t signalset; /* signal set to hold signal lists */
-sigset_t sigset1;
-sigset_t sigset2;
+static sigset_t signalset, sigset1, sigset2;
+static volatile sig_atomic_t alarm_num;
-void setup(); /* Main setup function of test */
-void cleanup(); /* cleanup function for the test */
-void sig_handler(int sig); /* signal catching function */
-
-int main(int ac, char **av)
+static void sig_handler(int sig)
{
- int lc;
-
- tst_parse_opts(ac, av, NULL, NULL);
-
- setup();
-
- for (lc = 0; TEST_LOOPING(lc); lc++) {
-
- tst_count = 0;
-
- /* Set the alarm timer */
- alarm(5);
-
- /*
- * Call sigsuspend() to replace current signal mask
- * of the process and suspend process execution till
- * receipt of a signal 'SIGALRM'.
- */
- TEST(sigsuspend(&signalset));
-
- /* Reset the alarm timer */
- alarm(0);
-
- if ((TEST_RETURN == -1) && (TEST_ERRNO == EINTR)) {
- if (sigprocmask(SIG_UNBLOCK, 0, &sigset2) == -1) {
- tst_resm(TFAIL, "sigprocmask() Failed "
- "to get previous signal mask "
- "of process");
- } else if (memcmp(&sigset1, &sigset2,
- sizeof(unsigned long))) {
- tst_resm(TFAIL, "sigsuspend failed to "
- "preserve signal mask");
- } else {
- tst_resm(TPASS, "Functionality of "
- "sigsuspend() successful");
- }
- } else {
- tst_resm(TFAIL | TTERRNO,
- "sigsuspend() returned value %ld",
- TEST_RETURN);
- }
-
- tst_count++; /* incr TEST_LOOP counter */
- }
-
- cleanup();
- tst_exit();
+ alarm_num = sig;
}
-/*
- * void
- * setup() - performs all ONE TIME setup for this test.
- * Initialise signal set with the list that includes/excludes
- * all system-defined signals.
- * Set the signal handler to catch SIGALRM signal.
- * Get the current signal mask of test process using sigprocmask().
- */
-void setup(void)
+static void verify_sigsuspend(void)
{
+ alarm_num = 0;
- tst_sig(FORK, DEF_HANDLER, cleanup);
+ SAFE_SIGFILLSET(&sigset2);
- TEST_PAUSE;
+ alarm(1);
- /*
- * Initialise the signal sets with the list that
- * excludes/includes all system-defined signals.
- */
- if (sigemptyset(&signalset) == -1) {
- tst_brkm(TFAIL, cleanup,
- "sigemptyset() failed, errno=%d : %s",
- errno, strerror(errno));
- }
- if (sigfillset(&sigset2) == -1) {
- tst_brkm(TFAIL, cleanup,
- "sigfillset() failed, errno=%d : %s",
- errno, strerror(errno));
+ /* Unblock SIGALRM */
+ TEST(sigsuspend(&signalset));
+
+ alarm(0);
+
+ if (TST_RET != -1 || TST_ERR != EINTR) {
+ tst_res(TFAIL | TTERRNO,
+ "sigsuspend() returned value %ld", TST_RET);
+ return;
}
- /* Set the signal handler function to catch the signal */
- sa_new.sa_handler = sig_handler;
- if (sigaction(SIGALRM, &sa_new, 0) == -1) {
- tst_brkm(TFAIL, cleanup,
- "sigaction() failed, errno=%d : %s",
- errno, strerror(errno));
+ if (alarm_num != SIGALRM) {
+ tst_res(TFAIL, "sigsuspend() didn't unblock SIGALRM");
+ return;
}
- /* Read the test process's current signal mask. */
- if (sigprocmask(SIG_UNBLOCK, 0, &sigset1) == -1) {
- tst_brkm(TFAIL, cleanup,
- "sigprocmask() Failed, errno=%d : %s",
- errno, strerror(errno));
+ SAFE_SIGPROCMASK(0, NULL, &sigset2);
+ if (memcmp(&sigset1, &sigset2, sizeof(unsigned long))) {
+ tst_res(TFAIL, "sigsuspend() failed to "
+ "restore the previous signal mask");
+ return;
}
-}
-/*
- * void
- * sig_handler(int sig) - Signal catching function.
- * This function gets executed when the signal SIGALRM is delivered
- * to the test process after the expiry of alarm time and the signal was
- * trapped by sigaction() to execute this function.
- *
- * This function simply returns without doing anything.
- */
-void sig_handler(int sig)
-{
+ tst_res(TPASS, "sigsuspend() succeeded");
}
-/*
- * void
- * cleanup() - performs all ONE TIME cleanup for this test at
- * completion or premature exit.
- */
-void cleanup(void)
+static void setup(void)
{
+ struct sigaction sa_new;
+ SAFE_SIGEMPTYSET(&signalset);
+ SAFE_SIGEMPTYSET(&sigset1);
+ SAFE_SIGADDSET(&sigset1, SIGALRM);
+
+ sa_new.sa_handler = sig_handler;
+ SAFE_SIGACTION(SIGALRM, &sa_new, 0);
+
+ /* Block SIGALRM */
+ SAFE_SIGPROCMASK(SIG_SETMASK, &sigset1, NULL);
}
+
+static struct tst_test test = {
+ .setup = setup,
+ .test_all = verify_sigsuspend,
+};
--
2.21.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [LTP] [PATCH 2/2] syscalls/sigsuspend01.c: Convert to the new API
2020-08-15 5:13 ` [LTP] [PATCH 2/2] syscalls/sigsuspend01.c: Convert to the new API Xiao Yang
@ 2020-08-17 14:33 ` Cyril Hrubis
2020-08-17 15:00 ` Xiao Yang
0 siblings, 1 reply; 4+ messages in thread
From: Cyril Hrubis @ 2020-08-17 14:33 UTC (permalink / raw)
To: ltp
Hi!
Pushed with a few fixes, thanks.
> +static void setup(void)
> {
> + struct sigaction sa_new;
>
> + SAFE_SIGEMPTYSET(&signalset);
> + SAFE_SIGEMPTYSET(&sigset1);
> + SAFE_SIGADDSET(&sigset1, SIGALRM);
> +
> + sa_new.sa_handler = sig_handler;
> + SAFE_SIGACTION(SIGALRM, &sa_new, 0);
Here you were passing random data to the sigaction() function, as the
sa_new was created on a stack and only sa_handler was set.
Which, for instance, breaks the test in a case of the -i 2 option, since
if you were unlucky the SA_RESETHAND was set in the sa_new and the
signal handler was uninstalled after the first signal was handled and
the test process was killed by SIGALRM when the signal arrived for a
second time.
In short there was all kind of mess passed down the call, on strace it
looked as:
[pid 3245] rt_sigaction(SIGALRM, {sa_handler=0x557469b59c20, sa_mask=[HUP INT QUIT ILL ABRT USR1 ALRM TERM CHLD TSTP TTOU URG VTALRM PROF WINCH PWR SYS RT_1 RT_2 RT_3 RT_4 RT_6 RT_10 RT_12 RT_13 RT_14 RT_18 RT_20 RT_21 RT_22], sa_flags=SA_RESTORER|SA_ONSTACK|SA_RESTART|SA_NODEFER|SA_RESETHAND|0xe9e4e8, sa_restorer=0x7f26dc368b40}, NULL, 8) = 0
So I changed it to:
struct sigaction sa_new = {
.sa_handler = sig_handler
};
Which will clears the rest of the structure.
> + /* Block SIGALRM */
> + SAFE_SIGPROCMASK(SIG_SETMASK, &sigset1, NULL);
> }
> +
> +static struct tst_test test = {
> + .setup = setup,
> + .test_all = verify_sigsuspend,
> +};
--
Cyril Hrubis
chrubis@suse.cz
^ permalink raw reply [flat|nested] 4+ messages in thread
* [LTP] [PATCH 2/2] syscalls/sigsuspend01.c: Convert to the new API
2020-08-17 14:33 ` Cyril Hrubis
@ 2020-08-17 15:00 ` Xiao Yang
0 siblings, 0 replies; 4+ messages in thread
From: Xiao Yang @ 2020-08-17 15:00 UTC (permalink / raw)
To: ltp
On 8/17/20 10:33 PM, Cyril Hrubis wrote:
> Hi!
> Pushed with a few fixes, thanks.
>
>> +static void setup(void)
>> {
>> + struct sigaction sa_new;
>>
>> + SAFE_SIGEMPTYSET(&signalset);
>> + SAFE_SIGEMPTYSET(&sigset1);
>> + SAFE_SIGADDSET(&sigset1, SIGALRM);
>> +
>> + sa_new.sa_handler = sig_handler;
>> + SAFE_SIGACTION(SIGALRM, &sa_new, 0);
> Here you were passing random data to the sigaction() function, as the
> sa_new was created on a stack and only sa_handler was set.
>
> Which, for instance, breaks the test in a case of the -i 2 option, since
> if you were unlucky the SA_RESETHAND was set in the sa_new and the
> signal handler was uninstalled after the first signal was handled and
> the test process was killed by SIGALRM when the signal arrived for a
> second time.
>
> In short there was all kind of mess passed down the call, on strace it
> looked as:
>
> [pid 3245] rt_sigaction(SIGALRM, {sa_handler=0x557469b59c20, sa_mask=[HUP INT QUIT ILL ABRT USR1 ALRM TERM CHLD TSTP TTOU URG VTALRM PROF WINCH PWR SYS RT_1 RT_2 RT_3 RT_4 RT_6 RT_10 RT_12 RT_13 RT_14 RT_18 RT_20 RT_21 RT_22], sa_flags=SA_RESTORER|SA_ONSTACK|SA_RESTART|SA_NODEFER|SA_RESETHAND|0xe9e4e8, sa_restorer=0x7f26dc368b40}, NULL, 8) = 0
>
> So I changed it to:
>
> struct sigaction sa_new = {
> .sa_handler = sig_handler
> };
>
> Which will clears the rest of the structure.
Hi Cyril,
Got it, thanks a lot for the detailed explanation. :-)
Best Regards,
Xiao Yang
>
>> + /* Block SIGALRM */
>> + SAFE_SIGPROCMASK(SIG_SETMASK, &sigset1, NULL);
>> }
>> +
>> +static struct tst_test test = {
>> + .setup = setup,
>> + .test_all = verify_sigsuspend,
>> +};
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2020-08-17 15:00 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-08-15 5:13 [LTP] [PATCH 1/2] safe_macros: Add SAFE_SIGFILLSET() Xiao Yang
2020-08-15 5:13 ` [LTP] [PATCH 2/2] syscalls/sigsuspend01.c: Convert to the new API Xiao Yang
2020-08-17 14:33 ` Cyril Hrubis
2020-08-17 15:00 ` Xiao Yang
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.