summaryrefslogtreecommitdiff
path: root/usr.bin/unzip
diff options
context:
space:
mode:
authorJilles Tjoelker <jilles@FreeBSD.org>2015-03-15 21:29:20 +0000
committerJilles Tjoelker <jilles@FreeBSD.org>2015-03-15 21:29:20 +0000
commit7a970ca93778be070100357263497f6770e42e7b (patch)
treecd2b17d139d43087f813195a980f0264ed14c9be /usr.bin/unzip
parentfd06b537741ec29934dac7d4228bb328690922f5 (diff)
downloadsrc-test2-7a970ca93778be070100357263497f6770e42e7b.tar.gz
src-test2-7a970ca93778be070100357263497f6770e42e7b.zip
unzip: Don't subvert vfs.timestamp_precision when setting atime to now.
Also, preserve nanoseconds from libarchive, even though the zip file format does not currently support nanoseconds in timestamps.
Notes
Notes: svn path=/head/; revision=280117
Diffstat (limited to 'usr.bin/unzip')
-rw-r--r--usr.bin/unzip/unzip.c28
1 files changed, 13 insertions, 15 deletions
diff --git a/usr.bin/unzip/unzip.c b/usr.bin/unzip/unzip.c
index 89677a2f0e06..841c9fb203b0 100644
--- a/usr.bin/unzip/unzip.c
+++ b/usr.bin/unzip/unzip.c
@@ -67,9 +67,6 @@ static int u_opt; /* update */
static int v_opt; /* verbose/list */
static int Z1_opt; /* zipinfo mode list files only */
-/* time when unzip started */
-static time_t now;
-
/* debug flag */
static int unzip_debug;
@@ -470,9 +467,9 @@ static void
extract_file(struct archive *a, struct archive_entry *e, char **path)
{
int mode;
- time_t mtime;
+ struct timespec mtime;
struct stat sb;
- struct timeval tv[2];
+ struct timespec ts[2];
int cr, fd, text, warn, check;
ssize_t len;
unsigned char *p, *q, *end;
@@ -480,14 +477,18 @@ extract_file(struct archive *a, struct archive_entry *e, char **path)
mode = archive_entry_mode(e) & 0777;
if (mode == 0)
mode = 0644;
- mtime = archive_entry_mtime(e);
+ mtime.tv_sec = archive_entry_mtime(e);
+ mtime.tv_nsec = archive_entry_mtime_nsec(e);
/* look for existing file of same name */
recheck:
if (lstat(*path, &sb) == 0) {
if (u_opt || f_opt) {
/* check if up-to-date */
- if (S_ISREG(sb.st_mode) && sb.st_mtime >= mtime)
+ if (S_ISREG(sb.st_mode) &&
+ (sb.st_mtim.tv_sec > mtime.tv_sec ||
+ (sb.st_mtim.tv_sec == mtime.tv_sec &&
+ sb.st_mtim.tv_nsec >= mtime.tv_nsec)))
return;
(void)unlink(*path);
} else if (o_opt) {
@@ -593,12 +594,11 @@ recheck:
info("\n");
/* set access and modification time */
- tv[0].tv_sec = now;
- tv[0].tv_usec = 0;
- tv[1].tv_sec = mtime;
- tv[1].tv_usec = 0;
- if (futimes(fd, tv) != 0)
- error("utimes('%s')", *path);
+ ts[0].tv_sec = 0;
+ ts[0].tv_nsec = UTIME_NOW;
+ ts[1] = mtime;
+ if (futimens(fd, ts) != 0)
+ error("futimens('%s')", *path);
if (close(fd) != 0)
error("close('%s')", *path);
}
@@ -1065,8 +1065,6 @@ main(int argc, char *argv[])
if (n_opt + o_opt + u_opt > 1)
errorx("-n, -o and -u are contradictory");
- time(&now);
-
unzip(zipfile);
exit(0);