blob: 4275e9bdfe34e5877b51a4217a639b2971b9e349 [file] [log] [blame]
plars865695b2001-08-27 22:15:12 +00001/*
2 * Copyright (c) International Business Machines Corp., 2001
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
12 * the GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
Wanlong Gao4548c6c2012-10-19 18:03:36 +080016 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
plars865695b2001-08-27 22:15:12 +000017 */
18
subrata_modak4bb656a2009-02-26 12:02:09 +000019/*
plars865695b2001-08-27 22:15:12 +000020 * Test Name: chmod03
21 *
22 * Test Description:
23 * Verify that, chmod(2) will succeed to change the mode of a file
24 * and set the sticky bit on it if invoked by non-root (uid != 0)
25 * process with the following constraints,
26 * - the process is the owner of the file.
27 * - the effective group ID or one of the supplementary group ID's of the
28 * process is equal to the group ID of the file.
subrata_modakbdbaec52009-02-26 12:14:51 +000029 *
plars865695b2001-08-27 22:15:12 +000030 * Expected Result:
31 * chmod() should return value 0 on success and succeeds to change
32 * the mode of specified file with sticky bit set on it.
33 *
34 * Algorithm:
35 * Setup:
36 * Setup signal handling.
37 * Create temporary directory.
38 * Pause for SIGUSR1 if option specified.
39 *
40 * Test:
41 * Loop if the proper options are given.
42 * Execute system call
43 * Check return code, if system call failed (return=-1)
44 * Log the errno and Issue a FAIL message.
45 * Otherwise,
subrata_modakbdbaec52009-02-26 12:14:51 +000046 * Verify the Functionality of system call
plars865695b2001-08-27 22:15:12 +000047 * if successful,
48 * Issue Functionality-Pass message.
49 * Otherwise,
50 * Issue Functionality-Fail message.
51 * Cleanup:
52 * Print errno log and/or timing stats if options given
53 * Delete the temporary directory created.
54 *
55 * Usage: <for command-line>
56 * chmod03 [-c n] [-e] [-f] [-i n] [-I x] [-p x] [-t]
57 * where, -c n : Run n copies concurrently.
58 * -e : Turn on errno logging.
59 * -f : Turn off functionality Testing.
60 * -i n : Execute test n times.
61 * -I x : Execute test for x seconds.
62 * -P x : Pause for x seconds between iterations.
63 * -t : Turn on syscall timing.
64 *
65 * HISTORY
66 * 07/2001 Ported by Wayne Boyer
67 *
68 * RESTRICTIONS:
69 * This test should be run by 'non-super-user' only.
70 *
71 */
72
73#include <stdio.h>
74#include <sys/types.h>
75#include <sys/stat.h>
76#include <sys/fcntl.h>
77#include <errno.h>
78#include <string.h>
79#include <signal.h>
robbiewa7142d92001-08-28 18:21:45 +000080#include <pwd.h>
plars865695b2001-08-27 22:15:12 +000081
82#include "test.h"
83#include "usctest.h"
84
85#define FILE_MODE S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH
86#define PERMS 01777 /*
87 * Mode permissions of test file with sticky
88 * bit set.
89 */
90#define TESTFILE "testfile"
91
subrata_modak56207ce2009-03-23 13:35:39 +000092char *TCID = "chmod03"; /* Test program identifier. */
93int TST_TOTAL = 1; /* Total number of test cases. */
robbiewa7142d92001-08-28 18:21:45 +000094char nobody_uid[] = "nobody";
95struct passwd *ltpuser;
96
plars865695b2001-08-27 22:15:12 +000097void setup(); /* Main setup function for the test */
98void cleanup(); /* Main cleanup function for the test */
99
subrata_modak56207ce2009-03-23 13:35:39 +0000100int main(int ac, char **av)
plars865695b2001-08-27 22:15:12 +0000101{
Garrett Cooperc5f40232010-12-17 12:26:46 -0800102 struct stat stat_buf;
103 int lc;
104 char *msg;
105 mode_t file_mode;
subrata_modak56207ce2009-03-23 13:35:39 +0000106
Garrett Cooperc5f40232010-12-17 12:26:46 -0800107 if ((msg = parse_opts(ac, av, NULL, NULL)) != NULL)
plars865695b2001-08-27 22:15:12 +0000108 tst_brkm(TBROK, NULL, "OPTION PARSING ERROR - %s", msg);
Garrett Cooper2c282152010-12-16 00:55:50 -0800109
plars865695b2001-08-27 22:15:12 +0000110 setup();
111
plars865695b2001-08-27 22:15:12 +0000112 for (lc = 0; TEST_LOOPING(lc); lc++) {
Garrett Cooper2c282152010-12-16 00:55:50 -0800113
Caspar Zhangd59a6592013-03-07 14:59:12 +0800114 tst_count = 0;
plars865695b2001-08-27 22:15:12 +0000115
plars865695b2001-08-27 22:15:12 +0000116 TEST(chmod(TESTFILE, PERMS));
subrata_modakbdbaec52009-02-26 12:14:51 +0000117
plars865695b2001-08-27 22:15:12 +0000118 if (TEST_RETURN == -1) {
Wanlong Gao354ebb42012-12-07 10:10:04 +0800119 tst_resm(TFAIL | TTERRNO, "chmod(%s, %#o) failed",
vapier45996092009-08-28 11:49:07 +0000120 TESTFILE, PERMS);
plars865695b2001-08-27 22:15:12 +0000121 continue;
122 }
123
plars865695b2001-08-27 22:15:12 +0000124 if (STD_FUNCTIONAL_TEST) {
plars865695b2001-08-27 22:15:12 +0000125 if (stat(TESTFILE, &stat_buf) < 0) {
Wanlong Gao354ebb42012-12-07 10:10:04 +0800126 tst_brkm(TFAIL | TERRNO, cleanup,
127 "stat(%s) failed", TESTFILE);
plars865695b2001-08-27 22:15:12 +0000128 }
129 file_mode = stat_buf.st_mode;
130
131 /* Verify STICKY BIT set on testfile */
132 if ((file_mode & PERMS) != PERMS) {
133 tst_resm(TFAIL, "%s: Incorrect modes 0%3o, "
134 "Expected 0777", TESTFILE, file_mode);
135 } else {
136 tst_resm(TPASS, "Functionality of "
137 "chmod(%s, %#o) successful",
138 TESTFILE, PERMS);
139 }
Garrett Cooperc5f40232010-12-17 12:26:46 -0800140 } else
plars865695b2001-08-27 22:15:12 +0000141 tst_resm(TPASS, "call succeeded");
Garrett Cooper2c282152010-12-16 00:55:50 -0800142 }
plars865695b2001-08-27 22:15:12 +0000143
plars865695b2001-08-27 22:15:12 +0000144 cleanup();
Garrett Cooperc5f40232010-12-17 12:26:46 -0800145 tst_exit();
plars865695b2001-08-27 22:15:12 +0000146
Garrett Cooperc5f40232010-12-17 12:26:46 -0800147}
plars865695b2001-08-27 22:15:12 +0000148
subrata_modak56207ce2009-03-23 13:35:39 +0000149void setup()
plars865695b2001-08-27 22:15:12 +0000150{
Garrett Cooperc5f40232010-12-17 12:26:46 -0800151 int fd;
plars865695b2001-08-27 22:15:12 +0000152
plars865695b2001-08-27 22:15:12 +0000153 tst_sig(NOFORK, DEF_HANDLER, cleanup);
154
Garrett Cooperc5f40232010-12-17 12:26:46 -0800155 tst_require_root(NULL);
subrata_modak56207ce2009-03-23 13:35:39 +0000156 ltpuser = getpwnam(nobody_uid);
Garrett Cooperc5f40232010-12-17 12:26:46 -0800157 if (ltpuser == NULL)
Wanlong Gao354ebb42012-12-07 10:10:04 +0800158 tst_brkm(TBROK | TERRNO, NULL, "getpwnam failed");
vapier45996092009-08-28 11:49:07 +0000159 if (setuid(ltpuser->pw_uid) == -1)
Wanlong Gao354ebb42012-12-07 10:10:04 +0800160 tst_brkm(TBROK | TERRNO, NULL, "setuid(%u) failed",
161 ltpuser->pw_uid);
plars865695b2001-08-27 22:15:12 +0000162
subrata_modak56207ce2009-03-23 13:35:39 +0000163 TEST_PAUSE;
plars865695b2001-08-27 22:15:12 +0000164
plars865695b2001-08-27 22:15:12 +0000165 tst_tmpdir();
166
167 /*
168 * Create a test file under temporary directory with specified
169 * mode permissios and set the ownership of the test file to the
170 * uid/gid of guest user.
171 */
Wanlong Gao354ebb42012-12-07 10:10:04 +0800172 if ((fd = open(TESTFILE, O_RDWR | O_CREAT, FILE_MODE)) == -1) {
173 tst_brkm(TBROK | TERRNO, cleanup,
vapier45996092009-08-28 11:49:07 +0000174 "open(%s, O_RDWR|O_CREAT, %#o) failed",
175 TESTFILE, FILE_MODE);
plars865695b2001-08-27 22:15:12 +0000176 }
177
plars865695b2001-08-27 22:15:12 +0000178 if (close(fd) == -1) {
Wanlong Gao354ebb42012-12-07 10:10:04 +0800179 tst_brkm(TBROK | TERRNO, cleanup, "close(%s) failed", TESTFILE);
plars865695b2001-08-27 22:15:12 +0000180 }
Garrett Cooper2c282152010-12-16 00:55:50 -0800181}
plars865695b2001-08-27 22:15:12 +0000182
183/*
184 * void
185 * cleanup() - performs all ONE TIME cleanup for this test at
186 * completion or premature exit.
187 * Delete the testfile and temporary directory created in setup().
188 */
subrata_modak56207ce2009-03-23 13:35:39 +0000189void cleanup()
plars865695b2001-08-27 22:15:12 +0000190{
191 /*
192 * print timing stats if that option was specified.
193 */
194 TEST_CLEANUP;
195
plars865695b2001-08-27 22:15:12 +0000196 tst_rmdir();
197
Chris Dearmanec6edca2012-10-17 19:54:01 -0700198}