blob: d86333fec7bccb07bdd42880f63079a24ba7c8f6 [file] [log] [blame]
plars865695b2001-08-27 22:15:12 +00001/*
2 *
3 * Copyright (c) International Business Machines Corp., 2001
4 *
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/*
21 * NAME
22 * setitimer01.c
23 *
24 * DESCRIPTION
25 * setitimer01 - check that a resonable setitimer() call succeeds.
26 *
27 * ALGORITHM
28 * loop if that option was specified
29 * allocate needed space and set up needed values
30 * issue the system call
31 * check the errno value
32 * issue a PASS message if we get zero
33 * otherwise, the tests fails
34 * issue a FAIL message
35 * break any remaining tests
36 * call cleanup
37 *
38 * USAGE: <for command-line>
39 * setitimer01 [-c n] [-f] [-i n] [-I x] [-P x] [-t]
40 * where, -c n : Run n copies concurrently.
41 * -f : Turn off functionality Testing.
42 * -i n : Execute test n times.
43 * -I x : Execute test for x seconds.
44 * -P x : Pause for x seconds between iterations.
45 * -t : Turn on syscall timing.
46 *
47 * HISTORY
48 * 03/2001 - Written by Wayne Boyer
49 *
50 * RESTRICTIONS
51 * none
52 */
53
54#include "test.h"
plars865695b2001-08-27 22:15:12 +000055
56#include <errno.h>
57#include <sys/time.h>
58
59void cleanup(void);
60void setup(void);
61
subrata_modak56207ce2009-03-23 13:35:39 +000062char *TCID = "setitimer01";
plars865695b2001-08-27 22:15:12 +000063int TST_TOTAL = 1;
plars865695b2001-08-27 22:15:12 +000064
65#define SEC0 0
66#define SEC1 20
67#define SEC2 40
68
plars74948ad2002-11-14 16:16:14 +000069int main(int ac, char **av)
plars865695b2001-08-27 22:15:12 +000070{
Cyril Hrubis89af32a2012-10-24 16:39:11 +020071 int lc;
Cyril Hrubis0b9589f2014-05-27 17:40:33 +020072 const char *msg;
plars865695b2001-08-27 22:15:12 +000073 struct itimerval *value, *ovalue;
74
Garrett Cooper45e285d2010-11-22 12:19:25 -080075 if ((msg = parse_opts(ac, av, NULL, NULL)) != NULL) {
Garrett Cooper60fa8012010-11-22 13:50:58 -080076 tst_brkm(TBROK, NULL, "OPTION PARSING ERROR - %s", msg);
plars865695b2001-08-27 22:15:12 +000077 }
78
subrata_modak56207ce2009-03-23 13:35:39 +000079 setup(); /* global setup */
plars865695b2001-08-27 22:15:12 +000080
81 /* The following loop checks looping state if -i option given */
82
83 for (lc = 0; TEST_LOOPING(lc); lc++) {
Caspar Zhangd59a6592013-03-07 14:59:12 +080084 /* reset tst_count in case we are looping */
85 tst_count = 0;
plars865695b2001-08-27 22:15:12 +000086
87 /* allocate some space for the timer structures */
subrata_modakbdbaec52009-02-26 12:14:51 +000088
Cyril Hrubisd218f342014-09-23 13:14:56 +020089 if ((value = malloc((size_t)sizeof(struct itimerval))) ==
subrata_modak56207ce2009-03-23 13:35:39 +000090 NULL) {
plars865695b2001-08-27 22:15:12 +000091 tst_brkm(TBROK, cleanup, "value malloc failed");
92 }
subrata_modakbdbaec52009-02-26 12:14:51 +000093
Cyril Hrubisd218f342014-09-23 13:14:56 +020094 if ((ovalue = malloc((size_t)sizeof(struct itimerval))) ==
subrata_modak56207ce2009-03-23 13:35:39 +000095 NULL) {
plars865695b2001-08-27 22:15:12 +000096 tst_brkm(TBROK, cleanup, "ovalue malloc failed");
97 }
subrata_modakbdbaec52009-02-26 12:14:51 +000098
plars865695b2001-08-27 22:15:12 +000099 /* set up some reasonable values */
subrata_modakbdbaec52009-02-26 12:14:51 +0000100
plars865695b2001-08-27 22:15:12 +0000101 value->it_value.tv_sec = SEC1;
102 value->it_value.tv_usec = SEC0;
mreed1041509cd2006-03-22 01:32:44 +0000103 value->it_interval.tv_sec = 0;
subrata_modakbdbaec52009-02-26 12:14:51 +0000104 value->it_interval.tv_usec = 0;
plars865695b2001-08-27 22:15:12 +0000105 /*
106 * issue the system call with the TEST() macro
107 * ITIMER_REAL = 0, ITIMER_VIRTUAL = 1 and ITIMER_PROF = 2
108 */
subrata_modakbdbaec52009-02-26 12:14:51 +0000109
plars865695b2001-08-27 22:15:12 +0000110 TEST(setitimer(ITIMER_REAL, value, ovalue));
subrata_modakbdbaec52009-02-26 12:14:51 +0000111
plars865695b2001-08-27 22:15:12 +0000112 if (TEST_RETURN != 0) {
113 tst_resm(TFAIL, "call failed - errno = %d - %s",
114 TEST_ERRNO, strerror(TEST_ERRNO));
115 continue;
116 }
subrata_modakbdbaec52009-02-26 12:14:51 +0000117
Cyril Hrubise38b9612014-06-02 17:20:57 +0200118 /*
119 * call setitimer again with new values.
120 * the old values should be stored in ovalue
121 */
122 value->it_value.tv_sec = SEC2;
123 value->it_value.tv_usec = SEC0;
plars865695b2001-08-27 22:15:12 +0000124
Cyril Hrubise38b9612014-06-02 17:20:57 +0200125 if ((setitimer(ITIMER_REAL, value, ovalue)) == -1) {
126 tst_brkm(TBROK, cleanup, "second setitimer "
127 "call failed");
128 }
plars865695b2001-08-27 22:15:12 +0000129
Cyril Hrubise38b9612014-06-02 17:20:57 +0200130 if (ovalue->it_value.tv_sec <= SEC1) {
131 tst_resm(TPASS, "functionality is correct");
plars865695b2001-08-27 22:15:12 +0000132 } else {
Cyril Hrubise38b9612014-06-02 17:20:57 +0200133 tst_brkm(TFAIL, cleanup, "old timer value is "
134 "not equal to expected value");
plars865695b2001-08-27 22:15:12 +0000135 }
136 }
137
138 cleanup();
Garrett Cooper1e6f5a62010-12-19 09:58:10 -0800139 tst_exit();
plars865695b2001-08-27 22:15:12 +0000140}
141
142/*
143 * setup() - performs all the ONE TIME setup for this test.
144 */
subrata_modak56207ce2009-03-23 13:35:39 +0000145void setup(void)
plars865695b2001-08-27 22:15:12 +0000146{
Garrett Cooper2c282152010-12-16 00:55:50 -0800147
plars865695b2001-08-27 22:15:12 +0000148 tst_sig(NOFORK, DEF_HANDLER, cleanup);
149
plars865695b2001-08-27 22:15:12 +0000150 TEST_PAUSE;
151}
152
153/*
154 * cleanup() - performs all the ONE TIME cleanup for this test at completion
155 * or premature exit.
156 */
subrata_modak56207ce2009-03-23 13:35:39 +0000157void cleanup(void)
plars865695b2001-08-27 22:15:12 +0000158{
plars865695b2001-08-27 22:15:12 +0000159
Chris Dearmanec6edca2012-10-17 19:54:01 -0700160}