1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
|
/* $OpenBSD: zipopen.c,v 1.1 2022/10/22 14:41:27 millert Exp $ */
/*
* Copyright (c) 2022 Todd C. Miller <Todd.Miller@sudo.ws>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <unistd.h>
#include <limits.h>
#include <zlib.h>
#include "compress.h"
#define MINIMUM(a, b) (((a) < (b)) ? (a) : (b))
/* Signatures for zip file headers we use. */
#define ZIPMAG 0x4b50 /* first two bytes of the zip signature */
#define LOCREM 0x0403 /* remaining two bytes in zip signature */
#define LOCSIG 0x04034b50 /* local file header signature */
#define EXTSIG 0x08074b50 /* extended local header signature */
/* Header sizes. */
#define LOCHDR 30 /* size of local header, including signature */
#define EXTHDR 16 /* size of extended local header, inc sig */
/* General purpose flag bits. */
#define CRPFLG 1 /* flag bit for encrypted entry */
#define EXTFLG 8 /* flag bit for extended local header */
/* Extra field definitions */
#define EF_ZIP64 0x0001 /* zip64 support */
#define EF_TIME 0x5455 /* mtime, atime, ctime in UTC ("UT") */
#define EF_IZUNIX 0x5855 /* UNIX extra field ID ("UX") */
#define Z_STORED 0 /* Stored uncompressed in .zip */
struct zip_state {
z_stream z_stream; /* libz stream */
uint8_t z_buf[Z_BUFSIZE]; /* I/O buffer */
uint8_t z_eof; /* set if end of input file */
uint8_t z_zip64; /* 64-bit file sizes */
uint16_t z_method; /* Z_DEFLATE or Z_STORED */
uint16_t z_flags; /* general purpose flags */
int z_fd; /* zip file descriptor */
uint32_t z_time; /* timestamp (mtime) */
uint32_t z_crc; /* crc32 of uncompressed data */
uint32_t z_ocrc; /* crc32 of uncompressed data (from header) */
uint32_t z_hlen; /* length of the zip header */
uint64_t z_ulen; /* uncompressed data length (from header) */
uint64_t z_total_in; /* # bytes in */
uint64_t z_total_out; /* # bytes out */
};
static int
get_byte(struct zip_state *s)
{
if (s->z_eof)
return EOF;
if (s->z_stream.avail_in == 0) {
ssize_t nread = read(s->z_fd, s->z_buf, Z_BUFSIZE);
if (nread <= 0) {
s->z_eof = 1;
return EOF;
}
s->z_stream.avail_in = nread;
s->z_stream.next_in = s->z_buf;
}
s->z_stream.avail_in--;
return *s->z_stream.next_in++;
}
static uint16_t
get_uint16(struct zip_state *s)
{
uint16_t x;
x = ((uint16_t)(get_byte(s) & 0xff));
x |= ((uint16_t)(get_byte(s) & 0xff))<<8;
return x;
}
static uint32_t
get_uint32(struct zip_state *s)
{
uint32_t x;
x = ((uint32_t)(get_byte(s) & 0xff));
x |= ((uint32_t)(get_byte(s) & 0xff))<<8;
x |= ((uint32_t)(get_byte(s) & 0xff))<<16;
x |= ((uint32_t)(get_byte(s) & 0xff))<<24;
return x;
}
static uint64_t
get_uint64(struct zip_state *s)
{
uint64_t x;
x = ((uint64_t)(get_byte(s) & 0xff));
x |= ((uint64_t)(get_byte(s) & 0xff))<<8;
x |= ((uint64_t)(get_byte(s) & 0xff))<<16;
x |= ((uint64_t)(get_byte(s) & 0xff))<<24;
x |= ((uint64_t)(get_byte(s) & 0xff))<<32;
x |= ((uint64_t)(get_byte(s) & 0xff))<<40;
x |= ((uint64_t)(get_byte(s) & 0xff))<<48;
x |= ((uint64_t)(get_byte(s) & 0xff))<<56;
return x;
}
static int
get_header(struct zip_state *s, char *name, int gotmagic)
{
int c, got_mtime = 0;
uint16_t namelen, extlen;
uint32_t sig;
/* Check the zip local file header signature. */
if (!gotmagic) {
sig = get_uint32(s);
if (sig != LOCSIG) {
errno = EFTYPE;
return -1;
}
} else {
sig = get_uint16(s);
if (sig != LOCREM) {
errno = EFTYPE;
return -1;
}
}
/* Read the local header fields. */
get_uint16(s); /* min version */
s->z_flags = get_uint16(s); /* general purpose flags */
s->z_method = get_uint16(s); /* compression method */
get_uint32(s); /* DOS format mtime */
s->z_ocrc = get_uint32(s); /* 32-bit CRC */
get_uint32(s); /* compressed size */
s->z_ulen = get_uint32(s); /* uncompressed size */
namelen = get_uint16(s); /* file name length */
extlen = get_uint16(s); /* length of extra fields */
s->z_hlen = LOCHDR;
/* Encrypted files not supported. */
if (s->z_flags & CRPFLG) {
errno = EFTYPE;
return -1;
}
/* Supported compression methods are deflate and store. */
if (s->z_method != Z_DEFLATED && s->z_method != Z_STORED) {
errno = EFTYPE;
return -1;
}
/* Store the original file name if present. */
if (namelen != 0 && name != NULL) {
const char *ep = name + PATH_MAX - 1;
for (; namelen > 0; namelen--) {
if ((c = get_byte(s)) == EOF)
break;
s->z_hlen++;
if (c == '\0')
break;
if (name < ep)
*name++ = c;
}
*name = '\0';
}
/* Parse extra fields, if any. */
while (extlen >= 4) {
uint16_t sig;
int fieldlen;
sig = get_uint16(s);
fieldlen = get_uint16(s);
s->z_hlen += 4;
extlen -= 4;
switch (sig) {
case EF_ZIP64:
/* 64-bit file sizes */
s->z_zip64 = 1;
if (fieldlen >= 8) {
s->z_ulen = get_uint64(s);
s->z_hlen += 8;
extlen -= 8;
fieldlen -= 8;
}
break;
case EF_TIME:
/* UTC timestamps */
if ((c = get_byte(s)) == EOF)
break;
s->z_hlen++;
extlen--;
fieldlen--;
if (c & 1) {
got_mtime = 1;
s->z_time = get_uint32(s);
s->z_hlen += 4;
extlen -= 4;
fieldlen -= 4;
}
break;
case EF_IZUNIX:
/* We prefer EF_TIME if it is present. */
if (got_mtime)
break;
/* skip atime, store mtime. */
(void)get_uint32(s);
s->z_time = get_uint32(s);
s->z_hlen += 8;
extlen -= 8;
fieldlen -= 8;
break;
default:
break;
}
/* Consume any unparsed bytes in the field. */
for (; fieldlen > 0; fieldlen--) {
if (get_byte(s) == EOF)
break;
s->z_hlen++;
extlen--;
}
}
for (; extlen > 0; extlen--) {
if (get_byte(s) == EOF)
break;
s->z_hlen++;
}
return 0;
}
void *
zip_ropen(int fd, char *name, int gotmagic)
{
struct zip_state *s;
if (fd < 0)
return NULL;
if ((s = calloc(1, sizeof(*s))) == NULL)
return NULL;
s->z_fd = fd;
s->z_crc = crc32(0, NULL, 0);
/* Request a raw inflate, there is no zlib/gzip header present. */
if (inflateInit2(&s->z_stream, -MAX_WBITS) != Z_OK) {
free(s);
return NULL;
}
s->z_stream.next_in = s->z_buf;
s->z_stream.avail_out = sizeof(s->z_buf);
/* Read the zip header. */
if (get_header(s, name, gotmagic) != 0) {
zip_close(s, NULL, NULL, NULL);
s = NULL;
}
return s;
}
static int
zip_store(struct zip_state *s)
{
int error = Z_OK;
uLong copy_len;
if ((int)s->z_stream.avail_in <= 0)
return s->z_stream.avail_in == 0 ? Z_STREAM_END : Z_DATA_ERROR;
/* For stored files we rely on z_ulen being set. */
copy_len = MINIMUM(s->z_stream.avail_out, s->z_stream.avail_in);
if (copy_len >= s->z_ulen - s->z_total_out) {
/* Don't copy past the end of the file. */
copy_len = s->z_ulen - s->z_total_out;
error = Z_STREAM_END;
}
memcpy(s->z_stream.next_out, s->z_stream.next_in, copy_len);
s->z_stream.next_out += copy_len;
s->z_stream.avail_out -= copy_len;
s->z_stream.next_in += copy_len;
s->z_stream.avail_in -= copy_len;
s->z_total_in += copy_len;
s->z_total_out += copy_len;
return error;
}
int
zip_read(void *cookie, char *buf, int len)
{
struct zip_state *s = cookie;
Bytef *ubuf = buf;
int error = Z_OK;
s->z_stream.next_out = ubuf;
s->z_stream.avail_out = len;
while (error == Z_OK && !s->z_eof && s->z_stream.avail_out != 0) {
if (s->z_stream.avail_in == 0) {
ssize_t nread = read(s->z_fd, s->z_buf, Z_BUFSIZE);
switch (nread) {
case -1:
goto bad;
case 0:
s->z_eof = 1;
continue;
default:
s->z_stream.avail_in = nread;
s->z_stream.next_in = s->z_buf;
}
}
if (s->z_method == Z_DEFLATED) {
/*
* Prevent overflow of z_stream.total_{in,out}
* which may be 32-bit.
*/
uLong prev_total_in = s->z_stream.total_in;
uLong prev_total_out = s->z_stream.total_out;
error = inflate(&s->z_stream, Z_NO_FLUSH);
s->z_total_in += s->z_stream.total_in - prev_total_in;
s->z_total_out += s->z_stream.total_out - prev_total_out;
} else {
/* File stored uncompressed. */
error = zip_store(s);
}
}
switch (error) {
case Z_OK:
s->z_crc = crc32(s->z_crc, ubuf,
(uInt)(s->z_stream.next_out - ubuf));
break;
case Z_STREAM_END:
s->z_eof = 1;
/*
* Check CRC and original size.
* These may be found in the local header or, if
* EXTFLG is set, immediately following the file.
*/
s->z_crc = crc32(s->z_crc, ubuf,
(uInt)(s->z_stream.next_out - ubuf));
if (s->z_flags & EXTFLG) {
/*
* Read data descriptor:
* signature 0x08074b50: 4 bytes
* CRC-32: 4 bytes
* compressed size: 4 or 8 bytes
* uncompressed size: 4 or 8 bytes
*/
get_uint32(s);
s->z_ocrc = get_uint32(s);
if (s->z_zip64) {
get_uint64(s);
s->z_ulen = get_uint64(s);
s->z_hlen += 8;
} else {
get_uint32(s);
s->z_ulen = get_uint32(s);
}
s->z_hlen += EXTHDR;
}
if (s->z_ulen != s->z_total_out) {
errno = EIO;
goto bad;
}
if (s->z_ocrc != s->z_crc) {
errno = EINVAL;
goto bad;
}
break;
case Z_DATA_ERROR:
errno = EINVAL;
goto bad;
case Z_BUF_ERROR:
errno = EIO;
goto bad;
default:
goto bad;
}
return len - s->z_stream.avail_out;
bad:
return -1;
}
int
zip_close(void *cookie, struct z_info *info, const char *name, struct stat *sb)
{
struct zip_state *s = cookie;
int error = 0;
if (s == NULL) {
errno = EINVAL;
return -1;
}
if (info != NULL) {
info->mtime = s->z_time;
info->crc = s->z_crc;
info->hlen = s->z_hlen;
info->total_in = s->z_total_in;
info->total_out = s->z_total_out;
}
if (s->z_stream.state != NULL) {
/* inflateEnd() overwrites errno. */
(void)inflateEnd(&s->z_stream);
}
/*
* Check for the presence of additional files in the .zip.
* Do not remove the original if we cannot extract all the files.
*/
s->z_eof = 0;
if (get_header(s, NULL, 0) == 0) {
errno = EEXIST;
error = -1;
}
(void)close(s->z_fd);
free(s);
return error;
}
|