ziplimit.txt
上传用户:andy_li
上传日期:2007-01-06
资源大小:1019k
文件大小:8k
源码类别:

压缩解压

开发平台:

MultiPlatform

  1. ziplimit.txt
  2. A) Hard limits of the Zip archive format:
  3.    Number of entries in Zip archive:            64 k (2^16 - 1 entries)
  4.    Compressed size of archive entry:            4 GByte (2^32 - 1 Bytes)
  5.    Uncompressed size of entry:                  4 GByte (2^32 - 1 Bytes)
  6.    Size of single-volume Zip archive:           4 GByte (2^32 - 1 Bytes)
  7.    Per-volume size of multi-volume archives:    4 GByte (2^32 - 1 Bytes)
  8.    Number of parts for multi-volume archives:   64 k (1^16 - 1 parts)
  9.    Total size of multi-volume archive:          256 TByte (4G * 64k)
  10.    The number of archive entries and of multivolume parts are limited by
  11.    the structure of the "end-of-central-directory" record, where the these
  12.    numbers are stored in 2-Byte fields.
  13.    Length of an archive entry name:             64 kByte (2^16 - 1)
  14.    Length of archive member comment:            64 kByte (2^16 - 1)
  15.    Total length of "extra field":               64 kByte (2^16 - 1)
  16.    Length of a single e.f. block:               64 kByte (2^16 - 1)
  17.    Length of archive comment:                   64 KByte (2^16 - 1)
  18.    Additional limitation claimed by PKWARE:
  19.      Size of local-header structure (fixed fields of 30 Bytes + filename
  20.       local extra field):                     < 64 kByte
  21.      Size of central-directory structure (46 Bytes + filename +
  22.       central extra field + member comment):  < 64 kByte
  23. B) Implementation limits of UnZip:
  24.  1. Size limits caused by file I/O and decompression handling:
  25.    Size of Zip archive:                 2 GByte (2^31 - 1 Bytes)
  26.    Compressed size of archive entry:    2 GByte (2^31 - 1 Bytes)
  27.    -->> ONLY for imploded and reduced archive members: <<--
  28.    Uncompressed size of archive entry:  2 GByte (2^31 - 1 Bytes)
  29.    Multi-volume archive creation is not supported.
  30.    Memory requirements are mostly independent of the archive size
  31.    and archive contents.
  32.    In general, UnZip needs a fixed amount of internal buffer space
  33.    plus the size to hold the complete information of the currently
  34.    processed entrie's local header. Here, a large extra field
  35.    (could be up to 64 kByte) may exceed the available memory
  36.    for MSDOS 16-bit executables (when they were compiled in small
  37.    or medium memory model, with a fixed 64kByte limit on data space).
  38.    The other exception where memory requirements scale with "larger"
  39.    archives is the "restore directory attributes" feature. Here, the
  40.    directory attributes info for each restored directory has to be hold
  41.    in memory until the whole archive has been processed. So, the amount
  42.    of memory needed to hold this info scales with the number of restored
  43.    directories and may cause memory problems when a lot of directories
  44.    are restored in a single run.
  45. C) Implementation limits of the Zip executables:
  46.  1. Size limits caused by file I/O and compression handling:
  47.    Size of Zip archive:                 2 GByte (2^31 - 1 Bytes)
  48.    Compressed size of archive entry:    2 GByte (2^31 - 1 Bytes)
  49.    Uncompressed size of entry:          2 GByte (2^31 - 1 Bytes),
  50.                                         (could/should be 4 GBytes...)
  51.    Multi-volume archive creation is not supported.
  52.  2. Limits caused by handling of archive contents lists
  53.  2.1. Number of archive entries (freshen, update, delete)
  54.      a) 16-bit executable:              64k (2^16 -1) or 32k (2^15 - 1),
  55.                                         (unsigned vs. signed type of size_t)
  56.      a1) 16-bit executable:             <16k ((2^16)/4)
  57.          (The smaller limit a1) results from the array size limit of
  58.          the "qsort()" function.)
  59.      b) stack space needed by qsort to sort list of archive entries
  60.      NOTE: In the current executables, overflows of limits a) and b) are NOT
  61.            checked!
  62.      c) amount of free memory to hold "central directory information" of
  63.         all archive entries; one entry needs:
  64.         96 bytes (32-bit) resp. 80 bytes (16-bit)
  65.         + 3 * length of entry name
  66.         + length of zip entry comment (when present)
  67.         + length of extra field(s) (when present, e.g.: UT needs 9 bytes)
  68.         + some bytes for book-keeping of memory allocation
  69.    Conclusion:
  70.      For systems with limited memory space (MSDOS, small AMIGAs, other
  71.      environments without virtual memory), the number of archive entries
  72.      is most often limited by condition c).
  73.      For example, with approx. 100 kBytes of free memory after loading and
  74.      initializing the program, a 16-bit DOS Zip cannot process more than 600 to 1000 (+)
  75.      archive entries. (For the 16-bit Windows DLL, limit c) is less important
  76.      because Windows executables are not restricted to the 1024k area of real
  77.      mode memory. The 16-bit Windows Zip is limited by conditions a1) and b),
  78.      say: at maximum approx. 16000 entries!)
  79.  2.2. Number of "new" entries (add operation)
  80.      In addition to the restrictions above (2.1.), the following limits
  81.      caused by the handling of the "new files" list apply:
  82.      a) 16-bit executable:              <16k ((2^64)/4)
  83.      b) stack size required for "qsort" operation on "new entries" list.
  84.      NOTE: In the current executables, the overflow checks for these limits
  85.            are missing!
  86.      c) amount of free memory to hold the directory info list for new entries;
  87.         one entry needs:
  88.         24 bytes (32-bit) resp. 22 bytes (16-bit)
  89.         + 3 * length of filename
  90. D) Some technical remarks:
  91.  1. The 2GByte size limit on archive files is a consequence of the portable
  92.     C implementation of the Info-ZIP programs.
  93.     Zip archive processing requires random access to the archive file for
  94.     jumping between different parts of the archive's structure.
  95.     In standard C, this is done via stdio functions fseek()/ftell() resp.
  96.     unix-io functions lseek()/tell(). In many (most?) C implementations,
  97.     these functions use "signed long" variables to hold offset pointers
  98.     into sequential files. In most cases, this is a signed 32-bit number,
  99.     which is limited to ca. 2E+09. There may be specific C runtime library
  100.     implementations that interpret the offset numbers as unsigned, but for
  101.     us, this is not reliable in the context of portable programming.
  102.  2. The 2GByte limit on the size of a single compressed archive member
  103.     is again a consequence of the implementation in C.
  104.     The variables used internally to count the size of the compressed
  105.     data stream are of type "long", which is guaranted to be at least
  106.     32-bit wide on all supported environments.
  107.     But, why do we use "signed" long and not "unsigned long"?
  108.     Throughout the I/O handling of the compressed data stream, the
  109.     sign bit of the "long" numbers is (mis-)used as a kind of overflow
  110.     detection. In the end, this is caused by the fact that standard C
  111.     lacks any overflow checking on integer arithmetics and does not
  112.     support access to the underlying hardware's overflow detection
  113.     (the status bits, especially "carry" and "overflow" of the CPU's
  114.     flags-register) in a system-independent manner.
  115.     So, we "misuse" the most-significant bit of the compressed data
  116.     size counters as carry bit for efficient overflow/underflow detection.
  117.     We could change the code to a different method of overflow detection,
  118.     by using a bunch of "sanity" comparisons (kind of "is the calculated
  119.     result plausible when compared with the operands"). But, this would
  120.     "blow up" the code of the "inner loop", with remarkable loss of
  121.     processing speed. Or, we could reduce the amount of consistency checks
  122.     of the compressed data (e.g. detection of premature end of stream) to
  123.     an absolute minimum, at the cost of the programs' stability when
  124.     processing corrupted data.
  125.     Summary: Changing the compression/decompression core routines to
  126.     be "unsigned safe" would require excessive recoding, with little
  127.     gain on maximum processable uncompressed size (a gain can only be
  128.     expected for hardly compressable data), but at severe costs on
  129.     performance, stability and maintainability.  Therefore, it is
  130.     quite unlikely that this will ever happen for Zip/UnZip.
  131.     Anyway, the Zip archive format is more and more showing its age...
  132.     The effort to lift the 2GByte limits should be better invested in
  133.     creating a successor for the Zip archive format and tools.
  134. Please report any problems to:  Zip-Bugs@lists.wku.edu
  135. Last updated:  30 April 1998, Christian Spieler