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

压缩解压

开发平台:

MultiPlatform

  1. The following are the known types of zipfile extra fields as of this
  2. writing.  Extra fields are documented in PKWARE's appnote.txt and are
  3. intended to allow for backward- and forward-compatible extensions to
  4. the zipfile format.  Multiple extra-field types may be chained together,
  5. provided that the total length of all extra-field data is less than 64KB.
  6. (In fact, PKWARE requires that the total length of the entire file header,
  7. including timestamp, file attributes, filename, comment, extra field, etc.,
  8. be no more than 64KB.)
  9. Each extra-field type (or subblock) must contain a four-byte header con-
  10. sisting of a two-byte header ID and a two-byte length (little-endian) for
  11. the remaining data in the subblock.  If there are additional subblocks
  12. within the extra field, the header for each one will appear immediately
  13. following the data for the previous subblock (i.e., with no padding for
  14. alignment).
  15. All integer fields in the descriptions below are in little-endian (Intel)
  16. format unless otherwise specified.  Note that "Short" means two bytes,
  17. "Long" means four bytes, and "Long-Long" means eight bytes, regardless
  18. of their native sizes.  Unless specifically noted, all integer fields should
  19. be interpreted as unsigned (non-negative) numbers.
  20. Christian Spieler, 19980918
  21.                         -------------------------
  22.           Header ID's of 0 thru 31 are reserved for use by PKWARE.
  23.           The remaining ID's can be used by third party vendors for
  24.           proprietary usage.
  25.           The current Header ID mappings defined by PKWARE are:
  26.           0x0007        AV Info
  27.           0x0009        OS/2 extended attributes      (also Info-ZIP)
  28.           0x000a        PKWARE Win95/WinNT FileTimes  [undocumented!]
  29.           0x000c        PKWARE VAX/VMS                (also Info-ZIP)
  30.           0x000d        PKWARE Unix
  31.           0x000f        Patch Descriptor
  32.           The Header ID mappings defined by Info-ZIP and third parties are:
  33.           0x07c8        Info-ZIP Macintosh (old, J. Lee)
  34.           0x2605        ZipIt Macintosh (first version)
  35.           0x2705        ZipIt Macintosh v 1.3.5 and newer (w/o full filename)
  36.           0x334d        Info-ZIP Macintosh (new, D. Haase's 'Mac3' field )
  37.           0x4341        Acorn/SparkFS (David Pilling)
  38.           0x4453        Windows NT security descriptor (binary ACL)
  39.           0x4704        VM/CMS
  40.           0x470f        MVS
  41.           0x4b46        FWKCS MD5 (third party, see below)
  42.           0x4c41        OS/2 access control list (text ACL)
  43.           0x4d49        Info-ZIP VMS (VAX or Alpha)
  44.           0x5356        AOS/VS (binary ACL)
  45.           0x5455        extended timestamp
  46.           0x5855        Info-ZIP Unix (original; also OS/2, NT, etc.)
  47.           0x6542        BeOS (BeBox, PowerMac, etc.)
  48.           0x756e        ASi Unix
  49.           0x7855        Info-ZIP Unix (new)
  50.           0xfb4a        SMS/QDOS
  51. The following are detailed descriptions of the known extra-field block types:
  52.          -OS/2 Extended Attributes Extra Field:
  53.           ====================================
  54.           The following is the layout of the OS/2 extended attributes "extra"
  55.           block.  (Last Revision 19960922)
  56.           Note: all fields stored in Intel low-byte/high-byte order.
  57.           Local-header version:
  58.           Value         Size            Description
  59.           -----         ----            -----------
  60.   (OS/2)  0x0009        Short           tag for this extra block type
  61.           TSize         Short           total data size for this block
  62.           BSize         Long            uncompressed EA data size
  63.           CType         Short           compression type
  64.           EACRC         Long            CRC value for uncompressed EA data
  65.           (var.)        variable        compressed EA data
  66.           Central-header version:
  67.           Value         Size            Description
  68.           -----         ----            -----------
  69.   (OS/2)  0x0009        Short           tag for this extra block type
  70.           TSize         Short           total data size for this block
  71.           BSize         Long            size of uncompressed local EA data
  72.           The value of CType is interpreted according to the "compression
  73.           method" section above; i.e., 0 for stored, 8 for deflated, etc.
  74.           The OS/2 extended attribute structure (FEA2LIST) is compressed and
  75.           then stored in its entirety within this structure.  There will only
  76.           ever be one block of data in the variable-length field.
  77.          -OS/2 Access Control List Extra Field:
  78.           ====================================
  79.           The following is the layout of the OS/2 ACL extra block.
  80.           (Last Revision 19960922)
  81.           Local-header version:
  82.           Value         Size            Description
  83.           -----         ----            -----------
  84.   (ACL)   0x4c41        Short           tag for this extra block type
  85.           TSize         Short           total data size for this block
  86.           BSize         Long            uncompressed ACL data size
  87.           CType         Short           compression type
  88.           EACRC         Long            CRC value for uncompressed ACL data
  89.           (var.)        variable        compressed ACL data
  90.           Central-header version:
  91.           Value         Size            Description
  92.           -----         ----            -----------
  93.   (ACL)   0x4c41        Short           tag for this extra block type
  94.           TSize         Short           total data size for this block
  95.           BSize         Long            size of uncompressed local ACL data
  96.           The value of CType is interpreted according to the "compression
  97.           method" section above; i.e., 0 for stored, 8 for deflated, etc.
  98.           The uncompressed ACL data consist of a text header of the form
  99.           "ACL1:%hX,%hdn", where the first field is the OS/2 ACCINFO acc_attr
  100.           member and the second is acc_count, followed by acc_count strings
  101.           of the form "%s,%hxn", where the first field is acl_ugname (user
  102.           group name) and the second acl_access.  This block type will be
  103.           extended for other operating systems as needed.
  104.          -Windows NT Security Descriptor Extra Field:
  105.           ==========================================
  106.           The following is the layout of the NT Security Descriptor (another
  107.           type of ACL) extra block.  (Last Revision 19960922)
  108.           Local-header version:
  109.           Value         Size            Description
  110.           -----         ----            -----------
  111.   (SD)    0x4453        Short           tag for this extra block type
  112.           TSize         Short           total data size for this block
  113.           BSize         Long            uncompressed SD data size
  114.           Version       Byte            version of uncompressed SD data format
  115.           CType         Short           compression type
  116.           EACRC         Long            CRC value for uncompressed SD data
  117.           (var.)        variable        compressed SD data
  118.           Central-header version:
  119.           Value         Size            Description
  120.           -----         ----            -----------
  121.   (SD)    0x4453        Short           tag for this extra block type
  122.           TSize         Short           total data size for this block
  123.           BSize         Long            size of uncompressed local SD data
  124.           The value of CType is interpreted according to the "compression
  125.           method" section above; i.e., 0 for stored, 8 for deflated, etc.
  126.           Version specifies how the compressed data are to be interpreted
  127.           and allows for future expansion of this extra field type.  Currently
  128.           only version 0 is defined.
  129.           For version 0, the compressed data are to be interpreted as a single
  130.           valid Windows NT SECURITY_DESCRIPTOR data structure, in self-relative
  131.           format.
  132.          -PKWARE Win95/WinNT Extra Field:
  133.           ==============================
  134.           The following description covers PKWARE's undocumented
  135.           Windows 95 & Windows NT extra field, introduced with the
  136.           release of PKZIP for Windows 2.50. (Last Revision 19980425)
  137.           This field has a fixed data size of 32 bytes and is only stored
  138.           as local extra field.
  139.           Value         Size            Description
  140.           -----         ----            -----------
  141.  (WinNT)  0x000a        Short           Tag for this "extra" block type
  142.           TSize         Short           Total Data Size for this block
  143.           Unknwn1       Long            ???? (all 0 ?)
  144.           Unknwn2       Long            ????
  145.           ModTime       Long-Long       64-bit NTFS last-modified filetime
  146.           AccTime       Long-Long       64-bit NTFS last-access filetime
  147.           CreTime       Long-Long       64-bit NTFS creation filetime
  148.           The NTFS filetimes are 64-bit unsigned integers, stored in Intel
  149.           (least significant byte first) byte order. They determine the
  150.           number of 1.0E-07 seconds (1/10th microseconds!) past WinNT "epoch",
  151.           which is "01-Jan-1601 00:00:00 UTC".
  152.          -PKWARE VAX/VMS Extra Field:
  153.           ==========================
  154.           The following is the layout of PKWARE's VAX/VMS attributes "extra"
  155.           block.  (Last Revision 12/17/91)
  156.           Note: all fields stored in Intel low-byte/high-byte order.
  157.           Value         Size            Description
  158.           -----         ----            -----------
  159.   (VMS)   0x000c        Short           Tag for this "extra" block type
  160.           TSize         Short           Total Data Size for this block
  161.           CRC           Long            32-bit CRC for remainder of the block
  162.           Tag1          Short           VMS attribute tag value #1
  163.           Size1         Short           Size of attribute #1, in bytes
  164.           (var.)        Size1           Attribute #1 data
  165.           .
  166.           .
  167.           .
  168.           TagN          Short           VMS attribute tage value #N
  169.           SizeN         Short           Size of attribute #N, in bytes
  170.           (var.)        SizeN           Attribute #N data
  171.           Rules:
  172.           1. There will be one or more of attributes present, which will
  173.              each be preceded by the above TagX & SizeX values.  These
  174.              values are identical to the ATR$C_XXXX and ATR$S_XXXX constants
  175.              which are defined in ATR.H under VMS C.  Neither of these values
  176.              will ever be zero.
  177.           2. No word alignment or padding is performed.
  178.           3. A well-behaved PKZIP/VMS program should never produce more than
  179.              one sub-block with the same TagX value.  Also, there will never
  180.              be more than one "extra" block of type 0x000c in a particular
  181.              directory record.
  182.          -Info-ZIP VMS Extra Field:
  183.           ========================
  184.           The following is the layout of Info-ZIP's VMS attributes extra
  185.           block for VAX or Alpha AXP.  The local-header and central-header
  186.           versions are identical.  (Last Revision 19960922)
  187.           Value         Size            Description
  188.           -----         ----            -----------
  189.   (VMS2)  0x4d49        Short           tag for this extra block type
  190.           TSize         Short           total data size for this block
  191.           ID            Long            block ID
  192.           Flags         Short           info bytes
  193.           BSize         Short           uncompressed block size
  194.           Reserved      Long            (reserved)
  195.           (var.)        variable        compressed VMS file-attributes block
  196.           The block ID is one of the following unterminated strings:
  197.                 "VFAB"          struct FAB
  198.                 "VALL"          struct XABALL
  199.                 "VFHC"          struct XABFHC
  200.                 "VDAT"          struct XABDAT
  201.                 "VRDT"          struct XABRDT
  202.                 "VPRO"          struct XABPRO
  203.                 "VKEY"          struct XABKEY
  204.                 "VMSV"          version (e.g., "V6.1"; truncated at hyphen)
  205.                 "VNAM"          reserved
  206.           The lower three bits of Flags indicate the compression method.  The
  207.           currently defined methods are:
  208.                 0       stored (not compressed)
  209.                 1       simple "RLE"
  210.                 2       deflated
  211.           The "RLE" method simply replaces zero-valued bytes with zero-valued
  212.           bits and non-zero-valued bytes with a "1" bit followed by the byte
  213.           value.
  214.           The variable-length compressed data contains only the data corre-
  215.           sponding to the indicated structure or string.  Typically multiple
  216.           VMS2 extra fields are present (each with a unique block type).
  217.          -Info-ZIP Macintosh Extra Field:
  218.           ==============================
  219.           The following is the layout of the (old) Info-ZIP resource-fork extra
  220.           block for Macintosh.  The local-header and central-header versions
  221.           are identical.  (Last Revision 19960922)
  222.           Value         Size            Description
  223.           -----         ----            -----------
  224.   (Mac)   0x07c8        Short           tag for this extra block type
  225.           TSize         Short           total data size for this block
  226.           "JLEE"        beLong          extra-field signature
  227.           FInfo         16 bytes        Macintosh FInfo structure
  228.           CrDat         beLong          HParamBlockRec fileParam.ioFlCrDat
  229.           MdDat         beLong          HParamBlockRec fileParam.ioFlMdDat
  230.           Flags         beLong          info bits
  231.           DirID         beLong          HParamBlockRec fileParam.ioDirID
  232.           VolName       28 bytes        volume name (optional)
  233.           All fields but the first two are in native Macintosh format
  234.           (big-endian Motorola order, not little-endian Intel).  The least
  235.           significant bit of Flags is 1 if the file is a data fork, 0 other-
  236.           wise.  In addition, if this extra field is present, the filename
  237.           has an extra 'd' or 'r' appended to indicate data fork or resource
  238.           fork.  The 28-byte VolName field may be omitted.
  239.          -ZipIt Macintosh Extra Field (long):
  240.           ==================================
  241.           The following is the layout of the ZipIt extra block for Macintosh.
  242.           The local-header and central-header versions are identical.
  243.           (Last Revision 19970130)
  244.           Value         Size            Description
  245.           -----         ----            -----------
  246.   (Mac2)  0x2605        Short           tag for this extra block type
  247.           TSize         Short           total data size for this block
  248.           "ZPIT"        beLong          extra-field signature
  249.           FnLen         Byte            length of FileName
  250.           FileName      variable        full Macintosh filename
  251.           FileType      Byte[4]         four-byte Mac file type string
  252.           Creator       Byte[4]         four-byte Mac creator string
  253.          -ZipIt Macintosh Extra Field (short):
  254.           ===================================
  255.           The following is the layout of a shortened variant of the
  256.           ZipIt extra block for Macintosh (without "full name" entry).
  257.           This variant is used by ZipIt 1.3.5 and newer for entries that
  258.           do not need a "full Mac filename" record.
  259.           The local-header and central-header versions are identical.
  260.           (Last Revision 19980903)
  261.           Value         Size            Description
  262.           -----         ----            -----------
  263.   (Mac2b) 0x2705        Short           tag for this extra block type
  264.           TSize         Short           total data size for this block
  265.           "ZPIT"        beLong          extra-field signature
  266.           FileType      Byte[4]         four-byte Mac file type string
  267.           Creator       Byte[4]         four-byte Mac creator string
  268.          -Info-ZIP Macintosh Extra Field (new):
  269.           ====================================
  270.           The following is the layout of the (new) Info-ZIP extra
  271.           block for Macintosh, designed by Dirk Haase.
  272.           All values are in little-endian.
  273.           (Last Revision 19981005)
  274.           Local-header version:
  275.           Value         Size            Description
  276.           -----         ----            -----------
  277.   (Mac3)  0x334d        Short           tag for this extra block type ("M3")
  278.           TSize         Short           total data size for this block
  279.           BSize         Long            uncompressed finder attribute data size
  280.           Flags         Short           info bits
  281.           fdType        Byte[4]         Type of the File (4-byte string)
  282.           fdCreator     Byte[4]         Creator of the File (4-byte string)
  283.           (CType)       Short           compression type
  284.           (CRC)         Long            CRC value for uncompressed MacOS data
  285.           Attribs       variable        finder attribute data (see below)
  286.           Central-header version:
  287.           Value         Size            Description
  288.           -----         ----            -----------
  289.   (Mac3)  0x334d        Short           tag for this extra block type ("M3")
  290.           TSize         Short           total data size for this block
  291.           BSize         Long            uncompressed finder attribute data size
  292.           Flags         Short           info bits
  293.           fdType        Byte[4]         Type of the File (4-byte string)
  294.           fdCreator     Byte[4]         Creator of the File (4-byte string)
  295.           The third bit of Flags in both headers indicates whether
  296.           the LOCAL extra field is uncompressed (and therefore whether CType
  297.           and CRC are omitted):
  298.           Bits of the Flags:
  299.               bit 0           if set, file is a data fork; otherwise unset
  300.               bit 1           if set, filename will be not changed
  301.               bit 2           if set, Attribs is uncompressed (no CType, CRC)
  302.               bit 3           if set, date and times are in 64 bit
  303.                               if zero date and times are in 32 bit.
  304.               bit 4           if set, timezone offsets fields for the native
  305.                               Mac times are omitted (UTC support deactivated)
  306.               bits 5-15       reserved;
  307.           Attributes:
  308.           Attribs is a Mac-specific block of data in little-endian format with
  309.           the following structure (if compressed, uncompress it first):
  310.           Value         Size            Description
  311.           -----         ----            -----------
  312.           fdFlags       Short           Finder Flags
  313.           fdLocation.v  Short           Finder Icon Location
  314.           fdLocation.h  Short           Finder Icon Location
  315.           fdFldr        Short           Folder containing file
  316.           FXInfo        16 bytes        Macintosh FXInfo structure
  317.             FXInfo-Structure:
  318.                 fdIconID        Short
  319.                 fdUnused[3]     Short       unused but reserved 6 bytes
  320.                 fdScript        Byte        Script flag and number
  321.                 fdXFlags        Byte        More flag bits
  322.                 fdComment       Short       Comment ID
  323.                 fdPutAway       Long        Home Dir ID
  324.           FVersNum      Byte            file version number
  325.                                         may be not used by MacOS
  326.           ACUser        Byte            directory access rights
  327.           FlCrDat       ULong           date and time of creation
  328.           FlMdDat       ULong           date and time of last modification
  329.           FlBkDat       ULong           date and time of last backup
  330.             These time numbers are original Mac FileTime values (local time!).
  331.             Currently, date-time width is 32-bit, but future version may
  332.             support be 64-bit times (see flags)
  333.           CrGMTOffs     Long(signed!)   difference "local Creat. time - UTC"
  334.           MdGMTOffs     Long(signed!)   difference "local Modif. time - UTC"
  335.           BkGMTOffs     Long(signed!)   difference "local Backup time - UTC"
  336.             These "local time - UTC" differences (stored in seconds) may be
  337.             used to support timestamp adjustment after inter-timezone transfer.
  338.             These fields are optional; bit 4 of the flags word controls their
  339.             presence.
  340.           Charset       Short           TextEncodingBase (Charset)
  341.                                         valid for the following two fields
  342.           FullPath      variable        Path of the current file.
  343.                                         Zero terminated string (C-String)
  344.                                         Currently coded in the native Charset.
  345.           Comment       variable        Finder Comment of the current file.
  346.                                         Zero terminated string (C-String)
  347.                                         Currently coded in the native Charset.
  348.          -Acorn SparkFS Extra Field:
  349.           =========================
  350.           The following is the layout of David Pilling's SparkFS extra block
  351.           for Acorn RISC OS.  The local-header and central-header versions are
  352.           identical.  (Last Revision 19960922)
  353.           Value         Size            Description
  354.           -----         ----            -----------
  355.   (Acorn) 0x4341        Short           tag for this extra block type
  356.           TSize         Short           total data size for this block
  357.           "ARC0"        Long            extra-field signature
  358.           LoadAddr      Long            load address or file type
  359.           ExecAddr      Long            exec address
  360.           Attr          Long            file permissions
  361.           Zero          Long            reserved; always zero
  362.           The following bits of Attr are associated with the given file
  363.           permissions:
  364.                 bit 0           user-writable ('W')
  365.                 bit 1           user-readable ('R')
  366.                 bit 2           reserved
  367.                 bit 3           locked ('L')
  368.                 bit 4           publicly writable ('w')
  369.                 bit 5           publicly readable ('r')
  370.                 bit 6           reserved
  371.                 bit 7           reserved
  372.          -VM/CMS Extra Field:
  373.           ==================
  374.           The following is the layout of the file-attributes extra block for
  375.           VM/CMS.  The local-header and central-header versions are
  376.           identical.  (Last Revision 19960922)
  377.           Value         Size            Description
  378.           -----         ----            -----------
  379.  (VM/CMS) 0x4704        Short           tag for this extra block type
  380.           TSize         Short           total data size for this block
  381.           flData        variable        file attributes data
  382.           flData is an uncompressed fldata_t struct.
  383.          -MVS Extra Field:
  384.           ===============
  385.           The following is the layout of the file-attributes extra block for
  386.           MVS.  The local-header and central-header versions are identical.
  387.           (Last Revision 19960922)
  388.           Value         Size            Description
  389.           -----         ----            -----------
  390.   (MVS)   0x470f        Short           tag for this extra block type
  391.           TSize         Short           total data size for this block
  392.           flData        variable        file attributes data
  393.           flData is an uncompressed fldata_t struct.
  394.          -PKWARE Unix Extra Field:
  395.           ========================
  396.           The following is the layout of PKWARE's Unix "extra" block.
  397.           It was introduced with the release of PKZIP for Unix 2.50.
  398.           Note: all fields are stored in Intel low-byte/high-byte order.
  399.           (Last Revision 19980901)
  400.           This field has a minimum data size of 12 bytes and is only stored
  401.           as local extra field.
  402.           Value         Size            Description
  403.           -----         ----            -----------
  404.  (Unix0)  0x000d        Short           Tag for this "extra" block type
  405.           TSize         Short           Total Data Size for this block
  406.           AcTime        Long            time of last access (UTC/GMT)
  407.           ModTime       Long            time of last modification (UTC/GMT)
  408.           UID           Short           Unix user ID
  409.           GID           Short           Unix group ID
  410.           (var)         variable        Variable length data field
  411.           The variable length data field will contain file type
  412.           specific data.  Currently the only values allowed are
  413.           the original "linked to" file names for hard or symbolic links.
  414.           The fixed part of this field has the same layout as Info-ZIP's
  415.           abandoned "Unix1 timestamps & owner ID info" extra field;
  416.           only the two tag bytes are different.
  417.          -PATCH Descriptor Extra Field:
  418.           ============================
  419.           The following is the layout of the Patch Descriptor "extra"
  420.           block.
  421.           Note: all fields stored in Intel low-byte/high-byte order.
  422.           Value         Size            Description
  423.           -----         ----            -----------
  424.   (Patch) 0x000f        Short           Tag for this "extra" block type
  425.           TSize         Short           Size of the total "extra" block
  426.           Version       Short           Version of the descriptor
  427.           Flags         Long            Actions and reactions (see below)
  428.           OldSize       Long            Size of the file about to be patched
  429.           OldCRC        Long            32-bit CRC of the file about to be patched
  430.           NewSize       Long            Size of the resulting file
  431.           NewCRC        Long            32-bit CRC of the resulting file
  432.           Actions and reactions
  433.           Bits          Description
  434.           ----          ----------------
  435.           0             Use for autodetection
  436.           1             Treat as selfpatch
  437.           2-3           RESERVED
  438.           4-5           Action (see below)
  439.           6-7           RESERVED
  440.           8-9           Reaction (see below) to absent file
  441.           10-11         Reaction (see below) to newer file
  442.           12-13         Reaction (see below) to unknown file
  443.           14-15         RESERVED
  444.           16-31         RESERVED
  445.           Actions
  446.           Action       Value
  447.           ------       -----
  448.           none         0
  449.           add          1
  450.           delete       2
  451.           patch        3
  452.           Reactions
  453.           Reaction     Value
  454.           --------     -----
  455.           ask          0
  456.           skip         1
  457.           ignore       2
  458.           fail         3
  459.          -Extended Timestamp Extra Field:
  460.           ==============================
  461.           The following is the layout of the extended-timestamp extra block.
  462.           (Last Revision 19970118)
  463.           Local-header version:
  464.           Value         Size            Description
  465.           -----         ----            -----------
  466.   (time)  0x5455        Short           tag for this extra block type
  467.           TSize         Short           total data size for this block
  468.           Flags         Byte            info bits
  469.           (ModTime)     Long            time of last modification (UTC/GMT)
  470.           (AcTime)      Long            time of last access (UTC/GMT)
  471.           (CrTime)      Long            time of original creation (UTC/GMT)
  472.           Central-header version:
  473.           Value         Size            Description
  474.           -----         ----            -----------
  475.   (time)  0x5455        Short           tag for this extra block type
  476.           TSize         Short           total data size for this block
  477.           Flags         Byte            info bits (refers to local header!)
  478.           (ModTime)     Long            time of last modification (UTC/GMT)
  479.           The central-header extra field contains the modification time only,
  480.           or no timestamp at all.  TSize is used to flag its presence or
  481.           absence.  But note:
  482.               If "Flags" indicates that Modtime is present in the local header
  483.               field, it MUST be present in the central header field, too!
  484.               This correspondence is required because the modification time
  485.               value may be used to support trans-timezone freshening and
  486.               updating operations with zip archives.
  487.           The time values are in standard Unix signed-long format, indicating
  488.           the number of seconds since 1 January 1970 00:00:00.  The times
  489.           are relative to Coordinated Universal Time (UTC), also sometimes
  490.           referred to as Greenwich Mean Time (GMT).  To convert to local time,
  491.           the software must know the local timezone offset from UTC/GMT.
  492.           The lower three bits of Flags in both headers indicate which time-
  493.           stamps are present in the LOCAL extra field:
  494.                 bit 0           if set, modification time is present
  495.                 bit 1           if set, access time is present
  496.                 bit 2           if set, creation time is present
  497.                 bits 3-7        reserved for additional timestamps; not set
  498.           Those times that are present will appear in the order indicated, but
  499.           any combination of times may be omitted.  (Creation time may be
  500.           present without access time, for example.)  TSize should equal
  501.           (1 + 4*(number of set bits in Flags)), as the block is currently
  502.           defined.  Other timestamps may be added in the future.
  503.          -Info-ZIP Unix Extra Field (type 1):
  504.           ==================================
  505.           The following is the layout of the old Info-ZIP extra block for
  506.           Unix.  It has been replaced by the extended-timestamp extra block
  507.           (0x5455) and the Unix type 2 extra block (0x7855).
  508.           (Last Revision 19970118)
  509.           Local-header version:
  510.           Value         Size            Description
  511.           -----         ----            -----------
  512.   (Unix1) 0x5855        Short           tag for this extra block type
  513.           TSize         Short           total data size for this block
  514.           AcTime        Long            time of last access (UTC/GMT)
  515.           ModTime       Long            time of last modification (UTC/GMT)
  516.           UID           Short           Unix user ID
  517.           GID           Short           Unix group ID
  518.           Central-header version:
  519.           Value         Size            Description
  520.           -----         ----            -----------
  521.   (Unix1) 0x5855        Short           tag for this extra block type
  522.           TSize         Short           total data size for this block
  523.           AcTime        Long            time of last access (GMT/UTC)
  524.           ModTime       Long            time of last modification (GMT/UTC)
  525.           The file access and modification times are in standard Unix signed-
  526.           long format, indicating the number of seconds since 1 January 1970
  527.           00:00:00.  The times are relative to Coordinated Universal Time
  528.           (UTC), also sometimes referred to as Greenwich Mean Time (GMT).  To
  529.           convert to local time, the software must know the local timezone
  530.           offset from UTC/GMT.  The modification time may be used by non-Unix
  531.           systems to support inter-timezone freshening and updating of zip
  532.           archives.
  533.           The local-header extra block may optionally contain UID and GID
  534.           info for the file.  The local-header TSize value is the only
  535.           indication of this.  Note that Unix UIDs and GIDs are usually
  536.           specific to a particular machine, and they generally require root
  537.           access to restore.
  538.           This extra field type is obsolete, but it has been in use since
  539.           mid-1994.  Therefore future archiving software should continue to
  540.           support it.  Some guidelines:
  541.               An archive member should either contain the old "Unix1"
  542.               extra field block or the new extra field types "time" and/or
  543.               "Unix2".
  544.               If both the old "Unix1" block type and one or both of the new
  545.               block types "time" and "Unix2" are found, the "Unix1" block
  546.               should be considered invalid and ignored.
  547.               Unarchiving software should recognize both old and new extra
  548.               field block types, but the info from new types overrides the
  549.               old "Unix1" field.
  550.               Archiving software should recognize "Unix1" extra fields for
  551.               timestamp comparison but never create it for updated, freshened
  552.               or new archive members.  When copying existing members to a new
  553.               archive, any "Unix1" extra field blocks should be converted to
  554.               the new "time" and/or "Unix2" types.
  555.          -Info-ZIP Unix Extra Field (type 2):
  556.           ==================================
  557.           The following is the layout of the new Info-ZIP extra block for
  558.           Unix.  (Last Revision 19960922)
  559.           Local-header version:
  560.           Value         Size            Description
  561.           -----         ----            -----------
  562.   (Unix2) 0x7855        Short           tag for this extra block type
  563.           TSize         Short           total data size for this block
  564.           UID           Short           Unix user ID
  565.           GID           Short           Unix group ID
  566.           Central-header version:
  567.           Value         Size            Description
  568.           -----         ----            -----------
  569.   (Unix2) 0x7855        Short           tag for this extra block type
  570.           TSize         Short           total data size for this block
  571.           The data size of the central-header version is zero; it is used
  572.           solely as a flag that UID/GID info is present in the local-header
  573.           extra field.  If additional fields are ever added to the local
  574.           version, the central version may be extended to indicate this.
  575.           Note that Unix UIDs and GIDs are usually specific to a particular
  576.           machine, and they generally require root access to restore.
  577.          -ASi Unix Extra Field:
  578.           ====================
  579.           The following is the layout of the ASi extra block for Unix.  The
  580.           local-header and central-header versions are identical.
  581.           (Last Revision 19960916)
  582.           Value         Size            Description
  583.           -----         ----            -----------
  584.   (Unix3) 0x756e        Short           tag for this extra block type
  585.           TSize         Short           total data size for this block
  586.           CRC           Long            CRC-32 of the remaining data
  587.           Mode          Short           file permissions
  588.           SizDev        Long            symlink'd size OR major/minor dev num
  589.           UID           Short           user ID
  590.           GID           Short           group ID
  591.           (var.)        variable        symbolic link filename
  592.           Mode is the standard Unix st_mode field from struct stat, containing
  593.           user/group/other permissions, setuid/setgid and symlink info, etc.
  594.           If Mode indicates that this file is a symbolic link, SizDev is the
  595.           size of the file to which the link points.  Otherwise, if the file
  596.           is a device, SizDev contains the standard Unix st_rdev field from
  597.           struct stat (includes the major and minor numbers of the device).
  598.           SizDev is undefined in other cases.
  599.           If Mode indicates that the file is a symbolic link, the final field
  600.           will be the name of the file to which the link points.  The file-
  601.           name length can be inferred from TSize.
  602.           [Note that TSize may incorrectly refer to the data size not counting
  603.            the CRC; i.e., it may be four bytes too small.]
  604.          -BeOS Extra Field:
  605.           ================
  606.           The following is the layout of the file-attributes extra block for
  607.           BeOS.  (Last Revision 19970531)
  608.           Local-header version:
  609.           Value         Size            Description
  610.           -----         ----            -----------
  611.   (BeOS)  0x6542        Short           tag for this extra block type
  612.           TSize         Short           total data size for this block
  613.           BSize         Long            uncompressed file attribute data size
  614.           Flags         Byte            info bits
  615.           (CType)       Short           compression type
  616.           (CRC)         Long            CRC value for uncompressed file attribs
  617.           Attribs       variable        file attribute data
  618.           Central-header version:
  619.           Value         Size            Description
  620.           -----         ----            -----------
  621.   (BeOS)  0x6542        Short           tag for this extra block type
  622.           TSize         Short           total data size for this block
  623.           BSize         Long            size of uncompressed local EF block data
  624.           Flags         Byte            info bits
  625.           The least significant bit of Flags in both headers indicates whether
  626.           the LOCAL extra field is uncompressed (and therefore whether CType
  627.           and CRC are omitted):
  628.                 bit 0           if set, Attribs is uncompressed (no CType, CRC)
  629.                 bits 1-7        reserved; if set, assume error or unknown data
  630.           Currently the only supported compression types are deflated (type 8)
  631.           and stored (type 0); the latter is not used by Info-ZIP's Zip but is
  632.           supported by UnZip.
  633.           Attribs is a BeOS-specific block of data in big-endian format with
  634.           the following structure (if compressed, uncompress it first):
  635.               Value     Size            Description
  636.               -----     ----            -----------
  637.               Name      variable        attribute name (null-terminated string)
  638.               Type      Long            attribute type (32-bit unsigned integer)
  639.               Size      Long Long       data size for this sub-block (64 bits)
  640.               Data      variable        attribute data
  641.           The attribute structure is repeated for every attribute.  The Data
  642.           field may contain anything--text, flags, bitmaps, etc.
  643.          -SMS/QDOS Extra Field:
  644.           ====================
  645.           The following is the layout of the file-attributes extra block for
  646.           SMS/QDOS.  The local-header and central-header versions are identical.
  647.           (Last Revision 19960929)
  648.           Value         Size            Description
  649.           -----         ----            -----------
  650.   (QDOS)  0xfb4a        Short           tag for this extra block type
  651.           TSize         Short           total data size for this block
  652.           LongID        Long            extra-field signature
  653.           (ExtraID)     Long            additional signature/flag bytes
  654.           QDirect       64 bytes        qdirect structure
  655.           LongID may be "QZHD" or "QDOS".  In the latter case, ExtraID will
  656.           be present.  Its first three bytes are "02"; the last byte is
  657.           currently undefined.
  658.           QDirect contains the file's uncompressed directory info (qdirect
  659.           struct).  Its elements are in native (big-endian) format:
  660.           d_length      beLong          file length
  661.           d_access      byte            file access type
  662.           d_type        byte            file type
  663.           d_datalen     beLong          data length
  664.           d_reserved    beLong          unused
  665.           d_szname      beShort         size of filename
  666.           d_name        36 bytes        filename
  667.           d_update      beLong          time of last update
  668.           d_refdate     beLong          file version number
  669.           d_backup      beLong          time of last backup (archive date)
  670.          -AOS/VS Extra Field:
  671.           ==================
  672.           The following is the layout of the extra block for Data General
  673.           AOS/VS.  The local-header and central-header versions are identical.
  674.           (Last Revision 19961125)
  675.           Value         Size            Description
  676.           -----         ----            -----------
  677.   (AOSVS) 0x5356        Short           tag for this extra block type
  678.           TSize         Short           total data size for this block
  679.           "FCI"       Long            extra-field signature
  680.           Version       Byte            version of AOS/VS extra block (10 = 1.0)
  681.           Fstat         variable        fstat packet
  682.           AclBuf        variable        raw ACL data ($MXACL bytes)
  683.           Fstat contains the file's uncompressed fstat packet, which is one of
  684.           the following:
  685.                 normal fstat packet             (P_FSTAT struct)
  686.                 DIR/CPD fstat packet            (P_FSTAT_DIR struct)
  687.                 unit (device) fstat packet      (P_FSTAT_UNIT struct)
  688.                 IPC file fstat packet           (P_FSTAT_IPC struct)
  689.           AclBuf contains the raw ACL data; its length is $MXACL.
  690.          -FWKCS MD5 Extra Field:
  691.           =====================
  692.           The following is the layout of the optional extra block used by the
  693.           FWKCS utility.  There is no local-header version; the following
  694.           applies only to the central header.  (Last Revision 19961207)
  695.           Central-header version:
  696.           Value         Size            Description
  697.           -----         ----            -----------
  698.   (MD5)   0x4b46        Short           tag for this extra block type
  699.           TSize         Short           total data size for this block (19)
  700.           "MD5"         3 bytes         extra-field signature
  701.           MD5hash       16 bytes        128-bit MD5 hash of uncompressed data
  702.           The MD5 hash in this extra block is used to automatically identify
  703.           files independent of their filenames; it is an an enhanced contents-
  704.           signature.
  705.           FWKCS provides an option to strip this extra field, if
  706.           present, from a zipfile central directory. In adding
  707.           this extra field, FWKCS preserves Zipfile Authenticity
  708.           Verification; if stripping this extra field, FWKCS
  709.           preserves all versions of AV through PKZIP version 2.04g.
  710.           ``The MD5 algorithm is being placed in the public domain for review
  711.           and possible adoption as a standard.'' (Ron Rivest, MIT Laboratory
  712.           for Computer Science and RSA Data Security, Inc., April 1992, RFC
  713.           1321, 11.76-77).  FWKCS, and FWKCS Contents_Signature System, are
  714.           trademarks of Frederick W. Kantor.