blob: 598d0763ff9acbac31fd27548ef9858560c129b7 [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"
plars865695b2001-08-27 22:15:12 +000083
84#define FILE_MODE S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH
85#define PERMS 01777 /*
86 * Mode permissions of test file with sticky
87 * bit set.
88 */
89#define TESTFILE "testfile"
90
Cyril Hrubisfdce7d52013-04-04 18:35:48 +020091char *TCID = "chmod03";
92int TST_TOTAL = 1;
robbiewa7142d92001-08-28 18:21:45 +000093char nobody_uid[] = "nobody";
94struct passwd *ltpuser;
95
plars865695b2001-08-27 22:15:12 +000096void setup(); /* Main setup function for the test */
97void cleanup(); /* Main cleanup function for the test */
98
subrata_modak56207ce2009-03-23 13:35:39 +000099int main(int ac, char **av)
plars865695b2001-08-27 22:15:12 +0000100{
Garrett Cooperc5f40232010-12-17 12:26:46 -0800101 struct stat stat_buf;
102 int lc;
Cyril Hrubis0b9589f2014-05-27 17:40:33 +0200103 const char *msg;
Garrett Cooperc5f40232010-12-17 12:26:46 -0800104 mode_t file_mode;
subrata_modak56207ce2009-03-23 13:35:39 +0000105
Garrett Cooperc5f40232010-12-17 12:26:46 -0800106 if ((msg = parse_opts(ac, av, NULL, NULL)) != NULL)
plars865695b2001-08-27 22:15:12 +0000107 tst_brkm(TBROK, NULL, "OPTION PARSING ERROR - %s", msg);
Garrett Cooper2c282152010-12-16 00:55:50 -0800108
plars865695b2001-08-27 22:15:12 +0000109 setup();
110
plars865695b2001-08-27 22:15:12 +0000111 for (lc = 0; TEST_LOOPING(lc); lc++) {
Garrett Cooper2c282152010-12-16 00:55:50 -0800112
Caspar Zhangd59a6592013-03-07 14:59:12 +0800113 tst_count = 0;
plars865695b2001-08-27 22:15:12 +0000114
plars865695b2001-08-27 22:15:12 +0000115 TEST(chmod(TESTFILE, PERMS));
subrata_modakbdbaec52009-02-26 12:14:51 +0000116
plars865695b2001-08-27 22:15:12 +0000117 if (TEST_RETURN == -1) {
Wanlong Gao354ebb42012-12-07 10:10:04 +0800118 tst_resm(TFAIL | TTERRNO, "chmod(%s, %#o) failed",
vapier45996092009-08-28 11:49:07 +0000119 TESTFILE, PERMS);
plars865695b2001-08-27 22:15:12 +0000120 continue;
121 }
Cyril Hrubise38b9612014-06-02 17:20:57 +0200122 if (stat(TESTFILE, &stat_buf) < 0) {
123 tst_brkm(TFAIL | TERRNO, cleanup,
124 "stat(%s) failed", TESTFILE);
125 }
126 file_mode = stat_buf.st_mode;
plars865695b2001-08-27 22:15:12 +0000127
Cyril Hrubise38b9612014-06-02 17:20:57 +0200128 /* Verify STICKY BIT set on testfile */
129 if ((file_mode & PERMS) != PERMS) {
130 tst_resm(TFAIL, "%s: Incorrect modes 0%3o, "
131 "Expected 0777", TESTFILE, file_mode);
132 } else {
133 tst_resm(TPASS, "Functionality of "
134 "chmod(%s, %#o) successful",
135 TESTFILE, PERMS);
136 }
Garrett Cooper2c282152010-12-16 00:55:50 -0800137 }
plars865695b2001-08-27 22:15:12 +0000138
plars865695b2001-08-27 22:15:12 +0000139 cleanup();
Garrett Cooperc5f40232010-12-17 12:26:46 -0800140 tst_exit();
Garrett Cooperc5f40232010-12-17 12:26:46 -0800141}
plars865695b2001-08-27 22:15:12 +0000142
Mike Frysingerc57fba52014-04-09 18:56:30 -0400143void setup(void)
plars865695b2001-08-27 22:15:12 +0000144{
Garrett Cooperc5f40232010-12-17 12:26:46 -0800145 int fd;
plars865695b2001-08-27 22:15:12 +0000146
plars865695b2001-08-27 22:15:12 +0000147 tst_sig(NOFORK, DEF_HANDLER, cleanup);
148
Garrett Cooperc5f40232010-12-17 12:26:46 -0800149 tst_require_root(NULL);
subrata_modak56207ce2009-03-23 13:35:39 +0000150 ltpuser = getpwnam(nobody_uid);
Garrett Cooperc5f40232010-12-17 12:26:46 -0800151 if (ltpuser == NULL)
Wanlong Gao354ebb42012-12-07 10:10:04 +0800152 tst_brkm(TBROK | TERRNO, NULL, "getpwnam failed");
vapier45996092009-08-28 11:49:07 +0000153 if (setuid(ltpuser->pw_uid) == -1)
Wanlong Gao354ebb42012-12-07 10:10:04 +0800154 tst_brkm(TBROK | TERRNO, NULL, "setuid(%u) failed",
155 ltpuser->pw_uid);
plars865695b2001-08-27 22:15:12 +0000156
subrata_modak56207ce2009-03-23 13:35:39 +0000157 TEST_PAUSE;
plars865695b2001-08-27 22:15:12 +0000158
plars865695b2001-08-27 22:15:12 +0000159 tst_tmpdir();
160
161 /*
162 * Create a test file under temporary directory with specified
163 * mode permissios and set the ownership of the test file to the
164 * uid/gid of guest user.
165 */
Wanlong Gao354ebb42012-12-07 10:10:04 +0800166 if ((fd = open(TESTFILE, O_RDWR | O_CREAT, FILE_MODE)) == -1) {
167 tst_brkm(TBROK | TERRNO, cleanup,
vapier45996092009-08-28 11:49:07 +0000168 "open(%s, O_RDWR|O_CREAT, %#o) failed",
169 TESTFILE, FILE_MODE);
plars865695b2001-08-27 22:15:12 +0000170 }
171
plars865695b2001-08-27 22:15:12 +0000172 if (close(fd) == -1) {
Wanlong Gao354ebb42012-12-07 10:10:04 +0800173 tst_brkm(TBROK | TERRNO, cleanup, "close(%s) failed", TESTFILE);
plars865695b2001-08-27 22:15:12 +0000174 }
Garrett Cooper2c282152010-12-16 00:55:50 -0800175}
plars865695b2001-08-27 22:15:12 +0000176
177/*
178 * void
179 * cleanup() - performs all ONE TIME cleanup for this test at
180 * completion or premature exit.
181 * Delete the testfile and temporary directory created in setup().
182 */
Mike Frysingerc57fba52014-04-09 18:56:30 -0400183void cleanup(void)
plars865695b2001-08-27 22:15:12 +0000184{
plars865695b2001-08-27 22:15:12 +0000185
plars865695b2001-08-27 22:15:12 +0000186 tst_rmdir();
187
Chris Dearmanec6edca2012-10-17 19:54:01 -0700188}