package comby

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file zip.ml

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
(***********************************************************************)
(*                                                                     *)
(*                         The CamlZip library                         *)
(*                                                                     *)
(*            Xavier Leroy, projet Cristal, INRIA Rocquencourt         *)
(*                                                                     *)
(*  Copyright 2001 Institut National de Recherche en Informatique et   *)
(*  en Automatique.  All rights reserved.  This file is distributed    *)
(*  under the terms of the GNU Lesser General Public License, with     *)
(*  the special exception on linking described in file LICENSE.        *)
(*                                                                     *)
(*  Modifications: Rijnard van Tonder (ZIP64 read support)             *)
(*                                                                     *)
(***********************************************************************)

(* $Id$ *)

(* Module [Zip]: reading and writing ZIP archives *)

exception Error of string * string * string

let debug =
  try Sys.getenv "DEBUG_CAMLZIP" |> ignore; true with _ -> false

let is_zip64 = ref false

let read1 = input_byte
let read2 ic =
  let lb = read1 ic in let hb = read1 ic in lb lor (hb lsl 8)
let read4 ic =
  let lw = read2 ic in let hw = read2 ic in
  Int32.logor (Int32.of_int lw) (Int32.shift_left (Int32.of_int hw) 16)
let read4_int ic =
  let lw = read2 ic in let hw = read2 ic in
  if hw > max_int lsr 16 then raise (Error("", "", "32-bit data too large"));
  lw lor (hw lsl 16)
let read8_int ic =
  let ldw = read4_int ic in let hdw = read4_int ic in
  ldw lor (hdw lsl 32) (* let read4_int take care of the trouble *)
let readstring ic n =
  let s = Bytes.create n in
  really_input ic s 0 n; Bytes.unsafe_to_string s

let read8_string ic =
  let value = readstring ic 8 in
  let byte_string = ref "" in
  String.iter (fun char -> byte_string := (Format.sprintf "%02x" @@ Char.code char)^(!byte_string)) value;
  Int64.of_string ("0x"^(!byte_string))

let write1 = output_byte
let write2 oc n =
  write1 oc n; write1 oc (n lsr 8)
let write4 oc n =
  write2 oc (Int32.to_int n);
  write2 oc (Int32.to_int (Int32.shift_right_logical n 16))
let write4_int oc n =
  write2 oc n;
  write2 oc (n lsr 16)
let writestring oc s =
  output_string oc s

type compression_method = Stored | Deflated

type entry =
  { filename: string;
    extra: string;
    comment: string;
    methd: compression_method;
    mtime: float;
    crc: int32;
    uncompressed_size: int;
    compressed_size: int;
    is_directory: bool;
    file_offset: int64 }

type in_file =
  { if_filename: string;
    if_channel: Stdlib.in_channel;
    if_entries: entry list;
    if_directory: (string, entry) Hashtbl.t;
    if_comment: string }

let entries ifile = ifile.if_entries
let comment ifile = ifile.if_comment

type out_file =
  { of_filename: string;
    of_channel: Stdlib.out_channel;
    mutable of_entries: entry list;
    of_comment: string }

(* Return the position of the last occurrence of [pattern] in [buf],
   or -1 if not found. *)

let strrstr (pattern: string) (buf: bytes) ofs len =
  let rec search i j =
    if i < ofs then -1
    else if j >= String.length pattern then i
    else if String.get pattern j = Bytes.get buf (i + j) then search i (j+1)
    else search (i-1) 0
  in search (ofs + len - String.length pattern) 0

(* Determine if a file name is a directory (ends with /) *)

let filename_is_directory name =
  String.length name > 0 && name.[String.length name - 1] = '/'

(* Convert between Unix dates and DOS dates *)

let unixtime_of_dostime time date =
  fst(Unix.mktime
        { Unix.tm_sec = (time lsl 1) land 0x3e;
          Unix.tm_min = (time lsr 5) land 0x3f;
          Unix.tm_hour = (time lsr 11) land 0x1f;
          Unix.tm_mday = date land 0x1f;
          Unix.tm_mon = ((date lsr 5) land 0xf) - 1;
          Unix.tm_year = ((date lsr 9) land 0x7f) + 80;
          Unix.tm_wday = 0;
          Unix.tm_yday = 0;
          Unix.tm_isdst = false })

let dostime_of_unixtime t =
  let tm = Unix.localtime t in
  (tm.Unix.tm_sec lsr 1
   + (tm.Unix.tm_min lsl 5)
   + (tm.Unix.tm_hour lsl 11),
   tm.Unix.tm_mday
   + (tm.Unix.tm_mon + 1) lsl 5
   + (tm.Unix.tm_year - 80) lsl 9)

type zip_format =
  | Zip of int * int32 * int32 * string
  | Zip64 of int64 * int64 * int64

let read_ecd_zip64 filename filelen ic : zip_format =
  let buf = Bytes.create 256 in
  let rec find_ecd_zip64 pos len =
    if pos <= 0L || Int64.sub filelen pos >= 0x100000000L then
      raise (Error("", "", "end of central directory not found, not a ZIP64 file"));
    let toread = if pos >= 128L then 128 else Int64.to_int pos in
    (* Make room for "toread" extra bytes, and read them *)
    Bytes.blit buf 0 buf toread (256 - toread);
    let newpos = Int64.(sub pos (of_int toread)) in
    LargeFile.seek_in ic newpos;
    really_input ic buf 0 toread;
    let newlen = min (toread + len) 256 in
    (* Search for magic number *)
    let ofs = strrstr "PK\006\006" buf 0 newlen in
    if ofs < 0 then
      find_ecd_zip64 newpos newlen
    else
      Int64.(add newpos (of_int ofs))
  in
  let offset = find_ecd_zip64 filelen 0 in
  if debug then Format.printf "Found ZIP64 ecd at offset %s@." @@ Int64.to_string offset;
  LargeFile.seek_in ic offset;
  let magic = read4 ic in
  assert (magic = Int32.of_int 0x06064b50);
  let ecd_record_size = read8_string ic in
  let version_made_by = read2 ic in
  let version_needed = read2 ic in
  let disk_no = read4 ic in
  let cd_disk_no = read4 ic in
  let _disk_entries = read8_string ic in
  let cd_entries = read8_string ic in
  let cd_size = read8_string ic in
  (*let cd_offset = read8 ic in*) (* Problem: the Int32 conversion in read8 can overflow. Use string read throughout. *)
  let cd_offset = read8_string ic in
  if debug then Format.printf "ZIP64 metadata:@.";
  if debug then Format.printf "\tecd_record_size: %s@." @@ Int64.to_string ecd_record_size;
  if debug then Format.printf "\tversion_made_by: %s@." @@ Int.to_string version_made_by;
  if debug then Format.printf "\tversion_needed: %s@." @@ Int.to_string version_needed;
  if debug then Format.printf "\tdisk_no: %s@." @@ Int32.to_string disk_no;
  if debug then Format.printf "\tcd_disk_no: %s@." @@ Int32.to_string cd_disk_no;
  if debug then Format.printf "\tcd_entries: %s@." @@ Int64.to_string cd_entries;
  if debug then Format.printf "\tcd_size: %s@." @@ Int64.to_string cd_size;
  if debug then Format.printf "\tcd_offset: %s@." @@ Int64.to_string cd_offset;
  Zip64 (cd_entries, cd_size, cd_offset)

(* Read end of central directory record *)

let read_ecd filename ic =
  let buf = Bytes.create 256 in
  let filelen = LargeFile.in_channel_length ic in
  let rec find_ecd pos len : int64 option =
    (* On input, bytes 0 ... len - 1 of buf reflect what is at pos in ic *)
    if pos <= 0L || Int64.sub filelen pos >= 0x10000L then
      (* End of central diretory for ZIP file not found. Try treating the file as ZIP64. *)
      None
    else
      let toread = if pos >= 128L then 128 else Int64.to_int pos in
      (* Make room for "toread" extra bytes, and read them *)
      Bytes.blit buf 0 buf toread (256 - toread);
      let newpos = Int64.(sub pos (of_int toread)) in
      LargeFile.seek_in ic newpos;
      really_input ic buf 0 toread;
      let newlen = min (toread + len) 256 in
      (* Search for magic number *)
      let ofs = strrstr "PK\005\006" buf 0 newlen in
      if ofs < 0 || newlen < 22 ||
         (let comment_len =
            (Char.code (Bytes.get buf (ofs + 20)))
            lor ((Char.code (Bytes.get buf (ofs + 21))) lsl 8) in
          Int64.(add newpos (of_int (ofs + 22 + comment_len))) <> filelen) then
        find_ecd newpos newlen
      else
        Some Int64.(add newpos (of_int ofs))
  in
  match find_ecd filelen 0 with
  | Some offset ->
    LargeFile.seek_in ic offset;
    let magic = read4 ic in
    let disk_no = read2 ic in
    let cd_disk_no = read2 ic in
    let _disk_entries = read2 ic in
    let cd_entries = read2 ic in
    let cd_size = read4 ic in
    let cd_offset = read4 ic in
    let comment_len = read2 ic in
    let comment = readstring ic comment_len in
    assert (magic = Int32.of_int 0x06054b50);
    if disk_no <> 0 || cd_disk_no <> 0 then raise (Error("", "", "multi-disk ZIP files not supported"));
    if cd_entries = 0xFFFF then
      read_ecd_zip64 filename filelen ic
    else
      Zip (cd_entries, cd_size, cd_offset, comment)
  | None ->
    read_ecd_zip64 filename filelen ic

(* Read central directory *)

let int64_of_uint32 n =
  Int64.(logand (of_int32 n) 0xFFFF_FFFFL)

let read_cd_zip64 filename ic cd_entries cd_offset cd_bound =
  try
    LargeFile.seek_in ic cd_offset;
    let e = ref [] in
    let entrycnt = ref 0 in
    if debug then Format.printf "Looping over ZIP64 cd size %s@." @@ Int64.to_string cd_bound;
    while (LargeFile.pos_in ic < cd_bound) do
      incr entrycnt;
      let magic = read4 ic in
      let _version_made_by = read2 ic in
      let _version_needed = read2 ic in
      let flags = read2 ic in
      let methd = read2 ic in
      let lastmod_time = read2 ic in
      let lastmod_date = read2 ic in
      let crc = read4 ic in
      let compr_size = read4_int ic in (* The spec doesn't say that this is read8 for ZIP64, but we treat it that way in the file header. Much confuse. *)
      let uncompr_size = read4_int ic in
      let name_len = read2 ic in
      let extra_len = read2 ic in
      let comment_len = read2 ic in
      let _disk_number = read2 ic in
      let _internal_attr = read2 ic in
      let _external_attr = read4 ic in
      let header_offset = int64_of_uint32 (read4 ic) in
      let name = readstring ic name_len in
      let extra = readstring ic extra_len in
      let comment = readstring ic comment_len in
      if magic <> Int32.of_int 0x02014b50 then
        raise (Error("", "", "wrong file header in central directory"));
      if flags land 1 <> 0 then
        raise (Error("", "", "encrypted entries not supported"));

      e := { filename = name;
             extra = extra;
             comment = comment;
             methd = (match methd with
                   0 -> Stored
                 | 8 -> Deflated
                 | _ -> raise (Error("", "", "unknown compression method")));
             mtime = unixtime_of_dostime lastmod_time lastmod_date;
             crc = crc;
             uncompressed_size = uncompr_size;
             compressed_size = compr_size;
             is_directory = filename_is_directory name;
             file_offset = header_offset
           } :: !e
    done;
    assert (cd_bound = LargeFile.pos_in ic);
    assert (cd_entries <= 0x100000000L);
    List.rev !e
  with End_of_file ->
    raise (Error("", "", "end-of-file while reading central directory"))

let read_cd filename ic cd_entries cd_offset cd_bound =
  let cd_bound = int64_of_uint32 cd_bound in
  try
    LargeFile.seek_in ic (int64_of_uint32 cd_offset);
    let e = ref [] in
    let entrycnt = ref 0 in
    while (LargeFile.pos_in ic < cd_bound) do
      incr entrycnt;
      let magic = read4 ic in
      let _version_made_by = read2 ic in
      let _version_needed = read2 ic in
      let flags = read2 ic in
      let methd = read2 ic in
      let lastmod_time = read2 ic in
      let lastmod_date = read2 ic in
      let crc = read4 ic in
      let compr_size = read4_int ic in
      let uncompr_size = read4_int ic in
      let name_len = read2 ic in
      let extra_len = read2 ic in
      let comment_len = read2 ic in
      let _disk_number = read2 ic in
      let _internal_attr = read2 ic in
      let _external_attr = read4 ic in
      let header_offset = int64_of_uint32 (read4 ic) in
      let name = readstring ic name_len in
      let extra = readstring ic extra_len in
      let comment = readstring ic comment_len in
      if magic <> Int32.of_int 0x02014b50 then
        raise (Error("", "", "wrong file header in central directory"));
      if flags land 1 <> 0 then
        raise (Error("", "", "encrypted entries not supported"));

      e := { filename = name;
             extra = extra;
             comment = comment;
             methd = (match methd with
                   0 -> Stored
                 | 8 -> Deflated
                 | _ -> raise (Error("", "", "unknown compression method")));
             mtime = unixtime_of_dostime lastmod_time lastmod_date;
             crc = crc;
             uncompressed_size = uncompr_size;
             compressed_size = compr_size;
             is_directory = filename_is_directory name;
             file_offset = header_offset
           } :: !e
    done;
    assert((cd_bound = (LargeFile.pos_in ic)) &&
           (cd_entries = 65535 || cd_entries = !entrycnt land 0xffff));
    List.rev !e
  with End_of_file ->
    raise (Error("", "", "end-of-file while reading central directory"))

(* Open a ZIP file for reading *)

let open_in filename =
  let ic = Stdlib.open_in_bin filename in
  try
    match read_ecd filename ic with
    | Zip (cd_entries, cd_size, cd_offset, cd_comment) ->
      let entries =
        read_cd filename ic cd_entries cd_offset (Int32.add cd_offset cd_size) in
      let dir = Hashtbl.create (cd_entries / 3) in
      List.iter (fun e -> Hashtbl.add dir e.filename e) entries;
      { if_filename = filename;
        if_channel = ic;
        if_entries = entries;
        if_directory = dir;
        if_comment = cd_comment }
    | Zip64 (cd_entries, cd_size, cd_offset) ->
      let entries = read_cd_zip64 filename ic cd_entries cd_offset (Int64.add cd_offset cd_size) in
      (* TODO add a check here that detects the problematic case if cd_entries
         is greater than representable OCaml int 2**30 *)
      let dir = Hashtbl.create (Int64.to_int cd_entries / 3) in
      List.iter (fun e -> Hashtbl.add dir e.filename e) entries;
      is_zip64 := true;
      { if_filename = filename;
        if_channel = ic;
        if_entries = entries;
        if_directory = dir;
        if_comment = "" }
  with exn ->
    Stdlib.close_in ic; raise exn

(* Close a ZIP file opened for reading *)

let close_in ifile =
  Stdlib.close_in ifile.if_channel

(* Return the info associated with an entry *)

let find_entry ifile name =
  Hashtbl.find ifile.if_directory name

(* Position on an entry *)

let goto_entry ifile e =
  try
    let ic = ifile.if_channel in
    LargeFile.seek_in ic e.file_offset;
    let magic = read4 ic in
    let _version_needed = read2 ic in
    let _flags = read2 ic in
    let _methd = read2 ic in
    let _lastmod_time = read2 ic in
    let _lastmod_date = read2 ic in
    let _crc = read4 ic in
    (* read8_int can raise if the value is too large, but we don't care what it
       is otherwise. The ZIP we're working with may not be respecting this spec,
       so do not allow this yet. *)
    let _compr_size = if true then read4_int ic else read8_int ic in
    let _uncompr_size = if true then read4_int ic else read8_int ic in
    let filename_len = read2 ic in
    let extra_len = read2 ic in
    (* The ZIP we're working with may not be respecting this spec,
           so do not allow to skip past 30. *)
    let next_entry_offset = if true then 30 else 38 in
    if debug then Format.printf "Validate offset: filename_len is %d and filename is %s@." filename_len e.filename;
    if magic <> Int32.of_int 0x04034b50 then
      raise (Error("", "", "wrong local file header"));
    (* Could validate information read against directory entry, but
       what the heck *)
    LargeFile.seek_in ifile.if_channel
      (Int64.add e.file_offset (Int64.of_int (next_entry_offset + filename_len + extra_len)))
  with End_of_file ->
    raise (Error("", "", "truncated local file header"))

(* Read the contents of an entry as a string *)

let read_entry ifile e =
  try
    goto_entry ifile e;
    let res = Bytes.create e.uncompressed_size in
    match e.methd with
      Stored ->
      if e.compressed_size <> e.uncompressed_size then
        raise (Error("", "", "wrong size for stored entry"));
      really_input ifile.if_channel res 0 e.uncompressed_size;
      Bytes.unsafe_to_string res
    | Deflated ->
      let in_avail = ref e.compressed_size in
      let out_pos = ref 0 in
      begin try
          Zlib.uncompress ~header:false
            (fun buf ->
               let read = input ifile.if_channel buf 0
                   (min !in_avail (Bytes.length buf)) in
               in_avail := !in_avail - read;
               read)
            (fun buf len ->
               if !out_pos + len > Bytes.length res then
                 raise (Error("", "", "wrong size for deflated entry (too much data)"));
               Bytes.blit buf 0 res !out_pos len;
               out_pos := !out_pos + len)
        with Zlib.Error(_, _) ->
          raise (Error("", "", "decompression error"))
      end;
      if !out_pos <> Bytes.length res then
        raise (Error("", "", "wrong size for deflated entry (not enough data)"));
      let crc = Zlib.update_crc Int32.zero res 0 (Bytes.length res) in
      if crc <> e.crc then
        raise (Error("", "", "CRC mismatch"));
      Bytes.unsafe_to_string res
  with End_of_file ->
    raise (Error("", "", "truncated data"))

(* Write the contents of an entry into an out channel *)

let copy_entry_to_channel ifile e oc =
  try
    goto_entry ifile e;
    match e.methd with
      Stored ->
      if e.compressed_size <> e.uncompressed_size then
        raise (Error("", "", "wrong size for stored entry"));
      let buf = Bytes.create 4096 in
      let rec copy n =
        if n > 0 then begin
          let r = input ifile.if_channel buf 0 (min n (Bytes.length buf)) in
          output oc buf 0 r;
          copy (n - r)
        end in
      copy e.uncompressed_size
    | Deflated ->
      let in_avail = ref e.compressed_size in
      let crc = ref Int32.zero in
      begin try
          Zlib.uncompress ~header:false
            (fun buf ->
               let read = input ifile.if_channel buf 0
                   (min !in_avail (Bytes.length buf)) in
               in_avail := !in_avail - read;
               read)
            (fun buf len ->
               output oc buf 0 len;
               crc := Zlib.update_crc !crc buf 0 len)
        with Zlib.Error(_, _) ->
          raise (Error("", "", "decompression error"))
      end;
      if !crc <> e.crc then
        raise (Error("", "", "CRC mismatch"))
  with End_of_file ->
    raise (Error("", "", "truncated data"))

(* Write the contents of an entry to a file *)

let copy_entry_to_file ifile e outfilename =
  let oc = open_out_bin outfilename in
  try
    copy_entry_to_channel ifile e oc;
    close_out oc;
    begin try
        Unix.utimes outfilename e.mtime e.mtime
      with Unix.Unix_error(_, _, _) | Invalid_argument _ -> ()
    end
  with x ->
    close_out oc;
    Sys.remove outfilename;
    raise x

(* Open a ZIP file for writing *)

let open_out ?(comment = "") filename =
  if String.length comment >= 0x10000 then
    raise(Error("", "", "comment too long"));
  { of_filename = filename;
    of_channel = Stdlib.open_out_bin filename;
    of_entries = [];
    of_comment = comment }

(* Close a ZIP file for writing.  Add central directory. *)

let write_directory_entry oc e =
  write4 oc (Int32.of_int 0x02014b50);  (* signature *)
  let version = match e.methd with Stored -> 10 | Deflated -> 20 in
  write2 oc version;                    (* version made by *)
  write2 oc version;                    (* version needed to extract *)
  write2 oc 8;                          (* flags *)
  write2 oc (match e.methd with Stored -> 0 | Deflated -> 8); (* method *)
  let (time, date) = dostime_of_unixtime e.mtime in
  write2 oc time;                       (* last mod time *)
  write2 oc date;                       (* last mod date *)
  write4 oc e.crc;                      (* CRC32 *)
  write4_int oc e.compressed_size;      (* compressed size *)
  write4_int oc e.uncompressed_size;    (* uncompressed size *)
  write2 oc (String.length e.filename); (* filename length *)
  write2 oc (String.length e.extra);    (* extra length *)
  write2 oc (String.length e.comment);  (* comment length *)
  write2 oc 0;                          (* disk number start *)
  write2 oc 0;                          (* internal attributes *)
  write4_int oc 0;                      (* external attributes *)
  write4 oc (Int64.to_int32 e.file_offset); (* offset of local header *)
  writestring oc e.filename;            (* filename *)
  writestring oc e.extra;               (* extra info *)
  writestring oc e.comment              (* file comment *)

let close_out ofile =
  let oc = ofile.of_channel in
  let start_cd = pos_out oc in
  List.iter (write_directory_entry oc) (List.rev ofile.of_entries);
  let cd_size = pos_out oc - start_cd in
  let num_entries = List.length ofile.of_entries in
  if num_entries >= 0x10000 then
    raise(Error("", "", "too many entries"));
  write4 oc (Int32.of_int 0x06054b50);  (* signature *)
  write2 oc 0;                          (* disk number *)
  write2 oc 0;                          (* number of disk with central dir *)
  write2 oc num_entries;                (* # entries in this disk *)
  write2 oc num_entries;                (* # entries in central dir *)
  write4_int oc cd_size;                (* size of central dir *)
  write4_int oc start_cd;               (* offset of central dir *)
  write2 oc (String.length ofile.of_comment); (* length of comment *)
  writestring oc ofile.of_comment;         (* comment *)
  Stdlib.close_out oc

(* Write a local file header and return the corresponding entry *)

let add_entry_header ofile extra comment level mtime filename =
  if level < 0 || level > 9 then
    raise(Error("", "", "wrong compression level"));
  if String.length filename >= 0x10000 then
    raise(Error("", "", "filename too long"));
  if String.length extra >= 0x10000 then
    raise(Error("", "", "extra data too long"));
  if String.length comment >= 0x10000 then
    raise(Error("", "", "comment too long"));
  let oc = ofile.of_channel in
  let pos = LargeFile.pos_out oc in
  write4 oc (Int32.of_int 0x04034b50);  (* signature *)
  let version = if level = 0 then 10 else 20 in
  write2 oc version;                    (* version needed to extract *)
  write2 oc 8;                          (* flags *)
  write2 oc (if level = 0 then 0 else 8); (* method *)
  let (time, date) = dostime_of_unixtime mtime in
  write2 oc time;                       (* last mod time *)
  write2 oc date;                       (* last mod date *)
  write4 oc Int32.zero;                 (* CRC32 - to be filled later *)
  write4_int oc 0;                      (* compressed size - later *)
  write4_int oc 0;                      (* uncompressed size - later *)
  write2 oc (String.length filename);   (* filename length *)
  write2 oc (String.length extra);      (* extra length *)
  writestring oc filename;              (* filename *)
  writestring oc extra;                 (* extra info *)
  { filename = filename;
    extra = extra;
    comment = comment;
    methd = (if level = 0 then Stored else Deflated);
    mtime = mtime;
    crc = Int32.zero;
    uncompressed_size = 0;
    compressed_size = 0;
    is_directory = filename_is_directory filename;
    file_offset = pos }

(* Write a data descriptor and update the entry *)

let add_data_descriptor ofile crc compr_size uncompr_size entry =
  let oc = ofile.of_channel in
  write4 oc (Int32.of_int 0x08074b50);  (* signature *)
  write4 oc crc;                        (* CRC *)
  write4_int oc compr_size;             (* compressed size *)
  write4_int oc uncompr_size;           (* uncompressed size *)
  { entry with crc = crc;
               uncompressed_size = uncompr_size;
               compressed_size = compr_size }

(* Add an entry with the contents of a string *)

let add_entry data ofile ?(extra = "") ?(comment = "")
    ?(level = 6) ?(mtime = Unix.time()) name =
  let e = add_entry_header ofile extra comment level mtime name in
  let crc = Zlib.update_crc_string Int32.zero data 0 (String.length data) in
  let compr_size =
    match level with
      0 ->
      output_substring ofile.of_channel data 0 (String.length data);
      String.length data
    | _ ->
      let in_pos = ref 0 in
      let out_pos = ref 0 in
      try
        Zlib.compress ~level ~header:false
          (fun buf ->
             let n = min (String.length data - !in_pos)
                 (Bytes.length buf) in
             String.blit data !in_pos buf 0 n;
             in_pos := !in_pos + n;
             n)
          (fun buf n ->
             output ofile.of_channel buf 0 n;
             out_pos := !out_pos + n);
        !out_pos
      with Zlib.Error(_, _) ->
        raise (Error("", "", "compression error")) in
  let e' = add_data_descriptor ofile crc compr_size (String.length data) e in
  ofile.of_entries <- e' :: ofile.of_entries

(* Add an entry with the contents of an in channel *)

let copy_channel_to_entry ic ofile ?(extra = "") ?(comment = "")
    ?(level = 6) ?(mtime = Unix.time()) name =
  let e = add_entry_header ofile extra comment level mtime name in
  let crc = ref Int32.zero in
  let (compr_size, uncompr_size) =
    match level with
      0 ->
      let buf = Bytes.create 4096 in
      let rec copy sz =
        let r = input ic buf 0 (Bytes.length buf) in
        if r = 0 then sz else begin
          crc := Zlib.update_crc !crc buf 0 r;
          output ofile.of_channel buf 0 r;
          copy (sz + r)
        end in
      let size = copy 0 in
      (size, size)
    | _ ->
      let in_pos = ref 0 in
      let out_pos = ref 0 in
      try
        Zlib.compress ~level ~header:false
          (fun buf ->
             let r = input ic buf 0 (Bytes.length buf) in
             crc := Zlib.update_crc !crc buf 0 r;
             in_pos := !in_pos + r;
             r)
          (fun buf n ->
             output ofile.of_channel buf 0 n;
             out_pos := !out_pos + n);
        (!out_pos, !in_pos)
      with Zlib.Error(_, _) ->
        raise (Error("", "", "compression error")) in
  let e' = add_data_descriptor ofile !crc compr_size uncompr_size e in
  ofile.of_entries <- e' :: ofile.of_entries

(* Add an entry with the contents of a file *)

let copy_file_to_entry infilename ofile ?(extra = "") ?(comment = "")
    ?(level = 6) ?mtime name =
  let ic = open_in_bin infilename in
  let mtime' =
    match mtime with
      Some t -> mtime
    | None ->
      try Some((Unix.stat infilename).Unix.st_mtime)
      with Unix.Unix_error(_,_,_) -> None in
  try
    copy_channel_to_entry ic ofile ~extra ~comment ~level ?mtime:mtime' name;
    Stdlib.close_in ic
  with x ->
    Stdlib.close_in ic; raise x


(* Add an entry whose content will be produced by the caller *)

let add_entry_generator ofile ?(extra = "") ?(comment = "")
    ?(level = 6) ?(mtime = Unix.time()) name =
  let e = add_entry_header ofile extra comment level mtime name in
  let crc = ref Int32.zero in
  let compr_size = ref 0 in
  let uncompr_size = ref 0 in
  let finished = ref false in
  let check () =
    if !finished then
      raise (Error("", "", "entry already finished"))
  in
  let finish () =
    finished := true;
    let e' = add_data_descriptor ofile !crc !compr_size !uncompr_size e in
    ofile.of_entries <- e' :: ofile.of_entries
  in
  match level with
  | 0 ->
    (fun buf pos len ->
       check ();
       output ofile.of_channel buf pos len;
       compr_size := !compr_size + len;
       uncompr_size := !uncompr_size + len
    ),
    (fun () ->
       check ();
       finish ()
    )
  | _ ->
    let (send, flush) = Zlib.compress_direct ~level ~header:false
        (fun buf n ->
           output ofile.of_channel buf 0 n;
           compr_size := !compr_size + n)
    in
    (fun buf pos len ->
       check ();
       try
         send buf pos len;
         uncompr_size := !uncompr_size + len;
         crc := Zlib.update_crc !crc buf pos len
       with Zlib.Error(_, _) ->
         raise (Error("", "", "compression error"))
    ),
    (fun () ->
       check ();
       try
         flush ();
         finish ()
       with Zlib.Error(_, _) ->
         raise (Error("", "", "compression error"))
    )
OCaml

Innovation. Community. Security.