UPDATE_COPYRIGHT_USE_INTERVALS=1 \
$HOME/src/gnu/gnulib/build-aux/update-copyright \
$(git ls-files | sed -e '/^gnulib$/d
/^paxutils$/d
/^COPYING$/d
/\/fdl.texi$/d')
sed -i '2000,${
/^Copyright @copyright/d
s/^[0-9]*--\(2025 Free Software Foundation, Inc.\)/Copyright (C) \1/
}' doc/tar.texi
63 lines
1.9 KiB
C
63 lines
1.9 KiB
C
/* Check if filesystem timestamps are consistent with the system time.
|
|
Copyright (C) 2016-2025 Free Software Foundation, Inc.
|
|
|
|
This program is free software; you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as published by the
|
|
Free Software Foundation; either version 3, or (at your option) any later
|
|
version.
|
|
|
|
This program is distributed in the hope that it will be useful, but
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
|
Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#include <config.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/time.h>
|
|
#include <unistd.h>
|
|
#include <string.h>
|
|
#include <assert.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stat-time.h>
|
|
#include <timespec.h>
|
|
|
|
/* Some filesystems can slightly offset the timestamps of newly created files.
|
|
To compensate for it, tar testsuite waits at least 1 second before creating
|
|
next level of incremental backups.
|
|
|
|
However, NFS mounts can offset the timestamps by bigger amounts.
|
|
|
|
This program returns with success (0) if a newly created file is assigned
|
|
mtime matching the system time to the nearest second.
|
|
*/
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
struct timespec s = current_timespec ();
|
|
|
|
umask (077);
|
|
char name[] = "ckmtime.XXXXXX";
|
|
int fd = mkstemp (name);
|
|
assert (0 <= fd);
|
|
unlink (name);
|
|
struct stat st;
|
|
int r = fstat (fd, &st);
|
|
assert (0 <= r);
|
|
r = close (fd);
|
|
assert (0 <= r);
|
|
|
|
struct timespec
|
|
t = get_stat_mtime (&st),
|
|
d = timespec_cmp (s, t) < 0 ? timespec_sub (t, s) : timespec_sub (s, t);
|
|
if (timespec_cmp (make_timespec (1, 0), d) < 0)
|
|
{
|
|
fprintf (stderr, "file timestamp unreliable\n");
|
|
return 1;
|
|
}
|
|
return 0;
|
|
}
|