blob: 3f8d151aeff412921a96b903640b0c1356c1a2f7 [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 * kill03.c
23 *
24 * DESCRIPTION
25 * Test case to check that kill fails when given an invalid signal.
26 *
27 * ALGORITHM
28 * call setup
29 * loop if the -i option was given
30 * fork a child
31 * execute the kill system call with an invalid signal
32 * check the return value
33 * if return value is not -1
34 * issue a FAIL message, break remaining tests and cleanup
35 * if we are doing functional testing
36 * if the errno was set to 22 (invalid argument).
37 * issue a PASS message
38 * otherwise
39 * issue a FAIL message
40 * call cleanup
41 *
42 * USAGE
43 * kill03 [-c n] [-f] [-i n] [-I x] [-P x] [-t]
44 * where, -c n : Run n copies concurrently.
45 * -f : Turn off functionality Testing.
46 * -i n : Execute test n times.
47 * -I x : Execute test for x seconds.
48 * -P x : Pause for x seconds between iterations.
49 * -t : Turn on syscall timing.
50 *
51 * HISTORY
52 * 07/2001 Ported by Wayne Boyer
53 *
54 * RESTRICTIONS
55 * none
56 */
57
58#include "test.h"
plars865695b2001-08-27 22:15:12 +000059
60#include <signal.h>
61#include <errno.h>
62#include <sys/wait.h>
63
64void cleanup(void);
65void setup(void);
robbiewd34d5812005-07-11 22:28:09 +000066void do_child(void);
plars865695b2001-08-27 22:15:12 +000067
subrata_modak56207ce2009-03-23 13:35:39 +000068char *TCID = "kill03";
plars865695b2001-08-27 22:15:12 +000069int TST_TOTAL = 1;
70
plars865695b2001-08-27 22:15:12 +000071#define TEST_SIG 2000
72
robbiewb8360ee2003-03-26 22:04:58 +000073int main(int ac, char **av)
plars865695b2001-08-27 22:15:12 +000074{
Cyril Hrubis89af32a2012-10-24 16:39:11 +020075 int lc;
Cyril Hrubis0b9589f2014-05-27 17:40:33 +020076 const char *msg;
subrata_modak56207ce2009-03-23 13:35:39 +000077 pid_t pid;
robbiewb8360ee2003-03-26 22:04:58 +000078 int exno, status;
plars865695b2001-08-27 22:15:12 +000079
Garrett Cooper45e285d2010-11-22 12:19:25 -080080 if ((msg = parse_opts(ac, av, NULL, NULL)) != NULL) {
Garrett Cooper60fa8012010-11-22 13:50:58 -080081 tst_brkm(TBROK, NULL, "OPTION PARSING ERROR - %s", msg);
plars865695b2001-08-27 22:15:12 +000082 }
robbiewd34d5812005-07-11 22:28:09 +000083#ifdef UCLINUX
84 maybe_run_child(&do_child, "");
85#endif
86
Cyril Hrubis605fa332015-02-04 13:11:20 +010087 setup();
plars865695b2001-08-27 22:15:12 +000088
89 /* The following loop checks looping state if -i option given */
90 for (lc = 0; TEST_LOOPING(lc); lc++) {
91
Caspar Zhangd59a6592013-03-07 14:59:12 +080092 /* reset tst_count in case we are looping */
93 tst_count = 0;
plars865695b2001-08-27 22:15:12 +000094 status = 1;
95 exno = 1;
robbiewd34d5812005-07-11 22:28:09 +000096 pid = FORK_OR_VFORK();
plars865695b2001-08-27 22:15:12 +000097 if (pid < 0) {
98 tst_brkm(TBROK, cleanup, "Fork of child failed");
99 } else if (pid == 0) {
robbiewd34d5812005-07-11 22:28:09 +0000100#ifdef UCLINUX
101 if (self_exec(av[0], "") < 0) {
subrata_modak56207ce2009-03-23 13:35:39 +0000102 tst_brkm(TBROK, cleanup,
103 "self_exec of child failed");
robbiewd34d5812005-07-11 22:28:09 +0000104 }
105#else
106 do_child();
107#endif
plars865695b2001-08-27 22:15:12 +0000108 } else {
109 TEST(kill(pid, TEST_SIG));
110 kill(pid, SIGKILL);
111 waitpid(pid, &status, 0);
112 }
113
114 if (TEST_RETURN != -1) {
115 tst_brkm(TFAIL, cleanup, "%s failed - errno = %d : %s "
vapierae542852009-08-28 13:22:51 +0000116 "Expected a return value of -1 got %ld",
subrata_modak56207ce2009-03-23 13:35:39 +0000117 TCID, TEST_ERRNO, strerror(TEST_ERRNO),
118 TEST_RETURN);
Wanlong Gao354ebb42012-12-07 10:10:04 +0800119 }
plars865695b2001-08-27 22:15:12 +0000120
Cyril Hrubise38b9612014-06-02 17:20:57 +0200121 /*
122 * Check to see if the errno was set to the expected
123 * value of 22 : EINVAL.
124 */
Cyril Hrubise38b9612014-06-02 17:20:57 +0200125 if (TEST_ERRNO == EINVAL) {
126 tst_resm(TPASS, "errno set to %d : %s, as "
127 "expected", TEST_ERRNO,
128 strerror(TEST_ERRNO));
129 } else {
130 tst_resm(TFAIL, "errno set to %d : %s expected "
131 "%d : %s", TEST_ERRNO,
132 strerror(TEST_ERRNO), 22,
133 strerror(22));
plars865695b2001-08-27 22:15:12 +0000134 }
135 }
plars865695b2001-08-27 22:15:12 +0000136
Cyril Hrubise38b9612014-06-02 17:20:57 +0200137 cleanup();
Garrett Cooper7d0a4a52010-12-16 10:05:08 -0800138 tst_exit();
plars865695b2001-08-27 22:15:12 +0000139}
140
robbiewd34d5812005-07-11 22:28:09 +0000141/*
142 * do_child()
143 */
Mike Frysingerc57fba52014-04-09 18:56:30 -0400144void do_child(void)
robbiewd34d5812005-07-11 22:28:09 +0000145{
146 int exno = 1;
subrata_modakbdbaec52009-02-26 12:14:51 +0000147
robbiewd34d5812005-07-11 22:28:09 +0000148 pause();
Wanlong Gao354ebb42012-12-07 10:10:04 +0800149 exit(exno);
robbiewd34d5812005-07-11 22:28:09 +0000150}
plars865695b2001-08-27 22:15:12 +0000151
152/*
153 * setup() - performs all ONE TIME setup for this test
154 */
subrata_modak56207ce2009-03-23 13:35:39 +0000155void setup(void)
plars865695b2001-08-27 22:15:12 +0000156{
Garrett Cooper2c282152010-12-16 00:55:50 -0800157
plars865695b2001-08-27 22:15:12 +0000158 TEST_PAUSE;
159}
160
161/*
162 * cleanup() - performs all the ONE TIME cleanup for this test at completion
163 * or premature exit.
164 */
subrata_modak56207ce2009-03-23 13:35:39 +0000165void cleanup(void)
plars865695b2001-08-27 22:15:12 +0000166{
plars865695b2001-08-27 22:15:12 +0000167
Chris Dearmanec6edca2012-10-17 19:54:01 -0700168}