1 /* Test of file timestamp modification functions.
2 Copyright (C) 2009-2024 Free Software Foundation, Inc.
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 3 of the License, or
7 (at your option) any later version.
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 the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
17 #include "test-utimens-common.h"
19 /* This file is designed to test both fdutimens(a,NULL,b) and
20 futimens(a,b). FUNC is the function to test. Assumes that BASE
21 and ASSERT are already defined. If PRINT, warn before skipping
22 tests with status 77. */
24 test_futimens (int (*func
) (int, struct timespec
const *),
27 int fd
= open (BASE
"file", O_RDWR
| O_CREAT
| O_TRUNC
, 0600);
32 bool check_atime
= checkable_atime (fd
, &st1
);
37 result
= func (fd
, NULL
);
38 if (result
== -1 && errno
== ENOSYS
)
40 ASSERT (close (fd
) == 0);
41 ASSERT (unlink (BASE
"file") == 0);
43 fputs ("skipping test: "
44 "setting fd time not supported on this file system\n",
49 ASSERT (fstat (fd
, &st2
) == 0);
50 /* If utimens truncates to worse resolution than the file system
51 supports, then time can appear to go backwards between now and a
52 follow-up utimens with UTIME_NOW or a NULL timespec. Use
53 UTIMECMP_TRUNCATE_SOURCE to compensate, with st1 as the
55 ASSERT (0 <= utimecmp (BASE
"file", &st2
, &st1
, UTIMECMP_TRUNCATE_SOURCE
));
57 ASSERT (ctime_compare (&st1
, &st2
) < 0);
59 /* On some NFS systems, the 'now' timestamp of creat or a NULL
60 timespec is determined by the server, but the 'now' timestamp
61 determined by gettime() (as is done when using UTIME_NOW) is
62 determined by the client; since the two machines are not
63 necessarily on the same clock, this is another case where time
64 can appear to go backwards. The rest of this test cares about
65 client time, so manually use gettime() to set both times. */
66 struct timespec ts
[2];
69 ASSERT (func (fd
, ts
) == 0);
70 ASSERT (fstat (fd
, &st1
) == 0);
74 /* Invalid arguments. */
77 ASSERT (func (AT_FDCWD
, NULL
) == -1);
78 ASSERT (errno
== EBADF
);
82 ASSERT (func (-1, NULL
) == -1);
83 ASSERT (errno
== EBADF
);
88 ASSERT (func (99, NULL
) == -1);
89 ASSERT (errno
== EBADF
);
94 ASSERT (close (fd0
) == 0);
96 ASSERT (func (fd0
, NULL
) == -1);
97 ASSERT (errno
== EBADF
);
100 struct timespec ts
[2];
102 ts
[0].tv_nsec
= UTIME_BOGUS_POS
;
106 ASSERT (func (fd
, ts
) == -1);
107 ASSERT (errno
== EINVAL
);
110 struct timespec ts
[2];
114 ts
[1].tv_nsec
= UTIME_BOGUS_NEG
;
116 ASSERT (func (fd
, ts
) == -1);
117 ASSERT (errno
== EINVAL
);
119 ASSERT (fstat (fd
, &st2
) == 0);
122 ASSERT (st1
.st_atime
== st2
.st_atime
);
123 ASSERT (get_stat_atime_ns (&st1
) == get_stat_atime_ns (&st2
));
125 ASSERT (utimecmp (BASE
"file", &st1
, &st2
, 0) == 0);
127 /* Set both times. */
129 struct timespec ts
[2];
131 ts
[0].tv_nsec
= BILLION
/ 2 - 1;
133 ts
[1].tv_nsec
= BILLION
- 1;
134 ASSERT (func (fd
, ts
) == 0);
135 ASSERT (fstat (fd
, &st2
) == 0);
138 ASSERT (st2
.st_atime
== Y2K
);
139 ASSERT (0 <= get_stat_atime_ns (&st2
));
140 ASSERT (get_stat_atime_ns (&st2
) < BILLION
/ 2);
142 ASSERT (st2
.st_mtime
== Y2K
);
143 ASSERT (0 <= get_stat_mtime_ns (&st2
));
144 ASSERT (get_stat_mtime_ns (&st2
) < BILLION
);
146 ASSERT (ctime_compare (&st1
, &st2
) < 0);
149 /* Play with UTIME_OMIT, UTIME_NOW. */
152 struct timespec ts
[2];
153 ts
[0].tv_sec
= BILLION
;
154 ts
[0].tv_nsec
= UTIME_OMIT
;
156 ts
[1].tv_nsec
= UTIME_NOW
;
158 ASSERT (func (fd
, ts
) == 0);
159 ASSERT (fstat (fd
, &st3
) == 0);
162 ASSERT (st3
.st_atime
== Y2K
);
163 ASSERT (0 <= get_stat_atime_ns (&st3
));
164 ASSERT (get_stat_atime_ns (&st3
) <= BILLION
/ 2);
166 ASSERT (utimecmp (BASE
"file", &st1
, &st3
, UTIMECMP_TRUNCATE_SOURCE
) <= 0);
168 ASSERT (ctime_compare (&st2
, &st3
) < 0);
171 ts
[1].tv_nsec
= UTIME_OMIT
;
172 ASSERT (func (fd
, ts
) == 0);
173 ASSERT (fstat (fd
, &st2
) == 0);
176 ASSERT (st2
.st_atime
== BILLION
);
177 ASSERT (get_stat_atime_ns (&st2
) == 0);
179 ASSERT (st3
.st_mtime
== st2
.st_mtime
);
180 ASSERT (get_stat_mtime_ns (&st3
) == get_stat_mtime_ns (&st2
));
182 ASSERT (ctime_compare (&st3
, &st2
) < 0);
186 ASSERT (close (fd
) == 0);
187 ASSERT (unlink (BASE
"file") == 0);