blob: 7e83796034fe295df932db648827c1f97ad37eb8 [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 * umask02.c
23 *
24 * DESCRIPTION
25 * Check that umask changes the mask, and that the previous
26 * value of the mask is returned correctly for each value.
27 *
28 * ALGORITHM
29 * For each mask value (9 bits) set mask, and check that the return
30 * corresponds to the previous value set.
31 *
32 * USAGE: <for command-line>
33 * umask02 [-c n] [-e] [-i n] [-I x] [-P x] [-t]
34 * where, -c n : Run n copies concurrently.
35 * -e : Turn on errno logging.
36 * -i n : Execute test n times.
37 * -I x : Execute test for x seconds.
38 * -P x : Pause for x seconds between iterations.
39 * -t : Turn on syscall timing.
40 *
41 * History
42 * 07/2001 John George
43 * -Ported
44 *
45 * Restrictions
46 * None
47 */
48
plars74948ad2002-11-14 16:16:14 +000049#include <sys/types.h>
50#include <sys/stat.h>
51#include <fcntl.h>
plars865695b2001-08-27 22:15:12 +000052#include <stdio.h>
53#include "test.h"
plars865695b2001-08-27 22:15:12 +000054
55char *TCID = "umask02";
56int TST_TOTAL = 1;
plars865695b2001-08-27 22:15:12 +000057
58void setup(void);
59void cleanup(void);
60
plars74948ad2002-11-14 16:16:14 +000061int main(int argc, char **argv)
plars865695b2001-08-27 22:15:12 +000062{
Cyril Hrubis89af32a2012-10-24 16:39:11 +020063 int lc;
Cyril Hrubis0b9589f2014-05-27 17:40:33 +020064 const char *msg;
plars865695b2001-08-27 22:15:12 +000065
66 int uret = 0, i, mskval = 0000;
plarsc11fb732003-07-08 18:51:04 +000067 int failcnt = 0;
plars865695b2001-08-27 22:15:12 +000068
Wanlong Gao354ebb42012-12-07 10:10:04 +080069 if ((msg = parse_opts(argc, argv, NULL, NULL)) != NULL) {
Garrett Cooper60fa8012010-11-22 13:50:58 -080070 tst_brkm(TBROK, NULL, "OPTION PARSING ERROR - %s", msg);
Wanlong Gao354ebb42012-12-07 10:10:04 +080071 }
plars865695b2001-08-27 22:15:12 +000072
73 setup();
74
75 /* Check for looping state if -i option is given */
76 for (lc = 0; TEST_LOOPING(lc); lc++) {
77
Caspar Zhangd59a6592013-03-07 14:59:12 +080078 /* reset tst_count in case we are looping */
79 tst_count = 0;
plars865695b2001-08-27 22:15:12 +000080
81 for (umask(++mskval), i = 1; mskval < 01000;
subrata_modak56207ce2009-03-23 13:35:39 +000082 uret = umask(++mskval), i++) {
plars865695b2001-08-27 22:15:12 +000083 if ((uret != mskval - 1) && (mskval != 0000)) {
plarsc11fb732003-07-08 18:51:04 +000084 failcnt = 1;
85 tst_resm(TFAIL, "umask(%d) returned bad mask "
subrata_modak56207ce2009-03-23 13:35:39 +000086 "value %d.", mskval, uret);
plars865695b2001-08-27 22:15:12 +000087 }
88 }
plarsc11fb732003-07-08 18:51:04 +000089 if (!failcnt)
90 tst_resm(TPASS, "All umask values return correct "
subrata_modak56207ce2009-03-23 13:35:39 +000091 "values");
plars865695b2001-08-27 22:15:12 +000092 }
93 cleanup();
Garrett Cooper7d0a4a52010-12-16 10:05:08 -080094 tst_exit();
robbiew9a66de12003-03-27 22:16:14 +000095
plars865695b2001-08-27 22:15:12 +000096}
97
98/*
99 * setup()
100 * performs all ONE TIME setup for this test
101 */
subrata_modak56207ce2009-03-23 13:35:39 +0000102void setup(void)
plars865695b2001-08-27 22:15:12 +0000103{
Garrett Cooper2c282152010-12-16 00:55:50 -0800104
plars865695b2001-08-27 22:15:12 +0000105 tst_sig(FORK, DEF_HANDLER, cleanup);
106
107 /* Pause if that option was specified
108 * TEST_PAUSE contains the code to fork the test with the -c option.
109 */
110 TEST_PAUSE;
111}
112
113/*
114 * cleanup()
115 * performs all ONE TIME cleanup for this test at
116 * completion or premature exit
117 */
subrata_modak56207ce2009-03-23 13:35:39 +0000118void cleanup(void)
plars865695b2001-08-27 22:15:12 +0000119{
plars865695b2001-08-27 22:15:12 +0000120
Wanlong Gao354ebb42012-12-07 10:10:04 +0800121}