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

压缩解压

开发平台:

MultiPlatform

  1. /*---------------------------------------------------------------------------
  2.   process.c
  3.   This file contains the top-level routines for processing multiple zipfiles.
  4.   Contains:  process_zipfiles()
  5.              free_G_buffers()
  6.              do_seekable()
  7.              find_ecrec()
  8.              uz_end_central()
  9.              process_cdir_file_hdr()
  10.              get_cdir_ent()
  11.              process_local_file_hdr()
  12.              ef_scan_for_izux()
  13.   ---------------------------------------------------------------------------*/
  14. #define UNZIP_INTERNAL
  15. #include "unzip.h"
  16. #ifdef WINDLL
  17. #  ifdef POCKET_UNZIP
  18. #    include "wince/intrface.h"
  19. #  else
  20. #    include "windll/windll.h"
  21. #  endif
  22. #endif
  23. static int    do_seekable        OF((__GPRO__ int lastchance));
  24. static int    find_ecrec         OF((__GPRO__ long searchlen));
  25. static ZCONST char Far CannotAllocateBuffers[] =
  26.   "error:  cannot allocate unzip buffersn";
  27. #ifdef SFX
  28.    static ZCONST char Far CannotFindMyself[] =
  29.      "unzipsfx:  cannot find myself! [%s]n";
  30. #else /* !SFX */
  31.    /* process_zipfiles() strings */
  32. # if (defined(IZ_CHECK_TZ) && defined(USE_EF_UT_TIME))
  33.      static ZCONST char Far WarnInvalidTZ[] =
  34.        "Warning: TZ environment variable not found, cannot use UTC times!!n";
  35. # endif
  36.    static ZCONST char Far FilesProcessOK[] =
  37.      "%d archive%s successfully processed.n";
  38.    static ZCONST char Far ArchiveWarning[] =
  39.      "%d archive%s had warnings but no fatal errors.n";
  40.    static ZCONST char Far ArchiveFatalError[] =
  41.      "%d archive%s had fatal errors.n";
  42.    static ZCONST char Far FileHadNoZipfileDir[] =
  43.      "%d file%s had no zipfile directory.n";
  44.    static ZCONST char Far ZipfileWasDir[] = "1 "zipfile" was a directory.n";
  45.    static ZCONST char Far ManyZipfilesWereDir[] =
  46.      "%d "zipfiles" were directories.n";
  47.    static ZCONST char Far NoZipfileFound[] = "No zipfiles found.n";
  48.    /* do_seekable() strings */
  49. # ifdef UNIX
  50.    static ZCONST char Far CannotFindZipfileDirMsg[] =
  51.      "%s:  cannot find zipfile directory in one of %s orn
  52.         %s%s.zip, and cannot find %s, period.n";
  53.    static ZCONST char Far CannotFindEitherZipfile[] =
  54.      "%s:  cannot find %s, %s.zip or %s.n";   /* ", so there" removed 970918 */
  55. # else /* !UNIX */
  56. # ifndef AMIGA
  57.    static ZCONST char Far CannotFindWildcardMatch[] =
  58.      "%s:  cannot find any matches for wildcard specification "%s".n";
  59. # endif /* !AMIGA */
  60.    static ZCONST char Far CannotFindZipfileDirMsg[] =
  61.      "%s:  cannot find zipfile directory in %s,n
  62.         %sand cannot find %s, period.n";
  63.    static ZCONST char Far CannotFindEitherZipfile[] =
  64.      "%s:  cannot find either %s or %s.n";    /* ", so there" removed 970918 */
  65. # endif /* ?UNIX */
  66.    extern ZCONST char Far Zipnfo[];       /* in unzip.c */
  67. #ifndef WINDLL
  68.    static ZCONST char Far Unzip[] = "unzip";
  69. #else
  70.    static ZCONST char Far Unzip[] = "UnZip DLL";
  71. #endif
  72.    static ZCONST char Far MaybeExe[] =
  73.      "note:  %s may be a plain executable, not an archiven";
  74.    static ZCONST char Far CentDirNotInZipMsg[] = "n
  75.    [%s]:n
  76.      Zipfile is disk %u of a multi-disk archive, and this is not the disk onn
  77.      which the central zipfile directory begins (disk %u).n";
  78.    static ZCONST char Far EndCentDirBogus[] =
  79.      "nwarning [%s]:  end-of-central-directory record claims thisn
  80.   is disk %u but that the central directory starts on disk %u; this is an
  81.   contradiction.  Attempting to process anyway.n";
  82. # ifdef NO_MULTIPART
  83.    static ZCONST char Far NoMultiDiskArcSupport[] =
  84.      "nerror [%s]:  zipfile is part of multi-disk archiven
  85.   (sorry, not yet supported).n";
  86.    static ZCONST char Far MaybePakBug[] = "warning [%s]:
  87.   zipfile claims to be 2nd disk of a 2-part archive;n
  88.   attempting to process anyway.  If no further errors occur, this archiven
  89.   was probably created by PAK v2.51 or earlier.  This bug was reported ton
  90.   NoGate in March 1991 and was supposed to have been fixed by mid-1991; asn
  91.   of mid-1992 it still hadn't been.  (If further errors do occur, archiven
  92.   was probably created by PKZIP 2.04c or later; UnZip does not yet supportn
  93.   multi-part archives.)n";
  94. # else
  95.    static ZCONST char Far MaybePakBug[] = "warning [%s]:
  96.   zipfile claims to be last disk of a multi-part archive;n
  97.   attempting to process anyway, assuming all parts have been concatenatedn
  98.   together in order.  Expect "errors" and warnings...true multi-part support
  99. n  doesn't exist yet (coming soon).n";
  100. # endif
  101.    static ZCONST char Far ExtraBytesAtStart[] =
  102.      "warning [%s]:  %ld extra byte%s at beginning or within zipfilen
  103.   (attempting to process anyway)n";
  104. #endif /* ?SFX */
  105. static ZCONST char Far MissingBytes[] =
  106.   "error [%s]:  missing %ld bytes in zipfilen
  107.   (attempting to process anyway)n";
  108. static ZCONST char Far NullCentDirOffset[] =
  109.   "error [%s]:  NULL central directory offsetn
  110.   (attempting to process anyway)n";
  111. static ZCONST char Far ZipfileEmpty[] = "warning [%s]:  zipfile is emptyn";
  112. static ZCONST char Far CentDirStartNotFound[] =
  113.   "error [%s]:  start of central directory not found;n
  114.   zipfile corrupt.n%s";
  115. #ifndef SFX
  116.    static ZCONST char Far CentDirTooLong[] =
  117.      "error [%s]:  reported length of central directory isn
  118.   %ld bytes too long (Atari STZip zipfile?  J.H.Holm ZIPSPLIT 1.1n
  119.   zipfile?).  Compensating...n";
  120.    static ZCONST char Far CentDirEndSigNotFound[] = "
  121.   End-of-central-directory signature not found.  Either this file is notn
  122.   a zipfile, or it constitutes one disk of a multi-part archive.  In then
  123.   latter case the central directory and zipfile comment will be found onn
  124.   the last disk(s) of this archive.n";
  125. #else /* SFX */
  126.    static ZCONST char Far CentDirEndSigNotFound[] =
  127.      "  End-of-central-directory signature not found.n";
  128. #endif /* ?SFX */
  129. static ZCONST char Far ZipfileCommTrunc1[] =
  130.   "ncaution:  zipfile comment truncatedn";
  131. /*******************************/
  132. /* Function process_zipfiles() */
  133. /*******************************/
  134. int process_zipfiles(__G)    /* return PK-type error code */
  135.     __GDEF
  136. {
  137. #ifndef SFX
  138.     char *lastzipfn = (char *)NULL;
  139.     int NumWinFiles, NumLoseFiles, NumWarnFiles;
  140.     int NumMissDirs, NumMissFiles;
  141. #endif
  142.     int error=0, error_in_archive=0;
  143. /*---------------------------------------------------------------------------
  144.     Start by allocating buffers and (re)constructing the various PK signature
  145.     strings.
  146.   ---------------------------------------------------------------------------*/
  147.     G.inbuf = (uch *)malloc(INBUFSIZ + 4);    /* 4 extra for hold[] (below) */
  148.     G.outbuf = (uch *)malloc(OUTBUFSIZ + 1);  /* 1 extra for string term. */
  149.     if ((G.inbuf == (uch *)NULL) || (G.outbuf == (uch *)NULL)) {
  150.         Info(slide, 0x401, ((char *)slide,
  151.           LoadFarString(CannotAllocateBuffers)));
  152.         return(PK_MEM);
  153.     }
  154.     G.hold = G.inbuf + INBUFSIZ;     /* to check for boundary-spanning sigs */
  155. #ifndef VMS     /* VMS uses its own buffer scheme for textmode flush(). */
  156. #ifdef SMALL_MEM
  157.     G.outbuf2 = G.outbuf+RAWBUFSIZ;  /* never changes */
  158. #endif
  159. #endif /* !VMS */
  160. #if 0 /* CRC_32_TAB has been NULLified by CONSTRUCTGLOBALS !!!! */
  161.     /* allocate the CRC table only later when we know we have a zipfile */
  162.     CRC_32_TAB = NULL;
  163. #endif /* 0 */
  164.     /* finish up initialization of magic signature strings */
  165.     local_hdr_sig[0]  /* = extd_local_sig[0] */  = 0x50;   /* ASCII 'P', */
  166.     central_hdr_sig[0] = end_central_sig[0] = 0x50;     /* not EBCDIC */
  167.     local_hdr_sig[1]  /* = extd_local_sig[1] */  = 0x4B;   /* ASCII 'K', */
  168.     central_hdr_sig[1] = end_central_sig[1] = 0x4B;     /* not EBCDIC */
  169. /*---------------------------------------------------------------------------
  170.     Make sure timezone info is set correctly; localtime() returns GMT on
  171.     some OSes (e.g., Solaris 2.x) if this isn't done first.  The ifdefs were
  172.     initially copied from dos_to_unix_time() in fileio.c. probably, they are
  173.     still too strict; any listed OS that supplies tzset(), regardless of
  174.     whether the function does anything, should be removed from the ifdefs.
  175.   ---------------------------------------------------------------------------*/
  176. #if (defined(IZ_CHECK_TZ) && defined(USE_EF_UT_TIME))
  177. #  ifndef VALID_TIMEZONE
  178. #     define VALID_TIMEZONE(tmp) 
  179.              (((tmp = getenv("TZ")) != NULL) && (*tmp != ''))
  180. #  endif
  181.     {
  182.         char *p;
  183.         G.tz_is_valid = VALID_TIMEZONE(p);
  184. #  ifndef SFX
  185.         if (!G.tz_is_valid) {
  186.             Info(slide, 0x401, ((char *)slide, LoadFarString(WarnInvalidTZ)));
  187.             error_in_archive = error = PK_WARN;
  188.         }
  189. #  endif /* !SFX */
  190.     }
  191. #endif /* IZ_CHECK_TZ && USE_EF_UT_TIME */
  192. /* For systems that do not have tzset() but supply this function using another
  193.    name (_tzset() or something similar), an appropiate "#define tzset ..."
  194.    should be added to the system specifc configuration section.  */
  195. #if (!defined(T20_VMS) && !defined(MACOS) && !defined(RISCOS) && !defined(QDOS))
  196. #if (!defined(BSD) && !defined(MTS) && !defined(CMS_MVS) && !defined(TANDEM))
  197.     tzset();
  198. #endif
  199. #endif
  200. /*---------------------------------------------------------------------------
  201.     Match (possible) wildcard zipfile specification with existing files and
  202.     attempt to process each.  If no hits, try again after appending ".zip"
  203.     suffix.  If still no luck, give up.
  204.   ---------------------------------------------------------------------------*/
  205. #ifdef SFX
  206.     if ((error = do_seekable(__G__ 0)) == PK_NOZIP) {
  207. #ifdef EXE_EXTENSION
  208.         int len=strlen(G.argv0);
  209.         /* append .exe if appropriate; also .sfx? */
  210.         if ( (G.zipfn = (char *)malloc(len+sizeof(EXE_EXTENSION))) !=
  211.              (char *)NULL ) {
  212.             strcpy(G.zipfn, G.argv0);
  213.             strcpy(G.zipfn+len, EXE_EXTENSION);
  214.             error = do_seekable(__G__ 0);
  215.             free(G.zipfn);
  216.             G.zipfn = G.argv0;  /* for "cannot find myself" message only */
  217.         }
  218. #endif /* EXE_EXTENSION */
  219. #ifdef WIN32
  220.         G.zipfn = G.argv0;  /* for "cannot find myself" message only */
  221. #endif
  222.     }
  223.     if (error) {
  224.         if (error == IZ_DIR)
  225.             error_in_archive = PK_NOZIP;
  226.         else
  227.             error_in_archive = error;
  228.         if (error == PK_NOZIP)
  229.             Info(slide, 1, ((char *)slide, LoadFarString(CannotFindMyself),
  230.               G.zipfn));
  231.     }
  232. #else /* !SFX */
  233.     NumWinFiles = NumLoseFiles = NumWarnFiles = 0;
  234.     NumMissDirs = NumMissFiles = 0;
  235.     while ((G.zipfn = do_wild(__G__ G.wildzipfn)) != (char *)NULL) {
  236.         Trace((stderr, "do_wild( %s ) returns %sn", G.wildzipfn, G.zipfn));
  237.         lastzipfn = G.zipfn;
  238.         /* print a blank line between the output of different zipfiles */
  239.         if (!uO.qflag  &&  error != PK_NOZIP  &&  error != IZ_DIR
  240. #ifdef TIMESTAMP
  241.             && (!uO.T_flag || uO.zipinfo_mode)
  242. #endif
  243.             && (NumWinFiles+NumLoseFiles+NumWarnFiles+NumMissFiles) > 0)
  244.             (*G.message)((zvoid *)&G, (uch *)"n", 1L, 0);
  245.         if ((error = do_seekable(__G__ 0)) == PK_WARN)
  246.             ++NumWarnFiles;
  247.         else if (error == IZ_DIR)
  248.             ++NumMissDirs;
  249.         else if (error == PK_NOZIP)
  250.             ++NumMissFiles;
  251.         else if (error)
  252.             ++NumLoseFiles;
  253.         else
  254.             ++NumWinFiles;
  255.         if (error != IZ_DIR && error > error_in_archive)
  256.             error_in_archive = error;
  257.         Trace((stderr, "do_seekable(0) returns %dn", error));
  258. #ifdef WINDLL
  259.         if (error == IZ_CTRLC) {
  260.             free_G_buffers(__G);
  261.             return error;
  262.         }
  263. #endif
  264.     } /* end while-loop (wildcard zipfiles) */
  265.     if ((NumWinFiles + NumWarnFiles + NumLoseFiles) == 0  &&
  266.         (NumMissDirs + NumMissFiles) == 1  &&  lastzipfn != (char *)NULL)
  267.     {
  268.         NumMissDirs = NumMissFiles = 0;
  269.         if (error_in_archive == PK_NOZIP)
  270.             error_in_archive = PK_COOL;
  271. #if (!defined(UNIX) && !defined(AMIGA)) /* filenames with wildcard characters */
  272.         if (iswild(G.wildzipfn))
  273.             Info(slide, 0x401, ((char *)slide,
  274.               LoadFarString(CannotFindWildcardMatch), uO.zipinfo_mode?
  275.               LoadFarStringSmall(Zipnfo) : LoadFarStringSmall(Unzip),
  276.               G.wildzipfn));
  277.         else
  278. #endif
  279.         {
  280.             char *p = lastzipfn + strlen(lastzipfn);
  281.             G.zipfn = lastzipfn;
  282.             strcpy(p, ZSUFX);
  283. #if defined(UNIX) || defined(QDOS)
  284.    /* only Unix has case-sensitive filesystems */
  285.    /* Well FlexOS (sometimes) also has them,  but support is per media */
  286.    /* and a pig to code for,  so treat as case insensitive for now */
  287.    /* we do this under QDOS to check for .zip as well as _zip */
  288.             if ((error = do_seekable(__G__ 0)) == PK_NOZIP || error == IZ_DIR) {
  289.                 if (error == IZ_DIR)
  290.                     ++NumMissDirs;
  291.                 strcpy(p, ALT_ZSUFX);
  292.                 error = do_seekable(__G__ 1);
  293.             }
  294. #else
  295.             error = do_seekable(__G__ 1);
  296. #endif
  297.             if (error == PK_WARN)   /* GRR: make this a switch/case stmt ... */
  298.                 ++NumWarnFiles;
  299.             else if (error == IZ_DIR)
  300.                 ++NumMissDirs;
  301.             else if (error == PK_NOZIP)
  302.                 /* increment again => bug: "1 file had no zipfile directory." */
  303.                 /* ++NumMissFiles */ ;
  304.             else if (error)
  305.                 ++NumLoseFiles;
  306.             else
  307.                 ++NumWinFiles;
  308.             if (error > error_in_archive)
  309.                 error_in_archive = error;
  310.             Trace((stderr, "do_seekable(1) returns %dn", error));
  311. #ifdef WINDLL
  312.             if (error == IZ_CTRLC) {
  313.                 free_G_buffers(__G);
  314.                 return error;
  315.             }
  316. #endif
  317.         }
  318.     }
  319. #endif /* ?SFX */
  320. /*---------------------------------------------------------------------------
  321.     Print summary of all zipfiles, assuming zipfile spec was a wildcard (no
  322.     need for a summary if just one zipfile).
  323.   ---------------------------------------------------------------------------*/
  324. #ifndef SFX
  325.     if (iswild(G.wildzipfn) && uO.qflag < 3
  326. #ifdef TIMESTAMP
  327.         && !(uO.T_flag && uO.qflag && !uO.zipinfo_mode)
  328. #endif
  329.                                                     )
  330.     {
  331.         if ((NumMissFiles + NumLoseFiles + NumWarnFiles > 0 || NumWinFiles != 1)
  332. #ifdef TIMESTAMP
  333.             && !(uO.T_flag && !uO.zipinfo_mode)
  334. #endif
  335.             && !(uO.tflag && uO.qflag > 1))
  336.             (*G.message)((zvoid *)&G, (uch *)"n", 1L, 0x401);
  337.         if ((NumWinFiles > 1) || (NumWinFiles == 1 &&
  338.             NumMissDirs + NumMissFiles + NumLoseFiles + NumWarnFiles > 0))
  339.             Info(slide, 0x401, ((char *)slide, LoadFarString(FilesProcessOK),
  340.               NumWinFiles, (NumWinFiles == 1)? " was" : "s were"));
  341.         if (NumWarnFiles > 0)
  342.             Info(slide, 0x401, ((char *)slide, LoadFarString(ArchiveWarning),
  343.               NumWarnFiles, (NumWarnFiles == 1)? "" : "s"));
  344.         if (NumLoseFiles > 0)
  345.             Info(slide, 0x401, ((char *)slide, LoadFarString(ArchiveFatalError),
  346.               NumLoseFiles, (NumLoseFiles == 1)? "" : "s"));
  347.         if (NumMissFiles > 0)
  348.             Info(slide, 0x401, ((char *)slide,
  349.               LoadFarString(FileHadNoZipfileDir), NumMissFiles,
  350.               (NumMissFiles == 1)? "" : "s"));
  351.         if (NumMissDirs == 1)
  352.             Info(slide, 0x401, ((char *)slide, LoadFarString(ZipfileWasDir)));
  353.         else if (NumMissDirs > 0)
  354.             Info(slide, 0x401, ((char *)slide,
  355.               LoadFarString(ManyZipfilesWereDir), NumMissDirs));
  356.         if (NumWinFiles + NumLoseFiles + NumWarnFiles == 0)
  357.             Info(slide, 0x401, ((char *)slide, LoadFarString(NoZipfileFound)));
  358.     }
  359. #endif /* !SFX */
  360.     /* free allocated memory */
  361.     free_G_buffers(__G);
  362.     return error_in_archive;
  363. } /* end function process_zipfiles() */
  364. /*****************************/
  365. /* Function free_G_buffers() */
  366. /*****************************/
  367. void free_G_buffers(__G)     /* releases all memory allocated in global vars */
  368.     __GDEF
  369. {
  370.     inflate_free(__G);
  371.     checkdir(__G__ (char *)NULL, END);
  372. #ifdef DYNALLOC_CRCTAB
  373.     if (CRC_32_TAB) {
  374.         free_crc_table();
  375.         CRC_32_TAB = NULL;
  376.     }
  377. #endif
  378.    if (G.key != (char *)NULL) {
  379.         free(G.key);
  380.         G.key = (char *)NULL;
  381.    }
  382. #if (!defined(VMS) && !defined(SMALL_MEM))
  383.     /* VMS uses its own buffer scheme for textmode flush() */
  384.     if (G.outbuf2) {
  385.         free(G.outbuf2);   /* malloc'd ONLY if unshrink and -a */
  386.         G.outbuf2 = (uch *)NULL;
  387.     }
  388. #endif
  389.     if (G.outbuf)
  390.         free(G.outbuf);
  391.     if (G.inbuf)
  392.         free(G.inbuf);
  393.     G.inbuf = G.outbuf = (uch *)NULL;
  394. #ifdef MALLOC_WORK
  395.     if (G.area.Slide) {
  396.         free(G.area.Slide);
  397.         G.area.Slide = (uch *)NULL;
  398.     }
  399. #endif
  400. } /* end function free_G_buffers() */
  401. /**************************/
  402. /* Function do_seekable() */
  403. /**************************/
  404. static int do_seekable(__G__ lastchance)        /* return PK-type error code */
  405.     __GDEF
  406.     int lastchance;
  407. {
  408. #ifndef SFX
  409.     /* static int no_ecrec = FALSE;  SKM: moved to globals.h */
  410.     int maybe_exe=FALSE;
  411.     int too_weird_to_continue=FALSE;
  412. #ifdef TIMESTAMP
  413.     time_t uxstamp;
  414.     unsigned nmember = 0;
  415. #endif
  416. #endif
  417.     int error=0, error_in_archive;
  418. /*---------------------------------------------------------------------------
  419.     Open the zipfile for reading in BINARY mode to prevent CR/LF translation,
  420.     which would corrupt the bit streams.
  421.   ---------------------------------------------------------------------------*/
  422.     if (SSTAT(G.zipfn, &G.statbuf) ||
  423.         (error = S_ISDIR(G.statbuf.st_mode)) != 0)
  424.     {
  425. #ifndef SFX
  426.         if (lastchance) {
  427. #if defined(UNIX) || defined(QDOS)
  428.             if (G.no_ecrec)
  429.                 Info(slide, 1, ((char *)slide,
  430.                   LoadFarString(CannotFindZipfileDirMsg), uO.zipinfo_mode?
  431.                   LoadFarStringSmall(Zipnfo) : LoadFarStringSmall(Unzip),
  432.                   G.wildzipfn, uO.zipinfo_mode? "  " : "", G.wildzipfn,
  433.                   G.zipfn));
  434.             else
  435.                 Info(slide, 1, ((char *)slide,
  436.                   LoadFarString(CannotFindEitherZipfile), uO.zipinfo_mode?
  437.                   LoadFarStringSmall(Zipnfo) : LoadFarStringSmall(Unzip),
  438.                   G.wildzipfn, G.wildzipfn, G.zipfn));
  439. #else /* !UNIX */
  440.             if (G.no_ecrec)
  441.                 Info(slide, 0x401, ((char *)slide,
  442.                   LoadFarString(CannotFindZipfileDirMsg), uO.zipinfo_mode?
  443.                   LoadFarStringSmall(Zipnfo) : LoadFarStringSmall(Unzip),
  444.                   G.wildzipfn, uO.zipinfo_mode? "  " : "", G.zipfn));
  445.             else
  446.                 Info(slide, 0x401, ((char *)slide,
  447.                   LoadFarString(CannotFindEitherZipfile), uO.zipinfo_mode?
  448.                   LoadFarStringSmall(Zipnfo) : LoadFarStringSmall(Unzip),
  449.                   G.wildzipfn, G.zipfn));
  450. #endif /* ?UNIX */
  451.         }
  452. #endif /* !SFX */
  453.         return error? IZ_DIR : PK_NOZIP;
  454.     }
  455.     G.ziplen = G.statbuf.st_size;
  456. #ifndef SFX
  457. #if defined(UNIX) || defined(DOS_OS2_W32)
  458.     if (G.statbuf.st_mode & S_IEXEC)   /* no extension on Unix exes:  might */
  459.         maybe_exe = TRUE;               /*  find unzip, not unzip.zip; etc. */
  460. #endif
  461. #endif /* !SFX */
  462. #ifdef VMS
  463.     if (check_format(__G))              /* check for variable-length format */
  464.         return PK_ERR;
  465. #endif
  466.     if (open_input_file(__G))   /* this should never happen, given */
  467.         return PK_NOZIP;        /*  the stat() test above, but... */
  468. /*---------------------------------------------------------------------------
  469.     Find and process the end-of-central-directory header.  UnZip need only
  470.     check last 65557 bytes of zipfile:  comment may be up to 65535, end-of-
  471.     central-directory record is 18 bytes, and signature itself is 4 bytes;
  472.     add some to allow for appended garbage.  Since ZipInfo is often used as
  473.     a debugging tool, search the whole zipfile if zipinfo_mode is true.
  474.   ---------------------------------------------------------------------------*/
  475.     /* initialize the CRC table pointer (once) */
  476.     if (CRC_32_TAB == NULL) {
  477.         if ((CRC_32_TAB = get_crc_table()) == NULL)
  478.             return PK_MEM;
  479.     }
  480. #if (!defined(SFX) || defined(SFX_EXDIR))
  481.     /* check out if specified extraction root directory exists */
  482.     if (uO.exdir != (char *)NULL && G.extract_flag) {
  483.         G.create_dirs = !uO.fflag;
  484.         if ((error = checkdir(__G__ uO.exdir, ROOT)) > 2)
  485.             return error;   /* out of memory, or file in way */
  486.     }
  487. #endif /* !SFX || SFX_EXDIR */
  488.     G.cur_zipfile_bufstart = 0;
  489.     G.inptr = G.inbuf;
  490. #if (!defined(WINDLL) && !defined(SFX))
  491. #ifdef TIMESTAMP
  492.     if (!uO.zipinfo_mode && !uO.qflag && !uO.T_flag)
  493. #else
  494.     if (!uO.zipinfo_mode && !uO.qflag)
  495. #endif
  496. #ifdef WIN32    /* Win32 console may require codepage conversion for G.zipfn */
  497.         Info(slide, 0, ((char *)slide, "Archive:  %sn", FnFilter1(G.zipfn)));
  498. #else
  499.         Info(slide, 0, ((char *)slide, "Archive:  %sn", G.zipfn));
  500. #endif
  501. #endif /* !WINDLL && !SFX */
  502.     if ((
  503. #ifndef NO_ZIPINFO
  504.          uO.zipinfo_mode &&
  505.           ((error_in_archive = find_ecrec(__G__ G.ziplen)) != 0 ||
  506.           (error_in_archive = zi_end_central(__G)) > PK_WARN))
  507.         || (!uO.zipinfo_mode &&
  508. #endif
  509.           ((error_in_archive = find_ecrec(__G__ MIN(G.ziplen,66000L))) != 0 ||
  510.           (error_in_archive = uz_end_central(__G)) > PK_WARN)))
  511.     {
  512.         CLOSE_INFILE();
  513. #ifdef SFX
  514.         ++lastchance;   /* avoid picky compiler warnings */
  515.         return error_in_archive;
  516. #else
  517.         if (maybe_exe)
  518.             Info(slide, 0x401, ((char *)slide, LoadFarString(MaybeExe),
  519.             G.zipfn));
  520.         if (lastchance)
  521.             return error_in_archive;
  522.         else {
  523.             G.no_ecrec = TRUE;    /* assume we found wrong file:  e.g., */
  524.             return PK_NOZIP;       /*  unzip instead of unzip.zip */
  525.         }
  526. #endif /* ?SFX */
  527.     }
  528.     if ((uO.zflag > 0) && !uO.zipinfo_mode) { /* unzip: zflag = comment ONLY */
  529.         CLOSE_INFILE();
  530.         return error_in_archive;
  531.     }
  532. /*---------------------------------------------------------------------------
  533.     Test the end-of-central-directory info for incompatibilities (multi-disk
  534.     archives) or inconsistencies (missing or extra bytes in zipfile).
  535.   ---------------------------------------------------------------------------*/
  536. #ifdef NO_MULTIPART
  537.     error = !uO.zipinfo_mode && (G.ecrec.number_this_disk == 1) &&
  538.             (G.ecrec.num_disk_start_cdir == 1);
  539. #else
  540.     error = !uO.zipinfo_mode && (G.ecrec.number_this_disk != 0);
  541. #endif
  542. #ifndef SFX
  543.     if (uO.zipinfo_mode &&
  544.         G.ecrec.number_this_disk != G.ecrec.num_disk_start_cdir)
  545.     {
  546.         if (G.ecrec.number_this_disk > G.ecrec.num_disk_start_cdir) {
  547.             Info(slide, 0x401, ((char *)slide,
  548.               LoadFarString(CentDirNotInZipMsg), G.zipfn,
  549.               G.ecrec.number_this_disk, G.ecrec.num_disk_start_cdir));
  550.             error_in_archive = PK_FIND;
  551.             too_weird_to_continue = TRUE;
  552.         } else {
  553.             Info(slide, 0x401, ((char *)slide,
  554.               LoadFarString(EndCentDirBogus), G.zipfn,
  555.               G.ecrec.number_this_disk, G.ecrec.num_disk_start_cdir));
  556.             error_in_archive = PK_WARN;
  557.         }
  558. #ifdef NO_MULTIPART   /* concatenation of multiple parts works in some cases */
  559.     } else if (!uO.zipinfo_mode && !error && G.ecrec.number_this_disk != 0) {
  560.         Info(slide, 0x401, ((char *)slide, LoadFarString(NoMultiDiskArcSupport),
  561.           G.zipfn));
  562.         error_in_archive = PK_FIND;
  563.         too_weird_to_continue = TRUE;
  564. #endif
  565.     }
  566.     if (!too_weird_to_continue) {  /* (relatively) normal zipfile:  go for it */
  567.         if (error) {
  568.             Info(slide, 0x401, ((char *)slide, LoadFarString(MaybePakBug),
  569.               G.zipfn));
  570.             error_in_archive = PK_WARN;
  571.         }
  572. #endif /* !SFX */
  573.         if ((G.extra_bytes = G.real_ecrec_offset-G.expect_ecrec_offset) <
  574.             (LONGINT)0)
  575.         {
  576.             Info(slide, 0x401, ((char *)slide, LoadFarString(MissingBytes),
  577.               G.zipfn, (long)(-G.extra_bytes)));
  578.             error_in_archive = PK_ERR;
  579.         } else if (G.extra_bytes > 0) {
  580.             if ((G.ecrec.offset_start_central_directory == 0) &&
  581.                 (G.ecrec.size_central_directory != 0))   /* zip 1.5 -go bug */
  582.             {
  583.                 Info(slide, 0x401, ((char *)slide,
  584.                   LoadFarString(NullCentDirOffset), G.zipfn));
  585.                 G.ecrec.offset_start_central_directory = G.extra_bytes;
  586.                 G.extra_bytes = 0;
  587.                 error_in_archive = PK_ERR;
  588.             }
  589. #ifndef SFX
  590.             else {
  591.                 Info(slide, 0x401, ((char *)slide,
  592.                   LoadFarString(ExtraBytesAtStart), G.zipfn,
  593.                   (long)G.extra_bytes, (G.extra_bytes == 1)? "":"s"));
  594.                 error_in_archive = PK_WARN;
  595.             }
  596. #endif /* !SFX */
  597.         }
  598.     /*-----------------------------------------------------------------------
  599.         Check for empty zipfile and exit now if so.
  600.       -----------------------------------------------------------------------*/
  601.         if (G.expect_ecrec_offset==0L && G.ecrec.size_central_directory==0) {
  602.             if (uO.zipinfo_mode)
  603.                 Info(slide, 0, ((char *)slide, "%sEmpty zipfile.n",
  604.                   uO.lflag>9? "n  " : ""));
  605.             else
  606.                 Info(slide, 0x401, ((char *)slide, LoadFarString(ZipfileEmpty),
  607.                                     G.zipfn));
  608.             CLOSE_INFILE();
  609.             return (error_in_archive > PK_WARN)? error_in_archive : PK_WARN;
  610.         }
  611.     /*-----------------------------------------------------------------------
  612.         Compensate for missing or extra bytes, and seek to where the start
  613.         of central directory should be.  If header not found, uncompensate
  614.         and try again (necessary for at least some Atari archives created
  615.         with STZip, as well as archives created by J.H. Holm's ZIPSPLIT 1.1).
  616.       -----------------------------------------------------------------------*/
  617.         ZLSEEK( G.ecrec.offset_start_central_directory )
  618. #ifdef OLD_SEEK_TEST
  619.         if (readbuf(G.sig, 4) == 0) {
  620.             CLOSE_INFILE();
  621.             return PK_ERR;  /* file may be locked, or possibly disk error(?) */
  622.         }
  623.         if (strncmp(G.sig, central_hdr_sig, 4))
  624. #else
  625.         if ((readbuf(__G__ G.sig, 4) == 0) ||
  626.              strncmp(G.sig, central_hdr_sig, 4))
  627. #endif
  628.         {
  629. #ifndef SFX
  630.             long tmp = G.extra_bytes;
  631. #endif
  632.             G.extra_bytes = 0;
  633.             ZLSEEK( G.ecrec.offset_start_central_directory )
  634.             if ((readbuf(__G__ G.sig, 4) == 0) ||
  635.                 strncmp(G.sig, central_hdr_sig, 4))
  636.             {
  637.                 Info(slide, 0x401, ((char *)slide,
  638.                   LoadFarString(CentDirStartNotFound), G.zipfn,
  639.                   LoadFarStringSmall(ReportMsg)));
  640.                 CLOSE_INFILE();
  641.                 return PK_BADERR;
  642.             }
  643. #ifndef SFX
  644.             Info(slide, 0x401, ((char *)slide, LoadFarString(CentDirTooLong),
  645.               G.zipfn, -tmp));
  646. #endif
  647.             error_in_archive = PK_ERR;
  648.         }
  649.     /*-----------------------------------------------------------------------
  650.         Seek to the start of the central directory one last time, since we
  651.         have just read the first entry's signature bytes; then list, extract
  652.         or test member files as instructed, and close the zipfile.
  653.       -----------------------------------------------------------------------*/
  654.         Trace((stderr, "about to extract/list files (error = %d)n",
  655.           error_in_archive));
  656.         ZLSEEK( G.ecrec.offset_start_central_directory )
  657. #ifdef DLL
  658.         /* G.fValidate is used only to look at an archive to see if
  659.            it appears to be a valid archive.  There is no interest
  660.            in what the archive contains, nor in validating that the
  661.            entries in the archive are in good condition.  This is
  662.            currently used only in the Windows DLLs for purposes of
  663.            checking archives within an archive to determine whether
  664.            or not to display the inner archives.
  665.          */
  666.         if (!G.fValidate)
  667. #endif
  668.         {
  669. #ifndef NO_ZIPINFO
  670.             if (uO.zipinfo_mode)
  671.                 error = zipinfo(__G);                     /* ZIPINFO 'EM */
  672.             else
  673. #endif
  674. #ifndef SFX
  675. #ifdef TIMESTAMP
  676.             if (uO.T_flag)
  677.                 error = get_time_stamp(__G__ &uxstamp, &nmember);
  678.             else
  679. #endif
  680.             if (uO.vflag && !uO.tflag && !uO.cflag)
  681.                 error = list_files(__G);              /* LIST 'EM */
  682.             else
  683. #endif /* !SFX */
  684.                 error = extract_or_test_files(__G);   /* EXTRACT OR TEST 'EM */
  685.             Trace((stderr, "done with extract/list files (error = %d)n",
  686.                    error));
  687.         }
  688.         if (error > error_in_archive)   /* don't overwrite stronger error */
  689.             error_in_archive = error;   /*  with (for example) a warning */
  690. #ifndef SFX
  691.     } /* end if (!too_weird_to_continue) */
  692. #endif
  693.     CLOSE_INFILE();
  694. #ifdef TIMESTAMP
  695.     if (uO.T_flag && !uO.zipinfo_mode && (nmember > 0)) {
  696. # ifdef WIN32
  697.         if (stamp_file(__G__ G.zipfn, uxstamp)) {       /* TIME-STAMP 'EM */
  698. # else
  699.         if (stamp_file(G.zipfn, uxstamp)) {             /* TIME-STAMP 'EM */
  700. # endif
  701.             Info(slide, 0x201, ((char *)slide,
  702.               "warning:  cannot set time for %sn", G.zipfn));
  703.             if (error_in_archive < PK_WARN)
  704.                 error_in_archive = PK_WARN;
  705.         }
  706.     }
  707. #endif
  708.     return error_in_archive;
  709. } /* end function do_seekable() */
  710. /*************************/
  711. /* Function find_ecrec() */
  712. /*************************/
  713. static int find_ecrec(__G__ searchlen)          /* return PK-class error */
  714.     __GDEF
  715.     long searchlen;
  716. {
  717.     int i, numblks, found=FALSE;
  718.     LONGINT tail_len;
  719.     ec_byte_rec byterec;
  720. /*---------------------------------------------------------------------------
  721.     Treat case of short zipfile separately.
  722.   ---------------------------------------------------------------------------*/
  723.     if (G.ziplen <= INBUFSIZ) {
  724.         lseek(G.zipfd, 0L, SEEK_SET);
  725.         if ((G.incnt = read(G.zipfd,(char *)G.inbuf,(unsigned int)G.ziplen))
  726.             == (int)G.ziplen)
  727.             /* 'P' must be at least 22 bytes from end of zipfile */
  728.             for (G.inptr = G.inbuf+(int)G.ziplen-22;  G.inptr >= G.inbuf;
  729.                  --G.inptr)
  730.                 if ((native(*G.inptr) == 'P')  &&
  731.                      !strncmp((char *)G.inptr, end_central_sig, 4)) {
  732.                     G.incnt -= (int)(G.inptr - G.inbuf);
  733.                     found = TRUE;
  734.                     break;
  735.                 }
  736. /*---------------------------------------------------------------------------
  737.     Zipfile is longer than INBUFSIZ:  may need to loop.  Start with short
  738.     block at end of zipfile (if not TOO short).
  739.   ---------------------------------------------------------------------------*/
  740.     } else {
  741.         if ((tail_len = G.ziplen % INBUFSIZ) > ECREC_SIZE) {
  742. #ifdef USE_STRM_INPUT
  743.             fseek((FILE *)G.zipfd, G.ziplen-tail_len, SEEK_SET);
  744.             G.cur_zipfile_bufstart = ftell((FILE *)G.zipfd);
  745. #else /* !USE_STRM_INPUT */
  746.             G.cur_zipfile_bufstart = lseek(G.zipfd, G.ziplen-tail_len,
  747.               SEEK_SET);
  748. #endif /* ?USE_STRM_INPUT */
  749.             if ((G.incnt = read(G.zipfd, (char *)G.inbuf,
  750.                 (unsigned int)tail_len)) != (int)tail_len)
  751.                 goto fail;      /* it's expedient... */
  752.             /* 'P' must be at least 22 bytes from end of zipfile */
  753.             for (G.inptr = G.inbuf+(int)tail_len-22;  G.inptr >= G.inbuf;
  754.                  --G.inptr)
  755.                 if ((native(*G.inptr) == 'P')  &&
  756.                      !strncmp((char *)G.inptr, end_central_sig, 4)) {
  757.                     G.incnt -= (int)(G.inptr - G.inbuf);
  758.                     found = TRUE;
  759.                     break;
  760.                 }
  761.             /* sig may span block boundary: */
  762.             strncpy((char *)G.hold, (char *)G.inbuf, 3);
  763.         } else
  764.             G.cur_zipfile_bufstart = G.ziplen - tail_len;
  765.     /*-----------------------------------------------------------------------
  766.         Loop through blocks of zipfile data, starting at the end and going
  767.         toward the beginning.  In general, need not check whole zipfile for
  768.         signature, but may want to do so if testing.
  769.       -----------------------------------------------------------------------*/
  770.         numblks = (int)((searchlen - tail_len + (INBUFSIZ-1)) / INBUFSIZ);
  771.         /*               ==amount=   ==done==   ==rounding==    =blksiz=  */
  772.         for (i = 1;  !found && (i <= numblks);  ++i) {
  773.             G.cur_zipfile_bufstart -= INBUFSIZ;
  774.             lseek(G.zipfd, G.cur_zipfile_bufstart, SEEK_SET);
  775.             if ((G.incnt = read(G.zipfd,(char *)G.inbuf,INBUFSIZ))
  776.                 != INBUFSIZ)
  777.                 break;          /* fall through and fail */
  778.             for (G.inptr = G.inbuf+INBUFSIZ-1;  G.inptr >= G.inbuf;
  779.                  --G.inptr)
  780.                 if ((native(*G.inptr) == 'P')  &&
  781.                      !strncmp((char *)G.inptr, end_central_sig, 4)) {
  782.                     G.incnt -= (int)(G.inptr - G.inbuf);
  783.                     found = TRUE;
  784.                     break;
  785.                 }
  786.             /* sig may span block boundary: */
  787.             strncpy((char *)G.hold, (char *)G.inbuf, 3);
  788.         }
  789.     } /* end if (ziplen > INBUFSIZ) */
  790. /*---------------------------------------------------------------------------
  791.     Searched through whole region where signature should be without finding
  792.     it.  Print informational message and die a horrible death.
  793.   ---------------------------------------------------------------------------*/
  794. fail:
  795.     if (!found) {
  796.         if (uO.qflag || uO.zipinfo_mode)
  797.             Info(slide, 0x401, ((char *)slide, "[%s]n", G.zipfn));
  798.         Info(slide, 0x401, ((char *)slide,
  799.           LoadFarString(CentDirEndSigNotFound)));
  800.         return PK_ERR;   /* failed */
  801.     }
  802. /*---------------------------------------------------------------------------
  803.     Found the signature, so get the end-central data before returning.  Do
  804.     any necessary machine-type conversions (byte ordering, structure padding
  805.     compensation) by reading data into character array and copying to struct.
  806.   ---------------------------------------------------------------------------*/
  807.     G.real_ecrec_offset = G.cur_zipfile_bufstart + (G.inptr-G.inbuf);
  808. #ifdef TEST
  809.     printf("n  found end-of-central-dir signature at offset %ld (%.8lXh)n",
  810.       G.real_ecrec_offset, G.real_ecrec_offset);
  811.     printf("    from beginning of file; offset %d (%.4Xh) within blockn",
  812.       G.inptr-G.inbuf, G.inptr-G.inbuf);
  813. #endif
  814.     if (readbuf(__G__ (char *)byterec, ECREC_SIZE+4) == 0)
  815.         return PK_EOF;
  816.     G.ecrec.number_this_disk =
  817.       makeword(&byterec[NUMBER_THIS_DISK]);
  818.     G.ecrec.num_disk_start_cdir =
  819.       makeword(&byterec[NUM_DISK_WITH_START_CENTRAL_DIR]);
  820.     G.ecrec.num_entries_centrl_dir_ths_disk =
  821.       makeword(&byterec[NUM_ENTRIES_CENTRL_DIR_THS_DISK]);
  822.     G.ecrec.total_entries_central_dir =
  823.       makeword(&byterec[TOTAL_ENTRIES_CENTRAL_DIR]);
  824.     G.ecrec.size_central_directory =
  825.       makelong(&byterec[SIZE_CENTRAL_DIRECTORY]);
  826.     G.ecrec.offset_start_central_directory =
  827.       makelong(&byterec[OFFSET_START_CENTRAL_DIRECTORY]);
  828.     G.ecrec.zipfile_comment_length =
  829.       makeword(&byterec[ZIPFILE_COMMENT_LENGTH]);
  830.     G.expect_ecrec_offset = G.ecrec.offset_start_central_directory +
  831.                           G.ecrec.size_central_directory;
  832.     return PK_COOL;
  833. } /* end function find_ecrec() */
  834. /*****************************/
  835. /* Function uz_end_central() */
  836. /*****************************/
  837. int uz_end_central(__G)    /* return PK-type error code */
  838.     __GDEF
  839. {
  840.     int error = PK_COOL;
  841. /*---------------------------------------------------------------------------
  842.     Get the zipfile comment (up to 64KB long), if any, and print it out.
  843.     Then position the file pointer to the beginning of the central directory
  844.     and fill buffer.
  845.   ---------------------------------------------------------------------------*/
  846. #ifdef WINDLL
  847.     /* for comment button: */
  848.     if ((!G.fValidate) && (G.lpUserFunctions != NULL))
  849.        G.lpUserFunctions->cchComment = G.ecrec.zipfile_comment_length;
  850.     if (G.ecrec.zipfile_comment_length && (uO.zflag > 0))
  851. #else /* !WINDLL */
  852.     if (G.ecrec.zipfile_comment_length && (uO.zflag > 0 ||
  853.         (uO.zflag == 0 &&
  854. #ifdef TIMESTAMP
  855.                           !uO.T_flag &&
  856. #endif
  857.                                         !uO.qflag)))
  858. #endif /* ?WINDLL */
  859.     {
  860.         if (do_string(__G__ G.ecrec.zipfile_comment_length, DISPLAY)) {
  861.             Info(slide, 0x401, ((char *)slide,
  862.               LoadFarString(ZipfileCommTrunc1)));
  863.             error = PK_WARN;
  864.         }
  865.     }
  866.     return error;
  867. } /* end function uz_end_central() */
  868. /************************************/
  869. /* Function process_cdir_file_hdr() */
  870. /************************************/
  871. int process_cdir_file_hdr(__G)    /* return PK-type error code */
  872.     __GDEF
  873. {
  874.     int error;
  875. /*---------------------------------------------------------------------------
  876.     Get central directory info, save host and method numbers, and set flag
  877.     for lowercase conversion of filename, depending on the OS from which the
  878.     file is coming.
  879.   ---------------------------------------------------------------------------*/
  880.     if ((error = get_cdir_ent(__G)) != 0)
  881.         return error;
  882.     G.pInfo->hostnum = MIN(G.crec.version_made_by[1], NUM_HOSTS);
  883. /*  extnum = MIN(crec.version_needed_to_extract[1], NUM_HOSTS); */
  884.     G.pInfo->lcflag = 0;
  885.     if (uO.L_flag)            /* user specified case-conversion */
  886.         switch (G.pInfo->hostnum) {
  887.             case FS_FAT_:     /* PKZIP and zip -k store in uppercase */
  888.             case CPM_:        /* like MS-DOS, right? */
  889.             case VM_CMS_:     /* all caps? */
  890.             case MVS_:        /* all caps? */
  891.             case TANDEM_:
  892.             case TOPS20_:
  893.             case VMS_:        /* our Zip uses lowercase, but ASi's doesn't */
  894.         /*  case Z_SYSTEM_:   ? */
  895.         /*  case QDOS_:       ? */
  896.                 G.pInfo->lcflag = 1;   /* convert filename to lowercase */
  897.                 break;
  898.             default:     /* AMIGA_, FS_HPFS_, FS_NTFS_, MAC_, UNIX_, ATARI_, */
  899.                 break;   /*  FS_VFAT_, BEOS_ (Z_SYSTEM_):  no conversion */
  900.         }
  901.     /* do Amigas (AMIGA_) also have volume labels? */
  902.     if (IS_VOLID(G.crec.external_file_attributes) &&
  903.         (G.pInfo->hostnum == FS_FAT_ || G.pInfo->hostnum == FS_HPFS_ ||
  904.          G.pInfo->hostnum == FS_NTFS_ || G.pInfo->hostnum == ATARI_))
  905.     {
  906.         G.pInfo->vollabel = TRUE;
  907.         G.pInfo->lcflag = 0;        /* preserve case of volume labels */
  908.     } else
  909.         G.pInfo->vollabel = FALSE;
  910.     return PK_COOL;
  911. } /* end function process_cdir_file_hdr() */
  912. /***************************/
  913. /* Function get_cdir_ent() */
  914. /***************************/
  915. int get_cdir_ent(__G)   /* return PK-type error code */
  916.     __GDEF
  917. {
  918.     cdir_byte_hdr byterec;
  919. /*---------------------------------------------------------------------------
  920.     Read the next central directory entry and do any necessary machine-type
  921.     conversions (byte ordering, structure padding compensation--do so by
  922.     copying the data from the array into which it was read (byterec) to the
  923.     usable struct (crec)).
  924.   ---------------------------------------------------------------------------*/
  925.     if (readbuf(__G__ (char *)byterec, CREC_SIZE) == 0)
  926.         return PK_EOF;
  927.     G.crec.version_made_by[0] = byterec[C_VERSION_MADE_BY_0];
  928.     G.crec.version_made_by[1] = byterec[C_VERSION_MADE_BY_1];
  929.     G.crec.version_needed_to_extract[0] =
  930.       byterec[C_VERSION_NEEDED_TO_EXTRACT_0];
  931.     G.crec.version_needed_to_extract[1] =
  932.       byterec[C_VERSION_NEEDED_TO_EXTRACT_1];
  933.     G.crec.general_purpose_bit_flag =
  934.       makeword(&byterec[C_GENERAL_PURPOSE_BIT_FLAG]);
  935.     G.crec.compression_method =
  936.       makeword(&byterec[C_COMPRESSION_METHOD]);
  937.     G.crec.last_mod_dos_datetime =
  938.       makelong(&byterec[C_LAST_MOD_DOS_DATETIME]);
  939.     G.crec.crc32 =
  940.       makelong(&byterec[C_CRC32]);
  941.     G.crec.csize =
  942.       makelong(&byterec[C_COMPRESSED_SIZE]);
  943.     G.crec.ucsize =
  944.       makelong(&byterec[C_UNCOMPRESSED_SIZE]);
  945.     G.crec.filename_length =
  946.       makeword(&byterec[C_FILENAME_LENGTH]);
  947.     G.crec.extra_field_length =
  948.       makeword(&byterec[C_EXTRA_FIELD_LENGTH]);
  949.     G.crec.file_comment_length =
  950.       makeword(&byterec[C_FILE_COMMENT_LENGTH]);
  951.     G.crec.disk_number_start =
  952.       makeword(&byterec[C_DISK_NUMBER_START]);
  953.     G.crec.internal_file_attributes =
  954.       makeword(&byterec[C_INTERNAL_FILE_ATTRIBUTES]);
  955.     G.crec.external_file_attributes =
  956.       makelong(&byterec[C_EXTERNAL_FILE_ATTRIBUTES]);  /* LONG, not word! */
  957.     G.crec.relative_offset_local_header =
  958.       makelong(&byterec[C_RELATIVE_OFFSET_LOCAL_HEADER]);
  959.     return PK_COOL;
  960. } /* end function get_cdir_ent() */
  961. /*************************************/
  962. /* Function process_local_file_hdr() */
  963. /*************************************/
  964. int process_local_file_hdr(__G)    /* return PK-type error code */
  965.     __GDEF
  966. {
  967.     local_byte_hdr byterec;
  968. /*---------------------------------------------------------------------------
  969.     Read the next local file header and do any necessary machine-type con-
  970.     versions (byte ordering, structure padding compensation--do so by copy-
  971.     ing the data from the array into which it was read (byterec) to the
  972.     usable struct (lrec)).
  973.   ---------------------------------------------------------------------------*/
  974.     if (readbuf(__G__ (char *)byterec, LREC_SIZE) == 0)
  975.         return PK_EOF;
  976.     G.lrec.version_needed_to_extract[0] =
  977.       byterec[L_VERSION_NEEDED_TO_EXTRACT_0];
  978.     G.lrec.version_needed_to_extract[1] =
  979.       byterec[L_VERSION_NEEDED_TO_EXTRACT_1];
  980.     G.lrec.general_purpose_bit_flag =
  981.       makeword(&byterec[L_GENERAL_PURPOSE_BIT_FLAG]);
  982.     G.lrec.compression_method = makeword(&byterec[L_COMPRESSION_METHOD]);
  983.     G.lrec.last_mod_dos_datetime = makelong(&byterec[L_LAST_MOD_DOS_DATETIME]);
  984.     G.lrec.crc32 = makelong(&byterec[L_CRC32]);
  985.     G.lrec.csize = makelong(&byterec[L_COMPRESSED_SIZE]);
  986.     G.lrec.ucsize = makelong(&byterec[L_UNCOMPRESSED_SIZE]);
  987.     G.lrec.filename_length = makeword(&byterec[L_FILENAME_LENGTH]);
  988.     G.lrec.extra_field_length = makeword(&byterec[L_EXTRA_FIELD_LENGTH]);
  989.     G.csize = (long) G.lrec.csize;
  990.     G.ucsize = (long) G.lrec.ucsize;
  991.     if ((G.lrec.general_purpose_bit_flag & 8) != 0) {
  992.         /* can't trust local header, use central directory: */
  993.         G.lrec.crc32 = G.pInfo->crc;
  994.         G.csize = (long)(G.lrec.csize = G.pInfo->compr_size);
  995.         G.ucsize = (long)(G.lrec.ucsize = G.pInfo->uncompr_size);
  996.     }
  997.     return PK_COOL;
  998. } /* end function process_local_file_hdr() */
  999. #ifdef USE_EF_UT_TIME
  1000. /*******************************/
  1001. /* Function ef_scan_for_izux() */
  1002. /*******************************/
  1003. unsigned ef_scan_for_izux(ef_buf, ef_len, ef_is_c, dos_mdatetime,
  1004.                           z_utim, z_uidgid)
  1005.     uch *ef_buf;        /* buffer containing extra field */
  1006.     unsigned ef_len;    /* total length of extra field */
  1007.     int ef_is_c;        /* flag indicating "is central extra field" */
  1008.     ulg dos_mdatetime;  /* last_mod_file_date_time in DOS format */
  1009.     iztimes *z_utim;    /* return storage: atime, mtime, ctime */
  1010.     ush *z_uidgid;      /* return storage: uid and gid */
  1011. {
  1012.     unsigned flags = 0;
  1013.     unsigned eb_id;
  1014.     unsigned eb_len;
  1015.     int have_new_type_eb = FALSE;
  1016.     int ut_zip_unzip_compatible = FALSE;
  1017. /*---------------------------------------------------------------------------
  1018.     This function scans the extra field for EF_TIME, EF_IZUNIX2, EF_IZUNIX, or
  1019.     EF_PKUNIX blocks containing Unix-style time_t (GMT) values for the entry's
  1020.     access, creation, and modification time.
  1021.     If a valid block is found, the time stamps are copied to the iztimes
  1022.     structure (provided the z_utim pointer is not NULL).
  1023.     If a IZUNIX2 block is found or the IZUNIX block contains UID/GID fields,
  1024.     and the z_uidgid array pointer is valid (!= NULL), the owner info is
  1025.     transfered as well.
  1026.     The presence of an EF_TIME or EF_IZUNIX2 block results in ignoring all
  1027.     data from probably present obsolete EF_IZUNIX blocks.
  1028.     If multiple blocks of the same type are found, only the information from
  1029.     the last block is used.
  1030.     The return value is a combination of the EF_TIME Flags field with an
  1031.     additional flag bit indicating the presence of valid UID/GID info,
  1032.     or 0 in case of failure.
  1033.   ---------------------------------------------------------------------------*/
  1034.     if (ef_len == 0 || ef_buf == NULL || (z_utim == 0 && z_uidgid == NULL))
  1035.         return 0;
  1036.     TTrace((stderr,"nef_scan_for_izux: scanning extra field of length %un",
  1037.       ef_len));
  1038.     while (ef_len >= EB_HEADSIZE) {
  1039.         eb_id = makeword(EB_ID + ef_buf);
  1040.         eb_len = makeword(EB_LEN + ef_buf);
  1041.         if (eb_len > (ef_len - EB_HEADSIZE)) {
  1042.             /* discovered some extra field inconsistency! */
  1043.             TTrace((stderr,
  1044.               "ef_scan_for_izux: block length %u > rest ef_size %un", eb_len,
  1045.               ef_len - EB_HEADSIZE));
  1046.             break;
  1047.         }
  1048.         switch (eb_id) {
  1049.           case EF_TIME:
  1050.             flags &= ~0x0ff;    /* ignore previous IZUNIX or EF_TIME fields */
  1051.             have_new_type_eb = TRUE;
  1052.             if ( eb_len >= EB_UT_MINLEN && z_utim != NULL) {
  1053.                 unsigned eb_idx = EB_UT_TIME1;
  1054.                 TTrace((stderr,"ef_scan_for_izux: found TIME extra fieldn"));
  1055.                 flags |= (ef_buf[EB_HEADSIZE+EB_UT_FLAGS] & 0x0ff);
  1056.                 if ((flags & EB_UT_FL_MTIME)) {
  1057.                     if ((eb_idx+4) <= eb_len) {
  1058.                         z_utim->mtime = makelong((EB_HEADSIZE+eb_idx) + ef_buf);
  1059.                         eb_idx += 4;
  1060.                         TTrace((stderr,"  UT e.f. modification time = %ldn",
  1061.                                 z_utim->mtime));
  1062.                         if ((ulg)(z_utim->mtime) & (ulg)(0x80000000L)) {
  1063.                             ut_zip_unzip_compatible =
  1064.                               ((time_t)0x80000000L < (time_t)0L)
  1065.                               ? (dos_mdatetime == DOSTIME_MINIMUM)
  1066.                               : (dos_mdatetime >= DOSTIME_2038_01_18);
  1067.                             if (!ut_zip_unzip_compatible) {
  1068.                             /* UnZip interpretes mtime differently than Zip;
  1069.                                without modtime: ignore complete UT field */
  1070.                               flags &= ~0x0ff;  /* no time_t times available */
  1071.                               TTrace((stderr,
  1072.                                 "  UT modtime range error; ignore e.f.!n"));
  1073.                               break;            /* stop scanning this field */
  1074.                             }
  1075.                         } else {
  1076.                             /* cannot determine, safe assumption is FALSE */
  1077.                             ut_zip_unzip_compatible = FALSE;
  1078.                         }
  1079.                     } else {
  1080.                         flags &= ~EB_UT_FL_MTIME;
  1081.                         TTrace((stderr,"  UT e.f. truncated; no modtimen"));
  1082.                     }
  1083.                 }
  1084.                 if (ef_is_c) {
  1085.                     break;      /* central version of TIME field ends here */
  1086.                 }
  1087.                 if (flags & EB_UT_FL_ATIME) {
  1088.                     if ((eb_idx+4) <= eb_len) {
  1089.                         z_utim->atime = makelong((EB_HEADSIZE+eb_idx) + ef_buf);
  1090.                         eb_idx += 4;
  1091.                         TTrace((stderr,"  UT e.f. access time = %ldn",
  1092.                                 z_utim->atime));
  1093.                         if (((ulg)(z_utim->atime) & (ulg)(0x80000000L)) &&
  1094.                             !ut_zip_unzip_compatible) {
  1095.                             flags &= ~EB_UT_FL_ATIME;
  1096.                             TTrace((stderr,
  1097.                               "  UT access time range error: skip time!n"));
  1098.                         }
  1099.                     } else {
  1100.                         flags &= ~EB_UT_FL_ATIME;
  1101.                     }
  1102.                 }
  1103.                 if (flags & EB_UT_FL_CTIME) {
  1104.                     if ((eb_idx+4) <= eb_len) {
  1105.                         z_utim->ctime = makelong((EB_HEADSIZE+eb_idx) + ef_buf);
  1106.                         TTrace((stderr,"  UT e.f. creation time = %ldn",
  1107.                                 z_utim->ctime));
  1108.                         if (((ulg)(z_utim->ctime) & (ulg)(0x80000000L)) &&
  1109.                             !ut_zip_unzip_compatible) {
  1110.                             flags &= ~EB_UT_FL_CTIME;
  1111.                             TTrace((stderr,
  1112.                               "  UT creation time range error: skip time!n"));
  1113.                         }
  1114.                     } else {
  1115.                         flags &= ~EB_UT_FL_CTIME;
  1116.                     }
  1117.                 }
  1118.             }
  1119.             break;
  1120.           case EF_IZUNIX2:
  1121.             if (!have_new_type_eb) {
  1122.                 flags &= ~0x0ff;        /* ignore any previous IZUNIX field */
  1123.                 have_new_type_eb = TRUE;
  1124.             }
  1125.             if (eb_len >= EB_UX2_MINLEN && z_uidgid != NULL) {
  1126.                 z_uidgid[0] = makeword((EB_HEADSIZE+EB_UX2_UID) + ef_buf);
  1127.                 z_uidgid[1] = makeword((EB_HEADSIZE+EB_UX2_GID) + ef_buf);
  1128.                 flags |= EB_UX2_VALID;   /* signal success */
  1129.             }
  1130.             break;
  1131.           case EF_IZUNIX:
  1132.           case EF_PKUNIX:       /* PKUNIX e.f. layout is identical to IZUNIX */
  1133.             if (eb_len >= EB_UX_MINLEN) {
  1134.                 TTrace((stderr,"ef_scan_for_izux: found %s extra fieldn",
  1135.                         (eb_id == EF_IZUNIX ? "IZUNIX" : "PKUNIX")));
  1136.                 if (have_new_type_eb) {
  1137.                     break;      /* Ignore IZUNIX extra field block ! */
  1138.                 }
  1139.                 if (z_utim != NULL) {
  1140.                     z_utim->atime = makelong((EB_HEADSIZE+EB_UX_ATIME)+ef_buf);
  1141.                     z_utim->mtime = makelong((EB_HEADSIZE+EB_UX_MTIME)+ef_buf);
  1142.                     TTrace((stderr,"  Unix EF actime = %ldn", z_utim->atime));
  1143.                     TTrace((stderr,"  Unix EF modtime = %ldn", z_utim->mtime));
  1144.                     flags |= (EB_UT_FL_MTIME | EB_UT_FL_ATIME);
  1145.                     if ((ulg)(z_utim->mtime) & (ulg)(0x80000000L)) {
  1146.                         ut_zip_unzip_compatible =
  1147.                           ((time_t)0x80000000L < (time_t)0L)
  1148.                           ? (dos_mdatetime == DOSTIME_MINIMUM)
  1149.                           : (dos_mdatetime >= DOSTIME_2038_01_18);
  1150.                         if (!ut_zip_unzip_compatible) {
  1151.                             /* UnZip interpretes mtime differently than Zip;
  1152.                                without modtime: ignore complete UT field */
  1153.                             flags &= ~0x0ff;    /* no time_t times available */
  1154.                             TTrace((stderr,
  1155.                                   "  UX modtime range error: ignore e.f.!n"));
  1156.                         }
  1157.                     } else {
  1158.                         /* cannot determine, safe assumption is FALSE */
  1159.                         ut_zip_unzip_compatible = FALSE;
  1160.                     }
  1161.                     if ((ulg)(z_utim->atime) & (ulg)(0x80000000L) &&
  1162.                         !ut_zip_unzip_compatible && (flags & 0x0ff)) {
  1163.                         /* atime not in range of UnZip's time_t */
  1164.                         flags &= ~EB_UT_FL_ATIME;
  1165.                         TTrace((stderr,
  1166.                                 "  UX access time range error: skip time!n"));
  1167.                     }
  1168.                 }
  1169.                 if (eb_len >= EB_UX_FULLSIZE && z_uidgid != NULL) {
  1170.                     z_uidgid[0] = makeword((EB_HEADSIZE+EB_UX_UID) + ef_buf);
  1171.                     z_uidgid[1] = makeword((EB_HEADSIZE+EB_UX_GID) + ef_buf);
  1172.                     flags |= EB_UX2_VALID;
  1173.                 }
  1174.             }
  1175.             break;
  1176.           default:
  1177.             break;
  1178.         }
  1179.         /* Skip this extra field block */
  1180.         ef_buf += (eb_len + EB_HEADSIZE);
  1181.         ef_len -= (eb_len + EB_HEADSIZE);
  1182.     }
  1183.     return flags;
  1184. }
  1185. #endif /* USE_EF_UT_TIME */