Skip to content

Commit 227bf59

Browse files
René Scharfegitster
authored andcommitted
archive-zip: write extended timestamp
File modification times in ZIP files are encoded in DOS format: local time with a granularity of two seconds. Add an extra field to all archive entries to also record the mtime in Unix' fashion, as UTC with a granularity of one second. This has the desirable side-effect of convincing Info-ZIP unzip 6.00 to respect general purpose flag 11, which is used to indicate that a file name is encoded in UTF-8. Any extra field would do, actually, but the extended timestamp is a reasonably small one (22 bytes per entry). Archives created by Info-ZIP zip 3.0 contain it, too (but with ctime and atime as well). Signed-off-by: Rene Scharfe <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 88182ba commit 227bf59

File tree

1 file changed

+24
-3
lines changed

1 file changed

+24
-3
lines changed

archive-zip.c

Lines changed: 24 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,14 @@ struct zip_dir_trailer {
7676
unsigned char _end[1];
7777
};
7878

79+
struct zip_extra_mtime {
80+
unsigned char magic[2];
81+
unsigned char extra_size[2];
82+
unsigned char flags[1];
83+
unsigned char mtime[4];
84+
unsigned char _end[1];
85+
};
86+
7987
/*
8088
* On ARM, padding is added at the end of the struct, so a simple
8189
* sizeof(struct ...) reports two bytes more than the payload size
@@ -85,6 +93,9 @@ struct zip_dir_trailer {
8593
#define ZIP_DATA_DESC_SIZE offsetof(struct zip_data_desc, _end)
8694
#define ZIP_DIR_HEADER_SIZE offsetof(struct zip_dir_header, _end)
8795
#define ZIP_DIR_TRAILER_SIZE offsetof(struct zip_dir_trailer, _end)
96+
#define ZIP_EXTRA_MTIME_SIZE offsetof(struct zip_extra_mtime, _end)
97+
#define ZIP_EXTRA_MTIME_PAYLOAD_SIZE \
98+
(ZIP_EXTRA_MTIME_SIZE - offsetof(struct zip_extra_mtime, flags))
8899

89100
static void copy_le16(unsigned char *dest, unsigned int n)
90101
{
@@ -186,6 +197,7 @@ static int write_zip_entry(struct archiver_args *args,
186197
{
187198
struct zip_local_header header;
188199
struct zip_dir_header dirent;
200+
struct zip_extra_mtime extra;
189201
unsigned long attr2;
190202
unsigned long compressed_size;
191203
unsigned long crc;
@@ -266,8 +278,13 @@ static int write_zip_entry(struct archiver_args *args,
266278
}
267279
}
268280

281+
copy_le16(extra.magic, 0x5455);
282+
copy_le16(extra.extra_size, ZIP_EXTRA_MTIME_PAYLOAD_SIZE);
283+
extra.flags[0] = 1; /* just mtime */
284+
copy_le32(extra.mtime, args->time);
285+
269286
/* make sure we have enough free space in the dictionary */
270-
direntsize = ZIP_DIR_HEADER_SIZE + pathlen;
287+
direntsize = ZIP_DIR_HEADER_SIZE + pathlen + ZIP_EXTRA_MTIME_SIZE;
271288
while (zip_dir_size < zip_dir_offset + direntsize) {
272289
zip_dir_size += ZIP_DIRECTORY_MIN_SIZE;
273290
zip_dir = xrealloc(zip_dir, zip_dir_size);
@@ -283,7 +300,7 @@ static int write_zip_entry(struct archiver_args *args,
283300
copy_le16(dirent.mdate, zip_date);
284301
set_zip_dir_data_desc(&dirent, size, compressed_size, crc);
285302
copy_le16(dirent.filename_length, pathlen);
286-
copy_le16(dirent.extra_length, 0);
303+
copy_le16(dirent.extra_length, ZIP_EXTRA_MTIME_SIZE);
287304
copy_le16(dirent.comment_length, 0);
288305
copy_le16(dirent.disk, 0);
289306
copy_le16(dirent.attr1, 0);
@@ -301,11 +318,13 @@ static int write_zip_entry(struct archiver_args *args,
301318
else
302319
set_zip_header_data_desc(&header, size, compressed_size, crc);
303320
copy_le16(header.filename_length, pathlen);
304-
copy_le16(header.extra_length, 0);
321+
copy_le16(header.extra_length, ZIP_EXTRA_MTIME_SIZE);
305322
write_or_die(1, &header, ZIP_LOCAL_HEADER_SIZE);
306323
zip_offset += ZIP_LOCAL_HEADER_SIZE;
307324
write_or_die(1, path, pathlen);
308325
zip_offset += pathlen;
326+
write_or_die(1, &extra, ZIP_EXTRA_MTIME_SIZE);
327+
zip_offset += ZIP_EXTRA_MTIME_SIZE;
309328
if (stream && method == 0) {
310329
unsigned char buf[STREAM_BUFFER_SIZE];
311330
ssize_t readlen;
@@ -402,6 +421,8 @@ static int write_zip_entry(struct archiver_args *args,
402421
zip_dir_offset += ZIP_DIR_HEADER_SIZE;
403422
memcpy(zip_dir + zip_dir_offset, path, pathlen);
404423
zip_dir_offset += pathlen;
424+
memcpy(zip_dir + zip_dir_offset, &extra, ZIP_EXTRA_MTIME_SIZE);
425+
zip_dir_offset += ZIP_EXTRA_MTIME_SIZE;
405426
zip_dir_entries++;
406427

407428
return 0;

0 commit comments

Comments
 (0)