-
Notifications
You must be signed in to change notification settings - Fork 64
/
ngx_http_zip_file.c
812 lines (682 loc) · 33.1 KB
/
ngx_http_zip_file.c
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
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
#include "ngx_http_zip_module.h"
#include "ngx_http_zip_file.h"
#include "ngx_http_zip_file_format.h"
#include "ngx_http_zip_endian.h"
#include "ngx_http_zip_headers.h"
#ifdef NGX_ZIP_HAVE_ICONV
#include <iconv.h>
#endif
#ifdef NGX_ZIP_HAVE_ICONV
static ngx_str_t ngx_http_zip_header_charset_name = ngx_string("upstream_http_x_archive_charset");
#endif
static ngx_str_t ngx_http_zip_header_name_separator = ngx_string("upstream_http_x_archive_name_sep");
static ngx_str_t ngx_http_zip_header_name_pass_headers = ngx_string("upstream_http_x_archive_pass_headers");
#define NGX_MAX_UINT16_VALUE 0xffff
// Chunk templates for fast struct init:
static ngx_zip_extra_field_local_t ngx_zip_extra_field_local_template = {
0x5455, /* tag for this extra block type ("UT") */
sizeof(ngx_zip_extra_field_local_t) - 4,
/* total data size for this block */
0x03, /* info bits */
0, /* modification time */
0, /* access time */
};
static ngx_zip_extra_field_central_t ngx_zip_extra_field_central_template = {
0x5455, /* tag for this extra block type ("UT") */
sizeof(ngx_zip_extra_field_central_t) - 4,
/* total data size for this block */
0x03, /* info bits */
0, /* modification time */
};
static ngx_zip_extra_field_unicode_path_t ngx_zip_extra_field_unicode_path_template = {
0x7075, /* Info-ZIP Unicode Path tag */
0,
1, /* version of this extra field, currently 1 (c) */
0, /* crc-32 */
};
static ngx_zip_extra_field_zip64_sizes_only_t ngx_zip_extra_field_zip64_sizes_only_template = {
0x0001, //tag for zip64 extra field
sizeof(ngx_zip_extra_field_zip64_sizes_only_t) - 4,
0,
0,
};
static ngx_zip_extra_field_zip64_offset_only_t ngx_zip_extra_field_zip64_offset_only_template = {
0x0001, //tag for zip64 extra field
sizeof(ngx_zip_extra_field_zip64_offset_only_t) - 4,
0,
};
static ngx_zip_extra_field_zip64_sizes_offset_t ngx_zip_extra_field_zip64_sizes_offset_template = {
0x0001, //tag for zip64 extra field
sizeof(ngx_zip_extra_field_zip64_sizes_offset_t) - 4,
0,
0,
0
};
static ngx_zip_data_descriptor_t ngx_zip_data_descriptor_template = {
0x08074b50, /* data descriptor signature */
0, /* crc-32 */
0, /* compressed size */
0 /* uncompressed size */
};
static ngx_zip_data_descriptor_zip64_t ngx_zip_data_descriptor_zip64_template = {
0x08074b50, /* data descriptor signature */
0, /* crc-32 */
0, /* compressed size */
0 /* uncompressed size */
};
static ngx_zip_local_file_header_t ngx_zip_local_file_header_template = {
0x04034b50, /* local file header signature */
0x0a, /* version needed to extract */
zip_utf8_flag | zip_missing_crc32_flag, /* general purpose bit flag */
0, /* compression method */
0, /* last mod file date/time */
0, /* crc-32 */
0xffffffff, /* compressed size */
0xffffffff, /* uncompressed size */
0, /* file name length */
sizeof(ngx_zip_extra_field_local_t),
/* extra field length */
};
static ngx_zip_central_directory_file_header_t ngx_zip_central_directory_file_header_template = {
0x02014b50, /* central file header signature */
zip_version_zip64, /* version made by */
zip_version_default, /* version needed to extract */
zip_utf8_flag | zip_missing_crc32_flag, /* general purpose bit flag */
0, /* compression method */
0, /* last mod file time */
0, /* crc-32 */
0xffffffff, /* compressed size */
0xffffffff, /* uncompressed size */
0, /* file name length */
sizeof(ngx_zip_extra_field_central_t),
/* extra field length */
0, /* file comment length */
0, /* disk number start */
0, /* internal file attributes */
0x81a4000, /* external file attributes */
0xffffffff /* relative offset of local header */
};
static ngx_zip_end_of_central_directory_record_t ngx_zip_end_of_central_directory_record_template = {
0x06054b50, /* end of central dir signature */
0, /* number of this disk */
0, /* number of the disk with the start of the central directory */
0xffff, /* total number of entries in the central directory on this disk */
0xffff, /* total number of entries in the central directory */
0xFFFFFFFF, /* size of the central directory */
0xffffffff, /* offset of start of central directory w.r.t. starting disk # */
0 /* .ZIP file comment length */
};
static ngx_zip_zip64_end_of_central_directory_record_t ngx_zip_zip64_end_of_central_directory_record_template = {
0x06064b50, //signature for zip64 EOCD
sizeof(ngx_zip_zip64_end_of_central_directory_record_t)-12, //size of this record (+variable fields, but minus signature and this size field), Size = SizeOfFixedFields + SizeOfVariableData - 12
zip_version_zip64, //created by
zip_version_zip64, //needed
0, //this disk number
0, // num of disk with start of CD
0,
0,
0,
0, // cd offset with respect to starting disk number
};
static ngx_zip_zip64_end_of_central_directory_locator_t ngx_zip_zip64_end_of_central_directory_locator_template = {
0x07064b50, //signature
0, // number of disk with start of zip64 end of central directory
0, // offset of central directory
1 //dics number total
};
//-----------------------------------------------------------------------------------------------------------
// Convert UNIX timestamp to DOS timestamp
static ngx_uint_t ngx_dos_time(time_t t)
{
ngx_tm_t tm;
ngx_gmtime(t, &tm); // ngx_gmtime does the mon++ and year += 1900 for us
return (tm.ngx_tm_sec >> 1)
+ (tm.ngx_tm_min << 5)
+ (tm.ngx_tm_hour << 11)
+ (tm.ngx_tm_mday << 16)
+ (tm.ngx_tm_mon << 21)
+ ((tm.ngx_tm_year-1980) << 25);
}
static void
ngx_http_zip_truncate_buffer(ngx_buf_t *b,
ngx_http_zip_range_t *piece_range, ngx_http_zip_range_t *req_range)
{
if (req_range && piece_range && b) {
if (req_range->end < piece_range->end)
b->last -= piece_range->end - req_range->end;
if (req_range->start > piece_range->start)
b->pos += req_range->start - piece_range->start;
}
}
static const char *
ngx_http_zip_strnrstr(const char * str, ngx_uint_t n,
const char * sub_str, ngx_uint_t sub_n)
{
ngx_int_t max_shift = n - sub_n;
ngx_uint_t i;
for(; max_shift >= 0; --max_shift) {
for(i = 0; i <= n; ++i) {
if(i == sub_n)
return &str[max_shift];
else if(str[max_shift + i] != sub_str[i])
break;
}
}
return NULL;
}
#ifndef ICONV_CSNMAXLEN
#define ICONV_CSNMAXLEN 64
#endif
// make our proposed ZIP-file chunk map
ngx_int_t
ngx_http_zip_generate_pieces(ngx_http_request_t *r, ngx_http_zip_ctx_t *ctx)
{
ngx_uint_t i, piece_i;
off_t offset = 0;
time_t unix_time = 0;
ngx_uint_t dos_time = 0;
ngx_http_zip_file_t *file;
ngx_http_zip_piece_t *header_piece, *file_piece, *trailer_piece, *cd_piece;
ngx_http_variable_value_t *vv;
if ((vv = ngx_palloc(r->pool, sizeof(ngx_http_variable_value_t))) == NULL)
return NGX_ERROR;
ctx->unicode_path = 0;
#ifdef NGX_ZIP_HAVE_ICONV
iconv_t *iconv_cd = NULL;
#endif
// Let's try to find special header that contains separator string.
// What for this strange separator string you ask?
// Sometimes there might be a problem converting UTF-8 to zips native
// charset(CP866), because it's not 1:1 conversion. So my solution is to
// developers provide their own version of converted filename and pass it
// to mod_zip along with UTF-8 filename which will go straight to Unicode
// path extra field (thanks to tony2001). So separator is a solution that doesn't
// break current format. And allows passing file name in both formats as one string.
//
// Normally we pass:
// CRC32 <size> <path> <filename>\n
// ...
// * <filename> passed to archive as filename w/o conversion
// * UFT-8 flag for filename is set
//
// tony2001's X-Archive-Charset: <charset> way:
// CRC32 <size> <path> <filename>\n
// ...
// * <filename> is accepted to be UTF-8 string
// * <filename>, converted to <charset> and passed to archive as filename
// * <filename> passed to Unicode path extra field
// * UFT-8 flag for filename is not set
//
// My X-Archive-Name-Sep: <sep> solution:
// CRC32 <size> <path> <native-filename><sep><utf8-filename>\n
// ...
// * <native-filename> passed to archive as filename w/o conversion
// * <utf8-filename> passed to Unicode path extra field
// * UFT-8 flag for filename is not set
//
// You just need to provide separator that won't interfere with file names. I suggest using '/'
// as it is ASCII character and forbidden on most (if not all) platforms as a part of filename.
//
// Empty separator string means no UTF-8 version provided. Usefull when we need to pass only
// names encoded in native charset. It's equal to 'X-Archive-Charset: native;'.
// Note: Currently it is impossible after '[PATCH] Support for UTF-8 file names.'(4f61592b)
// because UFT-8 flag (zip_utf8_flag) is set default for templates.
ngx_int_t variable_header_status = NGX_OK;
if (r->upstream) {
variable_header_status = ngx_http_zip_variable_unknown_header(r, vv, &ngx_http_zip_header_name_separator,
&r->upstream->headers_in.headers.part, sizeof("upstream_http_")-1);
} else {
vv->not_found = 1;
}
if (variable_header_status == NGX_OK && !vv->not_found) {
ctx->native_charset = 1;
if(vv->len)
ctx->unicode_path = 1;
} else {
#ifdef NGX_ZIP_HAVE_ICONV
variable_header_status = NGX_OK;
if (r->upstream) {
variable_header_status = ngx_http_zip_variable_unknown_header(r, vv, &ngx_http_zip_header_charset_name,
&r->upstream->headers_in.headers.part, sizeof("upstream_http_")-1);
} else {
vv->not_found = 1;
}
if (variable_header_status == NGX_OK && !vv->not_found
&& ngx_strncmp(vv->data, "utf8", sizeof("utf8") - 1) != 0) {
if(ngx_strncmp(vv->data, "native", sizeof("native") - 1))
{
char encoding[ICONV_CSNMAXLEN];
snprintf(encoding, sizeof(encoding), "%s//TRANSLIT//IGNORE", vv->data);
iconv_cd = iconv_open((const char *)encoding, "utf-8");
if (iconv_cd == (iconv_t)(-1)) {
ngx_log_error(NGX_LOG_WARN, r->connection->log, errno,
"mod_zip: iconv_open('%s', 'utf-8') failed",
vv->data);
iconv_cd = NULL;
}
else
{
ctx->unicode_path = 1;
ctx->native_charset = 1;
}
}
else
ctx->native_charset = 1;
}
#endif
}
// pieces: for each file: header, data, footer (if needed) -> 2 or 3 per file
// plus file footer (CD + [zip64 end + zip64 locator +] end of cd) in one chunk
ctx->pieces_n = ctx->files.nelts * (2 + (!!ctx->missing_crc32)) + 1;
if ((ctx->pieces = ngx_palloc(r->pool, sizeof(ngx_http_zip_piece_t) * ctx->pieces_n)) == NULL)
return NGX_ERROR;
ctx->cd_size = 0;
unix_time = time(NULL);
dos_time = ngx_dos_time(unix_time);
for (piece_i = i = 0; i < ctx->files.nelts; i++) {
file = &((ngx_http_zip_file_t *)ctx->files.elts)[i];
file->offset = offset;
file->unix_time = unix_time;
file->dos_time = dos_time;
if(ctx->unicode_path) {
#ifdef NGX_ZIP_HAVE_ICONV
if (iconv_cd) {
size_t inlen = file->filename.len, outlen, outleft;
u_char *p, *in;
//inbuf
file->filename_utf8.data = ngx_pnalloc(r->pool, file->filename.len + 1);
ngx_memcpy(file->filename_utf8.data, file->filename.data, file->filename.len);
file->filename_utf8.len = file->filename.len;
file->filename_utf8.data[file->filename.len] = '\0';
//outbuf
outlen = outleft = inlen * sizeof(int) + 15;
file->filename.data = ngx_pnalloc(r->pool, outlen + 1);
in = file->filename_utf8.data;
p = file->filename.data;
//reset state
iconv(iconv_cd, NULL, NULL, NULL, NULL);
//convert the string
iconv(iconv_cd, (char **)&in, &inlen, (char **)&p, &outleft);
//XXX if (res == (size_t)-1) { ? }
file->filename.len = outlen - outleft;
file->filename_utf8_crc32 = ngx_crc32_long(file->filename_utf8.data, file->filename_utf8.len);
}
else
#endif
if(vv->len) {
const char * sep = ngx_http_zip_strnrstr((const char*)file->filename.data, file->filename.len,
(const char*)vv->data, vv->len);
if(sep) {
size_t utf8_len = file->filename.len - vv->len - (size_t)(sep - (const char *)file->filename.data);
file->filename_utf8.data = ngx_pnalloc(r->pool, utf8_len);
file->filename_utf8.len = utf8_len;
ngx_memcpy(file->filename_utf8.data, sep + vv->len, utf8_len);
file->filename.len -= utf8_len + vv->len;
file->filename_utf8_crc32 = ngx_crc32_long(file->filename_utf8.data, file->filename_utf8.len);
} /* else { } */ // Separator not found. Okay, no extra field for this one then.
}
}
if(offset >= (off_t) NGX_MAX_UINT32_VALUE)
ctx->zip64_used = file->need_zip64_offset = 1;
if(file->size >= (off_t) NGX_MAX_UINT32_VALUE)
ctx->zip64_used = file->need_zip64 = 1;
ctx->cd_size += sizeof(ngx_zip_central_directory_file_header_t) + file->filename.len + sizeof(ngx_zip_extra_field_central_t);
if (file->need_zip64) {
if (file->need_zip64_offset) {
ctx->cd_size += sizeof(ngx_zip_extra_field_zip64_sizes_offset_t);
} else {
ctx->cd_size += sizeof(ngx_zip_extra_field_zip64_sizes_only_t);
}
} else if (file->need_zip64_offset) {
ctx->cd_size += sizeof(ngx_zip_extra_field_zip64_offset_only_t);
}
if (ctx->unicode_path && file->filename_utf8.len)
ctx->cd_size += sizeof(ngx_zip_extra_field_unicode_path_t) + file->filename_utf8.len;
header_piece = &ctx->pieces[piece_i++];
header_piece->type = zip_header_piece;
header_piece->file = file;
header_piece->range.start = offset;
offset += sizeof(ngx_zip_local_file_header_t) + file->filename.len + sizeof(ngx_zip_extra_field_local_t);
if (file->need_zip64)
offset += sizeof(ngx_zip_extra_field_zip64_sizes_only_t);
if (ctx->unicode_path && file->filename_utf8.len)
offset += sizeof(ngx_zip_extra_field_unicode_path_t) + file->filename_utf8.len;
header_piece->range.end = offset;
file_piece = &ctx->pieces[piece_i++];
file_piece->type = file->is_directory ? zip_dir_piece : zip_file_piece;
file_piece->file = file;
file_piece->range.start = offset;
file_piece->range.end = offset += file->size; //!note: (sizeless chunks): we need file size here / or mark it and modify ranges after
if (file->missing_crc32) { // if incomplete header -> add footer with that info to file
trailer_piece = &ctx->pieces[piece_i++];
trailer_piece->type = zip_trailer_piece;
trailer_piece->file = file;
trailer_piece->range.start = offset;
trailer_piece->range.end = offset += file->need_zip64? sizeof(ngx_zip_data_descriptor_zip64_t) : sizeof(ngx_zip_data_descriptor_t);
//!!TODO: if we want Ranges support - here we know it is impossible for this set
//? check conf/some state and abort?
}
}
#ifdef NGX_ZIP_HAVE_ICONV
if (iconv_cd) {
iconv_close(iconv_cd);
}
#endif
ctx->zip64_used |= offset >= (off_t) NGX_MAX_UINT32_VALUE || ctx->files.nelts >= NGX_MAX_UINT16_VALUE;
ctx->cd_size += sizeof(ngx_zip_end_of_central_directory_record_t);
if (ctx->zip64_used)
ctx->cd_size += sizeof(ngx_zip_zip64_end_of_central_directory_record_t) + sizeof(ngx_zip_zip64_end_of_central_directory_locator_t);
cd_piece = &ctx->pieces[piece_i++];
cd_piece->type = zip_central_directory_piece;
cd_piece->range.start = offset;
cd_piece->range.end = offset += ctx->cd_size;
ctx->pieces_n = piece_i; //!! nasty hack (truncating allocated array without reallocation)
ctx->archive_size = offset;
// Collect names of original request's header fields that
// have to be present in each of the issued sub-requests.
variable_header_status = ngx_http_zip_variable_unknown_header(r, vv, &ngx_http_zip_header_name_pass_headers,
&r->upstream->headers_in.headers.part, sizeof("upstream_http_")-1);
if (variable_header_status == NGX_OK && !vv->not_found) {
ngx_str_t *header;
ngx_int_t len;
u_char *next;
u_char *start = vv->data;
u_char *end = vv->data + vv->len;
// Split the list of names by ':'.
while (start < end) {
next = ngx_strnstr(start, ":", end - start);
if (next == NULL) {
next = end;
}
len = next - start;
if (len) {
if ((header = ngx_array_push(&ctx->pass_srq_headers)) == NULL) {
return NGX_ERROR;
}
if ((header->data = ngx_pnalloc(r->pool, len)) == NULL) {
return NGX_ERROR;
}
ngx_memcpy(header->data, start, len);
header->len = len;
}
start = next + 1;
}
}
return NGX_OK;
}
// make Local File Header chunk with extra fields
ngx_chain_t*
ngx_http_zip_file_header_chain_link(ngx_http_request_t *r, ngx_http_zip_ctx_t *ctx,
ngx_http_zip_piece_t *piece, ngx_http_zip_range_t *range)
{
ngx_chain_t *link;
ngx_buf_t *b;
u_char *p;
ngx_http_zip_file_t *file = piece->file;
ngx_zip_extra_field_local_t extra_field_local;
ngx_zip_extra_field_zip64_sizes_only_t extra_field_zip64;
ngx_zip_local_file_header_t local_file_header;
ngx_zip_extra_field_unicode_path_t extra_field_unicode_path;
size_t len = sizeof(ngx_zip_local_file_header_t) + file->filename.len + sizeof(ngx_zip_extra_field_local_t);
if (file->need_zip64)
len += sizeof(ngx_zip_extra_field_zip64_sizes_only_t);
if (ctx->unicode_path && file->filename_utf8.len)
len += sizeof(ngx_zip_extra_field_unicode_path_t) + file->filename_utf8.len;
if ((link = ngx_alloc_chain_link(r->pool)) == NULL || (b = ngx_calloc_buf(r->pool)) == NULL
|| (b->pos = ngx_pcalloc(r->pool, len)) == NULL)
return NULL;
b->memory = 1;
b->last = b->pos + len;
/* A note about the ZIP format: in order to appease all ZIP software I
* could find, the local file header contains the file sizes but not the
* CRC-32, even though setting the third bit of the general purpose bit
* flag would indicate that all three fields should be zeroed out.
*/
local_file_header = ngx_zip_local_file_header_template;
local_file_header.signature = htole32(local_file_header.signature);
local_file_header.version = htole16(local_file_header.version);
local_file_header.flags = htole16(local_file_header.flags);
local_file_header.mtime = htole32(file->dos_time);
local_file_header.filename_len = htole16(file->filename.len);
if (ctx->native_charset) {
local_file_header.flags &= htole16(~zip_utf8_flag);
}
extra_field_zip64 = ngx_zip_extra_field_zip64_sizes_only_template;
extra_field_zip64.tag = htole16(extra_field_zip64.tag);
extra_field_zip64.size = htole16(extra_field_zip64.size);
if (file->need_zip64) {
local_file_header.version = htole16(zip_version_zip64);
local_file_header.extra_field_len += sizeof(ngx_zip_extra_field_zip64_sizes_only_t);
extra_field_zip64.uncompressed_size = extra_field_zip64.compressed_size = htole64(file->size);
} else {
local_file_header.compressed_size = htole32(file->size);
local_file_header.uncompressed_size = htole32(file->size);
}
extra_field_unicode_path = ngx_zip_extra_field_unicode_path_template;
extra_field_unicode_path.tag = htole16(extra_field_unicode_path.tag);
if (ctx->unicode_path && file->filename_utf8.len) {
extra_field_unicode_path.crc32 = htole32(file->filename_utf8_crc32);
extra_field_unicode_path.size = htole16(sizeof(ngx_zip_extra_field_unicode_path_t) + file->filename_utf8.len);
local_file_header.extra_field_len += sizeof(ngx_zip_extra_field_unicode_path_t) + file->filename_utf8.len;
}
local_file_header.extra_field_len = htole16(local_file_header.extra_field_len);
if (!file->missing_crc32) {
local_file_header.flags &= htole16(~zip_missing_crc32_flag);
local_file_header.crc32 = htole32(file->crc32);
}
extra_field_local = ngx_zip_extra_field_local_template;
extra_field_local.tag = htole16(extra_field_local.tag);
extra_field_local.size = htole16(extra_field_local.size);
extra_field_local.mtime = htole32(file->unix_time);
extra_field_local.atime = htole32(file->unix_time);
p = b->pos;
ngx_memcpy(p, &local_file_header, sizeof(ngx_zip_local_file_header_t));
p += sizeof(ngx_zip_local_file_header_t);
ngx_memcpy(p, file->filename.data, file->filename.len);
p += file->filename.len;
ngx_memcpy(p, &extra_field_local, sizeof(ngx_zip_extra_field_local_t));
p += sizeof(ngx_zip_extra_field_local_t);
if (file->need_zip64) {
ngx_memcpy(p, &extra_field_zip64, sizeof(ngx_zip_extra_field_zip64_sizes_only_t));
p += sizeof(ngx_zip_extra_field_zip64_sizes_only_t);
}
if (ctx->unicode_path && file->filename_utf8.len) {
ngx_memcpy(p, &extra_field_unicode_path, sizeof(ngx_zip_extra_field_unicode_path_t));
p += sizeof(ngx_zip_extra_field_unicode_path_t);
ngx_memcpy(p, file->filename_utf8.data, file->filename_utf8.len);
p += file->filename_utf8.len;
}
ngx_http_zip_truncate_buffer(b, &piece->range, range);
link->buf = b;
link->next = NULL;
return link;
}
// make buffer with 32/64 bit Data Descriptor chunk, this follows files with incomplete headers
ngx_chain_t*
ngx_http_zip_data_descriptor_chain_link(ngx_http_request_t *r, ngx_http_zip_piece_t *piece, ngx_http_zip_range_t *range)
{
ngx_chain_t *link;
ngx_buf_t *b;
ngx_http_zip_file_t *file = piece->file;
size_t struct_size = file->need_zip64? sizeof(ngx_zip_data_descriptor_zip64_t) : sizeof(ngx_zip_data_descriptor_t);
union {
ngx_zip_data_descriptor_t descriptor;
ngx_zip_data_descriptor_zip64_t descriptor64;
} data;
if ((link = ngx_alloc_chain_link(r->pool)) == NULL || (b = ngx_calloc_buf(r->pool)) == NULL
|| (b->pos = ngx_palloc(r->pool, struct_size)) == NULL)
return NULL;
b->memory = 1;
b->last = b->pos + struct_size;
if (!file->need_zip64) {
data.descriptor = ngx_zip_data_descriptor_template;
data.descriptor.signature = htole32(data.descriptor.signature);
data.descriptor.crc32 = htole32(file->crc32);
data.descriptor.compressed_size = data.descriptor.uncompressed_size = htole32(file->size);
} else {
data.descriptor64 = ngx_zip_data_descriptor_zip64_template;
data.descriptor64.signature = htole32(data.descriptor64.signature);
data.descriptor64.crc32 = htole32(file->crc32);
data.descriptor64.compressed_size = data.descriptor64.uncompressed_size = htole64(file->size);
}
ngx_memcpy(b->pos, &data, struct_size);
ngx_http_zip_truncate_buffer(b, &piece->range, range);
link->buf = b;
link->next = NULL;
return link;
}
//make archive footer: Central Directory, Zip64 Central Directory End, Zip64 locator and Central Directory end chunks
ngx_chain_t *
ngx_http_zip_central_directory_chain_link(ngx_http_request_t *r, ngx_http_zip_ctx_t *ctx, ngx_http_zip_piece_t *piece, ngx_http_zip_range_t *range)
{
//nb: this is to be called only after 'generate pieces'
ngx_chain_t *trailer;
ngx_buf_t *trailer_buf;
u_char *p;
off_t cd_size;
ngx_uint_t i;
ngx_array_t *files;
ngx_zip_end_of_central_directory_record_t eocdr;
ngx_zip_zip64_end_of_central_directory_record_t eocdr64;
ngx_zip_zip64_end_of_central_directory_locator_t locator64;
if (!ctx || !ctx->cd_size || (trailer = ngx_alloc_chain_link(r->pool)) == NULL
|| (trailer_buf = ngx_calloc_buf(r->pool)) == NULL
|| (p = ngx_palloc(r->pool, ctx->cd_size)) == NULL)
return NULL;
files = &ctx->files;
trailer->buf = trailer_buf;
trailer->next = NULL;
trailer_buf->pos = p;
trailer_buf->last = p + ctx->cd_size;
trailer_buf->last_buf = 1;
trailer_buf->sync = 1;
trailer_buf->memory = 1;
for (i = 0; i < files->nelts; i++)
p = ngx_http_zip_write_central_directory_entry(p, &((ngx_http_zip_file_t *)files->elts)[i], ctx);
eocdr = ngx_zip_end_of_central_directory_record_template;
eocdr.signature = htole32(eocdr.signature);
if (files->nelts < NGX_MAX_UINT16_VALUE) {
eocdr.disk_entries_n = htole16(files->nelts);
eocdr.entries_n = htole16(files->nelts);
}
cd_size = ctx->cd_size - sizeof(ngx_zip_end_of_central_directory_record_t)
- (!!ctx->zip64_used)*(sizeof(ngx_zip_zip64_end_of_central_directory_record_t)
+ sizeof(ngx_zip_zip64_end_of_central_directory_locator_t));
if (cd_size < (off_t) NGX_MAX_UINT32_VALUE)
eocdr.size = htole32(cd_size);
if (piece->range.start < (off_t) NGX_MAX_UINT32_VALUE)
eocdr.offset = htole32(piece->range.start);
if (ctx->zip64_used) {
eocdr64 = ngx_zip_zip64_end_of_central_directory_record_template;
eocdr64.signature = htole32(eocdr64.signature);
eocdr64.size = htole64(eocdr64.size);
eocdr64.version_made_by = htole16(eocdr64.version_made_by);
eocdr64.version_needed = htole16(eocdr64.version_made_by);
eocdr64.cd_n_entries_on_this_disk = eocdr64.cd_n_entries_total = htole64(files->nelts);
eocdr64.cd_size = htole64(cd_size);
eocdr64.cd_offset = htole64(piece->range.start);
ngx_memcpy(p, &eocdr64, sizeof(ngx_zip_zip64_end_of_central_directory_record_t));
p += sizeof(ngx_zip_zip64_end_of_central_directory_record_t);
locator64 = ngx_zip_zip64_end_of_central_directory_locator_template;
locator64.signature = htole32(locator64.signature);
locator64.disks_total_n = htole32(locator64.disks_total_n);
locator64.cd_relative_offset = htole64(piece->range.start + cd_size);
ngx_memcpy(p, &locator64, sizeof(ngx_zip_zip64_end_of_central_directory_locator_t));
p += sizeof(ngx_zip_zip64_end_of_central_directory_locator_t);
}
ngx_memcpy(p, &eocdr, sizeof(ngx_zip_end_of_central_directory_record_t));
ngx_http_zip_truncate_buffer(trailer->buf, &piece->range, range);
return trailer;
}
u_char *
ngx_http_zip_write_central_directory_entry(u_char *p, ngx_http_zip_file_t *file,
ngx_http_zip_ctx_t *ctx)
{
ngx_zip_extra_field_central_t extra_field_central;
ngx_zip_central_directory_file_header_t central_directory_file_header;
ngx_zip_extra_field_zip64_offset_only_t extra_zip64_offset;
ngx_zip_extra_field_zip64_sizes_offset_t extra_zip64_offset_size;
ngx_zip_extra_field_zip64_sizes_only_t extra_zip64_size;
ngx_zip_extra_field_unicode_path_t extra_field_unicode_path;
void* extra_zip64_ptr = NULL; //!!
size_t extra_zip64_ptr_size = 0;
central_directory_file_header = ngx_zip_central_directory_file_header_template;
central_directory_file_header.signature = htole32(central_directory_file_header.signature);
central_directory_file_header.version_made_by = htole16(central_directory_file_header.version_made_by);
central_directory_file_header.version_needed = htole16(central_directory_file_header.version_needed);
central_directory_file_header.flags = htole16(central_directory_file_header.flags);
if (file->is_directory) {
central_directory_file_header.attr_external = zip_directory_attr_external;
}
central_directory_file_header.attr_external = htole32(central_directory_file_header.attr_external);
central_directory_file_header.mtime = htole32(file->dos_time);
central_directory_file_header.crc32 = htole32(file->crc32);
if (ctx->native_charset) {
central_directory_file_header.flags &= htole16(~zip_utf8_flag);
}
if (!file->need_zip64) {
central_directory_file_header.compressed_size = htole32(file->size);
central_directory_file_header.uncompressed_size = htole32(file->size);
}
central_directory_file_header.filename_len = htole16(file->filename.len);
if (!file->need_zip64_offset)
central_directory_file_header.offset = htole32(file->offset);
if (!file->missing_crc32)
central_directory_file_header.flags &= htole16(~zip_missing_crc32_flag);
if (file->need_zip64) {
central_directory_file_header.version_needed = zip_version_zip64;
if (file->need_zip64_offset){
extra_zip64_offset_size = ngx_zip_extra_field_zip64_sizes_offset_template;
extra_zip64_offset_size.tag = htole16(extra_zip64_offset_size.tag);
extra_zip64_offset_size.size = htole16(extra_zip64_offset_size.size);
extra_zip64_offset_size.relative_header_offset = htole64(file->offset);
extra_zip64_offset_size.compressed_size = extra_zip64_offset_size.uncompressed_size = htole64(file->size);
extra_zip64_ptr = &extra_zip64_offset_size;
extra_zip64_ptr_size = sizeof(extra_zip64_offset_size);
} else { //zip64 only
extra_zip64_size = ngx_zip_extra_field_zip64_sizes_only_template;
extra_zip64_size.tag = htole16(extra_zip64_size.tag);
extra_zip64_size.size = htole16(extra_zip64_size.size);
extra_zip64_size.compressed_size = extra_zip64_size.uncompressed_size = htole64(file->size);
extra_zip64_ptr = &extra_zip64_size;
extra_zip64_ptr_size = sizeof(extra_zip64_size);
}
} else if (file->need_zip64_offset) {
extra_zip64_offset = ngx_zip_extra_field_zip64_offset_only_template;
extra_zip64_offset.tag = htole16(extra_zip64_offset.tag);
extra_zip64_offset.size = htole16(extra_zip64_offset.size);
extra_zip64_offset.relative_header_offset = htole64(file->offset);
extra_zip64_ptr = &extra_zip64_offset;
extra_zip64_ptr_size = sizeof(extra_zip64_offset);
}
central_directory_file_header.extra_field_len=sizeof(ngx_zip_extra_field_central_t)+extra_zip64_ptr_size;
extra_field_central = ngx_zip_extra_field_central_template;
extra_field_central.tag = htole16(extra_field_central.tag);
extra_field_central.size = htole16(extra_field_central.size);
extra_field_central.mtime = htole32(file->unix_time);
extra_field_unicode_path = ngx_zip_extra_field_unicode_path_template;
extra_field_unicode_path.tag = htole16(extra_field_unicode_path.tag);
if (ctx->unicode_path && file->filename_utf8.len) {
extra_field_unicode_path.crc32 = htole32(file->filename_utf8_crc32);
extra_field_unicode_path.size = htole16(sizeof(ngx_zip_extra_field_unicode_path_t) + file->filename_utf8.len);
central_directory_file_header.extra_field_len += sizeof(ngx_zip_extra_field_unicode_path_t) + file->filename_utf8.len;
}
central_directory_file_header.extra_field_len = htole16(central_directory_file_header.extra_field_len);
ngx_memcpy(p, ¢ral_directory_file_header, sizeof(ngx_zip_central_directory_file_header_t));
p += sizeof(ngx_zip_central_directory_file_header_t);
ngx_memcpy(p, file->filename.data, file->filename.len);
p += file->filename.len;
ngx_memcpy(p, &extra_field_central, sizeof(ngx_zip_extra_field_central_t));
p += sizeof(ngx_zip_extra_field_central_t);
if (extra_zip64_ptr) {
ngx_memcpy(p, extra_zip64_ptr, extra_zip64_ptr_size);
p += extra_zip64_ptr_size;
}
if (ctx->unicode_path && file->filename_utf8.len) {
ngx_memcpy(p, &extra_field_unicode_path, sizeof(ngx_zip_extra_field_unicode_path_t));
p += sizeof(ngx_zip_extra_field_unicode_path_t);
ngx_memcpy(p, file->filename_utf8.data, file->filename_utf8.len);
p += file->filename_utf8.len;
}
return p;
}