blob: bb4e78aeb3b195fb8ac163e6afd4b1de2fb1c731 [file] [log] [blame]
plars865695b2001-08-27 22:15:12 +00001/*
2 *
robbiewb1dc3052005-06-07 14:11:44 +00003 * Copyright (c) International Business Machines Corp., 2001,2005
plars865695b2001-08-27 22:15:12 +00004 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
13 * the GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
Wanlong Gao4548c6c2012-10-19 18:03:36 +080017 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
plars865695b2001-08-27 22:15:12 +000018 */
19
20/*
nstraz6a10c822001-11-13 18:06:36 +000021 * Test Name: alarm05
plars865695b2001-08-27 22:15:12 +000022 *
23 * Test Description:
24 * Check the functionality of the Alarm system call when the time input
25 * parameter is non zero.
26 *
27 * Expected Result:
subrata_modak4bb656a2009-02-26 12:02:09 +000028 * The return value of the alarm system call should be equal to the
plars865695b2001-08-27 22:15:12 +000029 * amount previously remaining in the alarm clock.
30 * A SIGALRM signal should be received after the specified amount of
31 * time has elapsed.
32 *
33 * Algorithm:
34 * Setup:
35 * Setup signal handling.
36 * Pause for SIGUSR1 if option specified.
37 *
38 * Test:
39 * Loop if the proper options are given.
40 * Execute system call
41 * Check return code, if system call failed (return=-1)
42 * Log the errno and Issue a FAIL message.
43 * Otherwise,
subrata_modakbdbaec52009-02-26 12:14:51 +000044 * Verify the Functionality of system call
plars865695b2001-08-27 22:15:12 +000045 * if successful,
46 * Issue Functionality-Pass message.
47 * Otherwise,
48 * Issue Functionality-Fail message.
49 * Cleanup:
50 * Print errno log and/or timing stats if options given
51 *
52 * Usage: <for command-line>
nstraz6a10c822001-11-13 18:06:36 +000053 * alarm05 [-c n] [-f] [-i n] [-I x] [-P x] [-t]
plars865695b2001-08-27 22:15:12 +000054 * where, -c n : Run n copies concurrently.
55 * -f : Turn off functionality Testing.
56 * -i n : Execute test n times.
57 * -I x : Execute test for x seconds.
58 * -P x : Pause for x seconds between iterations.
59 * -t : Turn on syscall timing.
60 *
61 * HISTORY
robbiewb1dc3052005-06-07 14:11:44 +000062 * 06/2005 Test for alarm cleanup by Amos Waterland
plars865695b2001-08-27 22:15:12 +000063 * 07/2001 Ported by Wayne Boyer
64 *
65 * RESTRICTIONS:
66 * None.
67 */
68
69#include <stdio.h>
70#include <unistd.h>
71#include <sys/types.h>
72#include <errno.h>
73#include <string.h>
74#include <signal.h>
75
76#include "test.h"
plars865695b2001-08-27 22:15:12 +000077
Cyril Hrubisfdce7d52013-04-04 18:35:48 +020078char *TCID = "alarm05";
79int TST_TOTAL = 1;
Wanlong Gao354ebb42012-12-07 10:10:04 +080080int alarms_received = 0; /* flag to indicate SIGALRM received or not */
plars865695b2001-08-27 22:15:12 +000081
82void setup(); /* Main setup function of test */
83void cleanup(); /* cleanup function for the test */
84void sigproc(int sig); /* signal catching function */
85
subrata_modak56207ce2009-03-23 13:35:39 +000086int main(int ac, char **av)
plars865695b2001-08-27 22:15:12 +000087{
Cyril Hrubis89af32a2012-10-24 16:39:11 +020088 int lc;
Cyril Hrubis0b9589f2014-05-27 17:40:33 +020089 const char *msg;
plars865695b2001-08-27 22:15:12 +000090 int time_sec1 = 10; /* time for which 1st alarm is set */
91 int time_sec2 = 5; /* time for which 2st alarm is set */
92 int ret_val1, ret_val2; /* return values for alarm() calls */
robbiewb1dc3052005-06-07 14:11:44 +000093 int ret_val3;
plars865695b2001-08-27 22:15:12 +000094 int sleep_time1 = 3; /* waiting time for the signal */
95 int sleep_time2 = 6; /* waiting time for the signal */
subrata_modak56207ce2009-03-23 13:35:39 +000096
Garrett Cooper53740502010-12-16 00:04:01 -080097 if ((msg = parse_opts(ac, av, NULL, NULL)) != NULL)
Garrett Cooper60fa8012010-11-22 13:50:58 -080098 tst_brkm(TBROK, NULL, "OPTION PARSING ERROR - %s", msg);
plars865695b2001-08-27 22:15:12 +000099
plars865695b2001-08-27 22:15:12 +0000100 setup();
101
plars865695b2001-08-27 22:15:12 +0000102 for (lc = 0; TEST_LOOPING(lc); lc++) {
Garrett Cooper2c282152010-12-16 00:55:50 -0800103
Caspar Zhangd59a6592013-03-07 14:59:12 +0800104 tst_count = 0;
plars865695b2001-08-27 22:15:12 +0000105
Garrett Cooper1e6f5a62010-12-19 09:58:10 -0800106 /*
Garrett Cooper6b66d952010-12-17 20:42:35 -0800107 * Reset alarms_received for every iteration, since it has
mreed10d7092352006-07-10 15:50:38 +0000108 * old values from previous iterations (if any) and not
Garrett Cooper6b66d952010-12-17 20:42:35 -0800109 * a value of zero
110 */
Garrett Cooper53740502010-12-16 00:04:01 -0800111 alarms_received = 0;
mreed10d7092352006-07-10 15:50:38 +0000112
subrata_modak4bb656a2009-02-26 12:02:09 +0000113 /*
114 * Call First alarm() with non-zero time parameter
plars865695b2001-08-27 22:15:12 +0000115 * 'time_sec1' to send SIGALRM to the calling process.
116 */
117 TEST(alarm(time_sec1));
118 ret_val1 = TEST_RETURN;
119
120 /* Wait for signal SIGALARM */
121 sleep(sleep_time1);
122
123 /*
124 * Call Second alarm() with non-zero time parameter
125 * 'time_sec2' to send SIGALRM to the calling process.
126 */
127 TEST(alarm(time_sec2));
128 ret_val2 = TEST_RETURN;
129
130 /* Wait for signal SIGALRM */
131 sleep(sleep_time2);
132
133 /*
134 * Check whether the second alarm() call returned
135 * the amount of time previously remaining in the
subrata_modak4bb656a2009-02-26 12:02:09 +0000136 * alarm clock of the calling process, and
plars865695b2001-08-27 22:15:12 +0000137 * sigproc() executed when SIGALRM received by the
Garrett Cooper53740502010-12-16 00:04:01 -0800138 * process, the variable alarms_received is set.
plars865695b2001-08-27 22:15:12 +0000139 */
Cyril Hrubise38b9612014-06-02 17:20:57 +0200140 if ((alarms_received == 1) &&
141 (ret_val2 == (time_sec1 - sleep_time1))) {
robbiewb1dc3052005-06-07 14:11:44 +0000142
Cyril Hrubise38b9612014-06-02 17:20:57 +0200143 /*
144 * Make sure the system cleaned up the alarm
145 * after it delivered it.
146 */
147 TEST(alarm(0));
148 ret_val3 = TEST_RETURN;
robbiewb1dc3052005-06-07 14:11:44 +0000149
Cyril Hrubise38b9612014-06-02 17:20:57 +0200150 if (ret_val3 != 0)
151 tst_resm(TFAIL, "System did not "
152 "clean up delivered " "alarm");
153 else {
154 tst_resm(TPASS, "Functionality of "
155 "alarm(%u) successful",
156 time_sec2);
157 }
158 } else {
159 tst_resm(TFAIL, "alarm(%u) fails, returned %d, "
160 "alarms_received:%d",
161 time_sec2, ret_val2, alarms_received);
162 }
Garrett Cooper2c282152010-12-16 00:55:50 -0800163 }
plars865695b2001-08-27 22:15:12 +0000164
plars865695b2001-08-27 22:15:12 +0000165 cleanup();
Garrett Cooper6b66d952010-12-17 20:42:35 -0800166 tst_exit();
Garrett Cooper53740502010-12-16 00:04:01 -0800167}
plars865695b2001-08-27 22:15:12 +0000168
169/*
170 * setup() - performs all ONE TIME setup for this test.
171 * Setup the signal handler to catch SIGALRM.
172 */
Mike Frysingerc57fba52014-04-09 18:56:30 -0400173void setup(void)
plars865695b2001-08-27 22:15:12 +0000174{
Garrett Cooper2c282152010-12-16 00:55:50 -0800175
plars865695b2001-08-27 22:15:12 +0000176 tst_sig(NOFORK, DEF_HANDLER, cleanup);
177
plars865695b2001-08-27 22:15:12 +0000178 TEST_PAUSE;
179
180 /* Set the signal catching function */
181 if (signal(SIGALRM, sigproc) == SIG_ERR) {
182 tst_brkm(TFAIL, cleanup,
subrata_modak56207ce2009-03-23 13:35:39 +0000183 "signal() fails to catch SIGALARM, errno=%d", errno);
plars865695b2001-08-27 22:15:12 +0000184 }
185}
186
plars865695b2001-08-27 22:15:12 +0000187/*
188 * sigproc(int) - This function defines the action that has to be taken
189 * when the SIGALRM signal is caught.
190 * It also sets the variable which is used to check whether the
191 * alarm system call was successful.
192 */
subrata_modak56207ce2009-03-23 13:35:39 +0000193void sigproc(int sig)
plars865695b2001-08-27 22:15:12 +0000194{
Garrett Cooper53740502010-12-16 00:04:01 -0800195 alarms_received++;
plars865695b2001-08-27 22:15:12 +0000196}
197
198/*
199 * void
200 * cleanup() - performs all ONE TIME cleanup for this test at
201 * completion or premature exit.
202 */
Mike Frysingerc57fba52014-04-09 18:56:30 -0400203void cleanup(void)
plars865695b2001-08-27 22:15:12 +0000204{
Chris Dearmanec6edca2012-10-17 19:54:01 -0700205}