summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorkientzle <kientzle@FreeBSD.org>2008-09-01 02:50:24 +0000
committerkientzle <kientzle@FreeBSD.org>2008-09-01 02:50:24 +0000
commit7711ed1cf5919924b612fc93447f26d27f150b24 (patch)
treeb7066e848f645d464c68a48027f4562a9647215e /lib
parent7f570176d925106cd1af5dab102fa15b5e5dea8d (diff)
downloadFreeBSD-src-7711ed1cf5919924b612fc93447f26d27f150b24.zip
FreeBSD-src-7711ed1cf5919924b612fc93447f26d27f150b24.tar.gz
Use the "start_time" (time at which the restore process began)
to fill in a missing atime instead of substituting mtime. PR: bin/124915
Diffstat (limited to 'lib')
-rw-r--r--lib/libarchive/archive_write_disk.c18
-rw-r--r--lib/libarchive/test/test_write_disk.c6
2 files changed, 17 insertions, 7 deletions
diff --git a/lib/libarchive/archive_write_disk.c b/lib/libarchive/archive_write_disk.c
index 0d02e0d..521c162 100644
--- a/lib/libarchive/archive_write_disk.c
+++ b/lib/libarchive/archive_write_disk.c
@@ -140,6 +140,7 @@ struct archive_write_disk {
uid_t user_uid;
dev_t skip_file_dev;
ino_t skip_file_ino;
+ time_t start_time;
gid_t (*lookup_gid)(void *private, const char *gname, gid_t gid);
void (*cleanup_gid)(void *private);
@@ -445,6 +446,8 @@ _archive_write_header(struct archive *_a, struct archive_entry *entry)
fe->mtime_nanos = archive_entry_mtime_nsec(entry);
fe->atime = archive_entry_atime(entry);
fe->atime_nanos = archive_entry_atime_nsec(entry);
+ if (fe->atime == 0 && fe->atime_nanos == 0)
+ fe->atime = a->start_time;
}
if (a->deferred & TODO_FFLAGS) {
@@ -720,6 +723,7 @@ archive_write_disk_new(void)
a->archive.vtable = archive_write_disk_vtable();
a->lookup_uid = trivial_lookup_uid;
a->lookup_gid = trivial_lookup_gid;
+ a->start_time = time(NULL);
#ifdef HAVE_GETEUID
a->user_uid = geteuid();
#endif /* HAVE_GETEUID */
@@ -1625,11 +1629,13 @@ set_time(struct archive_write_disk *a)
times[0].tv_sec = archive_entry_atime(a->entry);
times[0].tv_usec = archive_entry_atime_nsec(a->entry) / 1000;
- /* If no atime was specified, use mtime instead. */
- if (times[0].tv_sec == 0 && times[0].tv_usec == 0) {
- times[0].tv_sec = times[1].tv_sec;
- times[0].tv_usec = times[1].tv_usec;
- }
+ /* If no atime was specified, use start time instead. */
+ /* In theory, it would be marginally more correct to use
+ * time(NULL) here, but that would cost us an extra syscall
+ * for little gain. */
+ if (times[0].tv_sec == 0 && times[0].tv_usec == 0)
+ times[0].tv_sec = a->start_time;
+
#ifdef HAVE_FUTIMES
if (a->fd >= 0 && futimes(a->fd, times) == 0) {
return (ARCHIVE_OK);
@@ -1668,6 +1674,8 @@ set_time(struct archive_write_disk *a)
times.modtime = archive_entry_mtime(a->entry);
times.actime = archive_entry_atime(a->entry);
+ if (times.actime == 0)
+ times.actime = a->start_time;
if (!S_ISLNK(a->mode) && utime(a->name, &times) != 0) {
archive_set_error(&a->archive, errno,
"Can't update time for %s", a->name);
diff --git a/lib/libarchive/test/test_write_disk.c b/lib/libarchive/test/test_write_disk.c
index 6acc6ce..cb9ef62 100644
--- a/lib/libarchive/test/test_write_disk.c
+++ b/lib/libarchive/test/test_write_disk.c
@@ -60,6 +60,7 @@ static void create_reg_file(struct archive_entry *ae, const char *msg)
static const char data[]="abcdefghijklmnopqrstuvwxyz";
struct archive *ad;
struct stat st;
+ time_t now;
/* Write the entry to disk. */
assert((ad = archive_write_disk_new()) != NULL);
@@ -97,10 +98,11 @@ static void create_reg_file(struct archive_entry *ae, const char *msg)
failure("st.st_mode=%o archive_entry_mode(ae)=%o",
st.st_mode, archive_entry_mode(ae));
assertEqualInt(st.st_mode, (archive_entry_mode(ae) & ~UMASK));
- failure("No atime was specified, so atime should get set to mtime");
- assertEqualInt(st.st_atime, st.st_mtime);
assertEqualInt(st.st_size, sizeof(data));
assertEqualInt(st.st_mtime, 123456789);
+ failure("No atime was specified, so atime should get set to current time");
+ now = time(NULL);
+ assert(st.st_atime <= now && st.st_atime > now - 5);
}
static void create_reg_file2(struct archive_entry *ae, const char *msg)
OpenPOWER on IntegriCloud