blob: e205a211a2ab1ca8c4aa7d75e8e990b2ec6ad5b4 [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
subrata_modak4bb656a2009-02-26 12:02:09 +000020/*
plars865695b2001-08-27 22:15:12 +000021 * Test Name: chown02
22 *
23 * Test Description:
24 * Verify that, when chown(2) invoked by super-user to change the owner and
25 * group of a file specified by path to any numeric owner(uid)/group(gid)
26 * values,
27 * - clears setuid and setgid bits set on an executable file.
28 * - preserves setgid bit set on a non-group-executable file.
29 *
30 * Expected Result:
subrata_modak4bb656a2009-02-26 12:02:09 +000031 * chown(2) should return 0 and the ownership set on the file should match
plars865695b2001-08-27 22:15:12 +000032 * the numeric values contained in owner and group respectively.
subrata_modakbdbaec52009-02-26 12:14:51 +000033 *
plars865695b2001-08-27 22:15:12 +000034 * 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 * chown02 [-c n] [-f] [-i n] [-I x] [-P x] [-t]
57 * where, -c n : Run n copies concurrently.
58 * -f : Turn off functionality Testing.
59 * -i n : Execute test n times.
60 * -I x : Execute test for x seconds.
61 * -P x : Pause for x seconds between iterations.
62 * -t : Turn on syscall timing.
63 *
64 * HISTORY
65 * 07/2001 Ported by Wayne Boyer
66 *
67 * RESTRICTIONS:
68 * This test should be run by 'super-user' (root) only.
69 *
70 */
71
72#include <stdio.h>
73#include <sys/types.h>
74#include <sys/stat.h>
75#include <sys/fcntl.h>
76#include <errno.h>
77#include <string.h>
78#include <signal.h>
79
80#include "test.h"
Han Pingtian75fb0572014-11-28 16:33:41 +080081#include "compat_16.h"
plars865695b2001-08-27 22:15:12 +000082
Garrett Cooper05ef3ef2010-12-17 16:05:21 -080083#define FILE_MODE (S_IFREG|S_IRUSR|S_IWUSR|S_IRGRP|S_IROTH)
84#define NEW_PERMS1 (S_IFREG|S_IRWXU|S_IRWXG|S_ISUID|S_ISGID)
85#define NEW_PERMS2 (S_IFREG|S_IRWXU|S_ISGID)
86#define EXP_PERMS (S_IFREG|S_IRWXU|S_IRWXG)
plars865695b2001-08-27 22:15:12 +000087#define TESTFILE1 "testfile1"
88#define TESTFILE2 "testfile2"
89
Han Pingtian75fb0572014-11-28 16:33:41 +080090TCID_DEFINE(chown02);
plars865695b2001-08-27 22:15:12 +000091
plars865695b2001-08-27 22:15:12 +000092int setup1(); /* Test specific setup functions */
93int setup2();
94
95struct test_case_t {
96 char *pathname;
plars865695b2001-08-27 22:15:12 +000097 uid_t user_id;
98 gid_t group_id;
99 int test_flag;
subrata_modak56207ce2009-03-23 13:35:39 +0000100 int (*setupfunc) ();
Garrett Cooper05ef3ef2010-12-17 16:05:21 -0800101} test_cases[] = {
102 /* setuid/setgid bits cleared */
Wanlong Gao354ebb42012-12-07 10:10:04 +0800103 {
104 TESTFILE1, 700, 701, 1, setup1},
105 /* setgid bit not cleared */
106 {
107TESTFILE2, 700, 701, 2, setup2},};
108
Cyril Hrubisb863a0b2014-09-24 13:15:29 +0200109int TST_TOTAL = ARRAY_SIZE(test_cases);
plars865695b2001-08-27 22:15:12 +0000110
111void setup(); /* setup function for the test */
112void cleanup(); /* cleanup function for the test */
113
subrata_modak56207ce2009-03-23 13:35:39 +0000114int main(int ac, char **av)
plars865695b2001-08-27 22:15:12 +0000115{
116 struct stat stat_buf; /* stat(2) struct contents */
Cyril Hrubis89af32a2012-10-24 16:39:11 +0200117 int lc;
Cyril Hrubis0b9589f2014-05-27 17:40:33 +0200118 const char *msg;
Cyril Hrubis89af32a2012-10-24 16:39:11 +0200119 int i;
Garrett Cooper53740502010-12-16 00:04:01 -0800120 uid_t user_id; /* user id of the user set for testfile */
121 gid_t group_id; /* group id of the user set for testfile */
plars865695b2001-08-27 22:15:12 +0000122 int test_flag; /* test condition specific flag variable */
123 char *file_name; /* ptr. for test file name */
subrata_modak56207ce2009-03-23 13:35:39 +0000124
Garrett Cooper05ef3ef2010-12-17 16:05:21 -0800125 if ((msg = parse_opts(ac, av, NULL, NULL)) != NULL)
plars865695b2001-08-27 22:15:12 +0000126 tst_brkm(TBROK, NULL, "OPTION PARSING ERROR - %s", msg);
Garrett Cooper2c282152010-12-16 00:55:50 -0800127
plars865695b2001-08-27 22:15:12 +0000128 setup();
129
plars865695b2001-08-27 22:15:12 +0000130 for (lc = 0; TEST_LOOPING(lc); lc++) {
Garrett Cooper2c282152010-12-16 00:55:50 -0800131
Caspar Zhangd59a6592013-03-07 14:59:12 +0800132 tst_count = 0;
plars865695b2001-08-27 22:15:12 +0000133
Garrett Cooper05ef3ef2010-12-17 16:05:21 -0800134 for (i = 0; i < TST_TOTAL; i++) {
plars865695b2001-08-27 22:15:12 +0000135
Garrett Cooper05ef3ef2010-12-17 16:05:21 -0800136 file_name = test_cases[i].pathname;
137 user_id = test_cases[i].user_id;
138 group_id = test_cases[i].group_id;
139 test_flag = test_cases[i].test_flag;
plars865695b2001-08-27 22:15:12 +0000140
subrata_modak4bb656a2009-02-26 12:02:09 +0000141 /*
plars865695b2001-08-27 22:15:12 +0000142 * Call chown(2) with different user id and
143 * group id (numeric values) to set it on testfile.
subrata_modak56207ce2009-03-23 13:35:39 +0000144 */
Han Pingtian75fb0572014-11-28 16:33:41 +0800145 TEST(CHOWN(cleanup, file_name, user_id, group_id));
plars865695b2001-08-27 22:15:12 +0000146
plars865695b2001-08-27 22:15:12 +0000147 if (TEST_RETURN == -1) {
Wanlong Gao354ebb42012-12-07 10:10:04 +0800148 tst_resm(TFAIL | TTERRNO,
149 "chown(%s, ..) failed", file_name);
plars865695b2001-08-27 22:15:12 +0000150 continue;
151 }
152
153 /*
Cyril Hrubise38b9612014-06-02 17:20:57 +0200154 * Get the testfile information using stat(2).
plars865695b2001-08-27 22:15:12 +0000155 */
Cyril Hrubise38b9612014-06-02 17:20:57 +0200156 if (stat(file_name, &stat_buf) < 0) {
157 tst_brkm(TFAIL, cleanup, "stat(2) of "
158 "%s failed, errno:%d",
159 file_name, TEST_ERRNO);
160 }
plars865695b2001-08-27 22:15:12 +0000161
Cyril Hrubise38b9612014-06-02 17:20:57 +0200162 /*
163 * Check for expected Ownership ids
164 * set on testfile.
165 */
166 if (stat_buf.st_uid != user_id ||
167 stat_buf.st_gid != group_id) {
168 tst_brkm(TFAIL, cleanup, "%s: incorrect"
169 " ownership set, Expected %d "
170 "%d", file_name,
171 user_id, group_id);
172 }
plars865695b2001-08-27 22:15:12 +0000173
Cyril Hrubise38b9612014-06-02 17:20:57 +0200174 /*
175 * Verify that S_ISUID/S_ISGID bits set on the
176 * testfile(s) in setup()s are cleared by
177 * chown().
178 */
179 if (test_flag == 1 &&
180 (stat_buf.st_mode & (S_ISUID | S_ISGID)) != 0) {
181 tst_resm(TFAIL,
182 "%s: incorrect mode "
183 "permissions %#o, Expected "
184 "%#o", file_name, NEW_PERMS1,
185 EXP_PERMS);
186 } else if (test_flag == 2
187 && (stat_buf.st_mode & S_ISGID) == 0) {
188 tst_resm(TFAIL,
189 "%s: Incorrect mode "
190 "permissions %#o, Expected "
191 "%#o", file_name,
192 stat_buf.st_mode, NEW_PERMS2);
193 } else {
194 tst_resm(TPASS,
195 "chown(%s, ..) succeeded",
196 file_name);
197 }
plars865695b2001-08-27 22:15:12 +0000198 }
Garrett Cooper2c282152010-12-16 00:55:50 -0800199 }
plars865695b2001-08-27 22:15:12 +0000200
plars865695b2001-08-27 22:15:12 +0000201 cleanup();
Garrett Cooper05ef3ef2010-12-17 16:05:21 -0800202 tst_exit();
Garrett Cooper05ef3ef2010-12-17 16:05:21 -0800203}
plars865695b2001-08-27 22:15:12 +0000204
205/*
206 * void
207 * setup() - performs all ONE TIME setup for this test.
208 * Create a temporary directory and change directory to it.
209 * Create a test file under temporary directory and close it
210 */
Mike Frysingerc57fba52014-04-09 18:56:30 -0400211void setup(void)
plars865695b2001-08-27 22:15:12 +0000212{
Garrett Cooper05ef3ef2010-12-17 16:05:21 -0800213 int i;
plars865695b2001-08-27 22:15:12 +0000214
plars865695b2001-08-27 22:15:12 +0000215 tst_sig(NOFORK, DEF_HANDLER, cleanup);
216
Garrett Cooper05ef3ef2010-12-17 16:05:21 -0800217 tst_require_root(NULL);
plars865695b2001-08-27 22:15:12 +0000218
plars865695b2001-08-27 22:15:12 +0000219 TEST_PAUSE;
subrata_modak56207ce2009-03-23 13:35:39 +0000220
plars865695b2001-08-27 22:15:12 +0000221 tst_tmpdir();
222
Garrett Cooper05ef3ef2010-12-17 16:05:21 -0800223 /* call iividual setup functions */
224 for (i = 0; i < TST_TOTAL; i++)
225 test_cases[i].setupfunc();
Garrett Cooper2c282152010-12-16 00:55:50 -0800226}
plars865695b2001-08-27 22:15:12 +0000227
228/*
229 * int
230 * setup1() - Setup function for chown(2) to verify setuid/setgid bits
231 * set on an executable file will not be cleared.
subrata_modak56207ce2009-03-23 13:35:39 +0000232 * Creat a testfile and set setuid/setgid bits on the mode of file.$
plars865695b2001-08-27 22:15:12 +0000233 */
Mike Frysingerc57fba52014-04-09 18:56:30 -0400234int setup1(void)
plars865695b2001-08-27 22:15:12 +0000235{
236 int fd; /* File descriptor for testfile1 */
237
238 /* Creat a testfile and close it */
Garrett Cooper05ef3ef2010-12-17 16:05:21 -0800239 if ((fd = open(TESTFILE1, O_RDWR | O_CREAT, FILE_MODE)) == -1)
Wanlong Gao354ebb42012-12-07 10:10:04 +0800240 tst_brkm(TBROK | TERRNO, cleanup,
241 "open(%s, O_RDWR|O_CREAT, %o) failed",
242 TESTFILE1, FILE_MODE);
Garrett Cooper05ef3ef2010-12-17 16:05:21 -0800243 if (close(fd) == -1)
Wanlong Gao354ebb42012-12-07 10:10:04 +0800244 tst_brkm(TBROK | TERRNO, cleanup, "close(%s) failed",
245 TESTFILE1);
plars865695b2001-08-27 22:15:12 +0000246
247 /* Set setuid/setgid bits on the test file created */
Garrett Cooper05ef3ef2010-12-17 16:05:21 -0800248 if (chmod(TESTFILE1, NEW_PERMS1) == -1)
Wanlong Gao354ebb42012-12-07 10:10:04 +0800249 tst_brkm(TBROK | TERRNO, cleanup, "chmod(%s, ..) failed",
250 TESTFILE1);
plars865695b2001-08-27 22:15:12 +0000251 return 0;
Garrett Cooper2c282152010-12-16 00:55:50 -0800252}
plars865695b2001-08-27 22:15:12 +0000253
254/*
255 * int
256 * setup2() - Setup function for chown(2) to verify setgid bit set
257 * set on non-group executable file will not be cleared.
258 * Creat a testfile and set setgid bit on the mode of file.
259 */
Mike Frysingerc57fba52014-04-09 18:56:30 -0400260int setup2(void)
plars865695b2001-08-27 22:15:12 +0000261{
262 int fd; /* File descriptor for testfile2 */
263
264 /* Creat a testfile and close it */
subrata_modak56207ce2009-03-23 13:35:39 +0000265 if ((fd = open(TESTFILE2, O_RDWR | O_CREAT, FILE_MODE)) == -1) {
Wanlong Gao354ebb42012-12-07 10:10:04 +0800266 tst_brkm(TBROK | TERRNO, cleanup,
267 "open(%s, O_RDWR|O_CREAT, %o) failed",
268 TESTFILE2, FILE_MODE);
plars865695b2001-08-27 22:15:12 +0000269 }
plars865695b2001-08-27 22:15:12 +0000270 /* Set setgid bit on the test file created */
Garrett Cooper05ef3ef2010-12-17 16:05:21 -0800271 if (fchmod(fd, NEW_PERMS2) != 0)
Wanlong Gao354ebb42012-12-07 10:10:04 +0800272 tst_brkm(TBROK | TERRNO, cleanup, "fchmod failed");
Garrett Cooper05ef3ef2010-12-17 16:05:21 -0800273 if (close(fd) == -1)
Wanlong Gao354ebb42012-12-07 10:10:04 +0800274 tst_brkm(TBROK | TERRNO, cleanup, "close(%s) failed",
275 TESTFILE2);
plars865695b2001-08-27 22:15:12 +0000276 return 0;
277}
278
279/*
280 * void
281 * cleanup() - performs all ONE TIME cleanup for this test at
282 * completion or premature exit.
283 * Remove the test directory and testfile created in the setup.
284 */
Mike Frysingerc57fba52014-04-09 18:56:30 -0400285void cleanup(void)
plars865695b2001-08-27 22:15:12 +0000286{
plars865695b2001-08-27 22:15:12 +0000287
plars865695b2001-08-27 22:15:12 +0000288 tst_rmdir();
289
Chris Dearmanec6edca2012-10-17 19:54:01 -0700290}