blob: b1c325c7f6e23fc24a6e07c3e3c924d730d1e3b0 [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 * Test Name: utime01
22 *
23 * Test Description:
24 * Verify that the system call utime() successfully sets the modification
25 * and access times of a file to the current time, if the times argument
26 * is null, and the user ID of the process is "root".
27 *
28 * Expected Result:
29 * utime succeeds returning zero and sets the access and modification
30 * times of the file to the current time.
31 *
32 * Algorithm:
33 * Setup:
34 * Setup signal handling.
35 * Create temporary directory.
36 * Pause for SIGUSR1 if option specified.
37 *
38 * Test:
39 * Loop if the proper options are given.
40 * Execute system call
41 * Check return code, if system call failed (return=-1)
subrata_modak56207ce2009-03-23 13:35:39 +000042 * Log the errno and Issue a FAIL message.
plars865695b2001-08-27 22:15:12 +000043 * Otherwise,
subrata_modak56207ce2009-03-23 13:35:39 +000044 * Verify the Functionality of system call
plars865695b2001-08-27 22:15:12 +000045 * if successful,
subrata_modak56207ce2009-03-23 13:35:39 +000046 * Issue Functionality-Pass message.
plars865695b2001-08-27 22:15:12 +000047 * Otherwise,
48 * Issue Functionality-Fail message.
49 * Cleanup:
50 * Print errno log and/or timing stats if options given
51 * Delete the temporary directory created.
52 *
53 * Usage: <for command-line>
54 * utime01 [-c n] [-e] [-f] [-i n] [-I x] [-p x] [-t]
55 * where, -c n : Run n copies concurrently.
56 * -e : Turn on errno logging.
57 * -f : Turn off functionality Testing.
58 * -i n : Execute test n times.
59 * -I x : Execute test for x seconds.
60 * -P x : Pause for x seconds between iterations.
61 * -t : Turn on syscall timing.
62 *
63 * History
64 * 07/2001 John George
65 * -Ported
66 *
67 * Restrictions:
68 * This test should be run by 'super-user' (root) only.
69 *
70 */
71
72#include <stdio.h>
73#include <unistd.h>
74#include <sys/types.h>
75#include <errno.h>
76#include <fcntl.h>
77#include <utime.h>
78#include <string.h>
79#include <sys/stat.h>
80#include <signal.h>
plars74948ad2002-11-14 16:16:14 +000081#include <time.h>
plars865695b2001-08-27 22:15:12 +000082
83#include "test.h"
Cyril Hrubis0f0e3482014-02-27 16:08:04 +010084#include "tst_fs_type.h"
plars865695b2001-08-27 22:15:12 +000085
86#define TEMP_FILE "tmp_file"
87#define FILE_MODE S_IRUSR | S_IRGRP | S_IROTH
88
Cyril Hrubisfdce7d52013-04-04 18:35:48 +020089char *TCID = "utime01";
90int TST_TOTAL = 1;
plars865695b2001-08-27 22:15:12 +000091time_t curr_time; /* current time in seconds */
Cyril Hrubis605fa332015-02-04 13:11:20 +010092time_t tloc;
plars865695b2001-08-27 22:15:12 +000093
94void setup(); /* Main setup function of test */
95void cleanup(); /* cleanup function for the test */
96
subrata_modak56207ce2009-03-23 13:35:39 +000097int main(int ac, char **av)
plars865695b2001-08-27 22:15:12 +000098{
99 struct stat stat_buf; /* struct buffer to hold file info. */
Cyril Hrubis89af32a2012-10-24 16:39:11 +0200100 int lc;
Cyril Hrubis0f0e3482014-02-27 16:08:04 +0100101 long type;
Cyril Hrubis0b9589f2014-05-27 17:40:33 +0200102 const char *msg;
plars865695b2001-08-27 22:15:12 +0000103 time_t modf_time, access_time;
104 time_t pres_time; /* file modification/access/present time */
subrata_modak56207ce2009-03-23 13:35:39 +0000105
Garrett Cooper45e285d2010-11-22 12:19:25 -0800106 msg = parse_opts(ac, av, NULL, NULL);
107 if (msg != 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 }
111
plars865695b2001-08-27 22:15:12 +0000112 setup();
113
Cyril Hrubis0f0e3482014-02-27 16:08:04 +0100114 switch ((type = tst_fs_type(cleanup, "."))) {
115 case TST_NFS_MAGIC:
Xiong Zhoud623e2c2014-09-25 03:24:19 -0400116 if (tst_kvercmp(2, 6, 18) < 0)
117 tst_brkm(TCONF, cleanup, "Cannot do utime on a file"
118 " on %s filesystem before 2.6.18",
119 tst_fs_type_name(type));
120 break;
Cyril Hrubis0f0e3482014-02-27 16:08:04 +0100121 case TST_V9FS_MAGIC:
subrata_modak56207ce2009-03-23 13:35:39 +0000122 tst_brkm(TCONF, cleanup,
Cyril Hrubis0f0e3482014-02-27 16:08:04 +0100123 "Cannot do utime on a file on %s filesystem",
124 tst_fs_type_name(type));
Xiong Zhoud623e2c2014-09-25 03:24:19 -0400125 break;
Wanlong Gao354ebb42012-12-07 10:10:04 +0800126 }
Cyril Hrubisbc5da682011-02-24 20:04:44 +0100127
plars865695b2001-08-27 22:15:12 +0000128 for (lc = 0; TEST_LOOPING(lc); lc++) {
Garrett Cooper2c282152010-12-16 00:55:50 -0800129
Caspar Zhangd59a6592013-03-07 14:59:12 +0800130 tst_count = 0;
plars865695b2001-08-27 22:15:12 +0000131
subrata_modak4bb656a2009-02-26 12:02:09 +0000132 /*
plars865695b2001-08-27 22:15:12 +0000133 * Invoke utime(2) to set TEMP_FILE access and
134 * modification times to the current time.
135 */
136 TEST(utime(TEMP_FILE, NULL));
137
plars865695b2001-08-27 22:15:12 +0000138 if (TEST_RETURN == -1) {
plars865695b2001-08-27 22:15:12 +0000139 tst_resm(TFAIL, "utime(%s) Failed, errno=%d : %s",
140 TEMP_FILE, TEST_ERRNO, strerror(TEST_ERRNO));
141 } else {
142 /*
Cyril Hrubise38b9612014-06-02 17:20:57 +0200143 * Sleep for a second so that mod time and
144 * access times will be different from the
145 * current time
plars865695b2001-08-27 22:15:12 +0000146 */
Cyril Hrubise38b9612014-06-02 17:20:57 +0200147 sleep(2);
plars865695b2001-08-27 22:15:12 +0000148
Cyril Hrubise38b9612014-06-02 17:20:57 +0200149 /*
150 * Get the current time now, after calling
151 * utime(2)
152 */
153 if ((pres_time = time(&tloc)) < 0) {
154 tst_brkm(TFAIL, cleanup, "time() "
155 "failed to get present time "
156 "after utime, error=%d",
157 errno);
158 }
plars865695b2001-08-27 22:15:12 +0000159
Cyril Hrubise38b9612014-06-02 17:20:57 +0200160 /*
161 * Get the modification and access times of
162 * temporary file using stat(2).
163 */
164 if (stat(TEMP_FILE, &stat_buf) < 0) {
165 tst_brkm(TFAIL, cleanup, "stat(2) of "
166 "%s failed, error:%d",
167 TEMP_FILE, TEST_ERRNO);
168 }
169 modf_time = stat_buf.st_mtime;
170 access_time = stat_buf.st_atime;
plars865695b2001-08-27 22:15:12 +0000171
Cyril Hrubise38b9612014-06-02 17:20:57 +0200172 /* Now do the actual verification */
173 if (modf_time <= curr_time ||
174 modf_time >= pres_time ||
175 access_time <= curr_time ||
176 access_time >= pres_time) {
177 tst_resm(TFAIL, "%s access and "
178 "modification times not set",
179 TEMP_FILE);
plars865695b2001-08-27 22:15:12 +0000180 } else {
Cyril Hrubise38b9612014-06-02 17:20:57 +0200181 tst_resm(TPASS, "Functionality of "
182 "utime(%s, NULL) successful",
183 TEMP_FILE);
plars865695b2001-08-27 22:15:12 +0000184 }
185 }
Caspar Zhangd59a6592013-03-07 14:59:12 +0800186 tst_count++;
Garrett Cooper2c282152010-12-16 00:55:50 -0800187 }
plars865695b2001-08-27 22:15:12 +0000188
plars865695b2001-08-27 22:15:12 +0000189 cleanup();
Garrett Cooper7d0a4a52010-12-16 10:05:08 -0800190 tst_exit();
Garrett Cooper2c282152010-12-16 00:55:50 -0800191}
plars865695b2001-08-27 22:15:12 +0000192
193/*
194 * void
195 * setup() - performs all ONE TIME setup for this test.
196 * Create a temporary directory and change directory to it.
197 * Create a test file under temporary directory and close it
198 */
Mike Frysingerc57fba52014-04-09 18:56:30 -0400199void setup(void)
plars865695b2001-08-27 22:15:12 +0000200{
subrata_modak56207ce2009-03-23 13:35:39 +0000201 int fildes; /* file handle for temp file */
plars865695b2001-08-27 22:15:12 +0000202
Nicolas Jolyd4ceb372014-06-22 17:03:57 +0200203 tst_require_root(NULL);
plars865695b2001-08-27 22:15:12 +0000204
Nicolas Jolyd4ceb372014-06-22 17:03:57 +0200205 tst_sig(FORK, DEF_HANDLER, cleanup);
plars865695b2001-08-27 22:15:12 +0000206
plars865695b2001-08-27 22:15:12 +0000207 TEST_PAUSE;
208
plars865695b2001-08-27 22:15:12 +0000209 tst_tmpdir();
210
211 /* Creat a temporary file under above directory */
212 if ((fildes = creat(TEMP_FILE, FILE_MODE)) == -1) {
213 tst_brkm(TBROK, cleanup,
214 "creat(%s, %#o) Failed, errno=%d :%s",
215 TEMP_FILE, FILE_MODE, errno, strerror(errno));
Wanlong Gao354ebb42012-12-07 10:10:04 +0800216 }
plars865695b2001-08-27 22:15:12 +0000217
218 /* Close the temporary file created */
219 if (close(fildes) < 0) {
220 tst_brkm(TBROK, cleanup,
221 "close(%s) Failed, errno=%d : %s:",
222 TEMP_FILE, errno, strerror(errno));
Wanlong Gao354ebb42012-12-07 10:10:04 +0800223 }
plars865695b2001-08-27 22:15:12 +0000224
225 /* Get the current time */
226 if ((curr_time = time(&tloc)) < 0) {
227 tst_brkm(TBROK, cleanup,
subrata_modak56207ce2009-03-23 13:35:39 +0000228 "time() failed to get current time, errno=%d", errno);
Wanlong Gao354ebb42012-12-07 10:10:04 +0800229 }
plars865695b2001-08-27 22:15:12 +0000230
231 /*
232 * Sleep for a second so that mod time and access times will be
233 * different from the current time
234 */
subrata_modak56207ce2009-03-23 13:35:39 +0000235 sleep(2); /* sleep(1) on IA64 sometimes sleeps < 1 sec!! */
236
Garrett Cooper2c282152010-12-16 00:55:50 -0800237}
plars865695b2001-08-27 22:15:12 +0000238
239/*
240 * void
241 * cleanup() - performs all ONE TIME cleanup for this test at
242 * completion or premature exit.
243 * Remove the test directory and testfile created in the setup.
244 */
Mike Frysingerc57fba52014-04-09 18:56:30 -0400245void cleanup(void)
plars865695b2001-08-27 22:15:12 +0000246{
plars865695b2001-08-27 22:15:12 +0000247
plars865695b2001-08-27 22:15:12 +0000248 tst_rmdir();
249
Chris Dearmanec6edca2012-10-17 19:54:01 -0700250}