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

压缩解压

开发平台:

MultiPlatform

  1. /*---------------------------------------------------------------------------
  2.   win32.c
  3.   32-bit Windows-specific (NT/95) routines for use with Info-ZIP's UnZip 5.3
  4.   and later.
  5.   Contains:  GetLoadPath()
  6.              Opendir()
  7.              Readdir()
  8.              Closedir()
  9.              process_defer_NT()   process any deferred items
  10.              SetSD()              set security descriptor on file
  11.              EvalExtraFields()    evaluate and process and extra field NOW
  12.              IsWinNT()            indicate type of WIN32 platform
  13.              test_NTSD()          test integrity of NT security data
  14.              utime2FileTime()
  15.              FStampIsLocTime()
  16.              FileTime2utime()
  17.              VFatFileTime2utime()
  18.              UTCtime2Localtime()
  19.              NTtzbugWorkaround()
  20.              getNTfiletime()
  21.              close_outfile()
  22.              stamp_file()
  23.              isfloppy()
  24.              NTQueryVolInfo()
  25.              IsVolumeOldFAT()
  26.              do_wild()
  27.              mapattr()
  28.              mapname()
  29.              map2fat()
  30.              checkdir()
  31.              version()
  32.              zstat_win32()
  33.              getch_win32()
  34.   ---------------------------------------------------------------------------*/
  35. #define UNZIP_INTERNAL
  36. #include "unzip.h"
  37. #include <windows.h>    /* must be AFTER unzip.h to avoid struct G problems */
  38. #ifdef __RSXNT__
  39. #  include "win32/rsxntwin.h"
  40. #endif
  41. #include "win32/nt.h"
  42. #ifndef FUNZIP          /* most of this file is not used with fUnZip */
  43. #if (defined(__GO32__) || defined(__EMX__) || defined(__CYGWIN32__))
  44. #  define MKDIR(path,mode)   mkdir(path,mode)
  45. #else
  46. #  define MKDIR(path,mode)   mkdir(path)
  47. #endif
  48. #ifdef HAVE_WORKING_DIRENT_H
  49. #  undef HAVE_WORKING_DIRENT_H
  50. #endif
  51. /* The emxrtl dirent support of (__GO32__ || __EMX__) converts to lowercase! */
  52. #if defined(__CYGWIN32__)
  53. #  define HAVE_WORKING_DIRENT_H
  54. #endif
  55. #ifndef SFX
  56. #  ifdef HAVE_WORKING_DIRENT_H
  57. #    include <dirent.h>         /* use readdir() */
  58. #    define zdirent  dirent
  59. #    define zDIR     DIR
  60. #    define Opendir  opendir
  61. #    define Readdir  readdir
  62. #    define Closedir closedir
  63. #  else /* !HAVE_WORKING_DIRENT_H */
  64.      typedef struct zdirent {
  65.          char    reserved [21];
  66.          char    ff_attrib;
  67.          short   ff_ftime;
  68.          short   ff_fdate;
  69.          long    size;
  70.          char    d_name[MAX_PATH];
  71.          int     d_first;
  72.          HANDLE  d_hFindFile;
  73.      } zDIR;
  74.      static zDIR           *Opendir  (const char *n);
  75.      static struct zdirent *Readdir  (zDIR *d);
  76.      static void            Closedir (zDIR *d);
  77. #  endif /* ?HAVE_WORKING_DIRENT_H */
  78. #endif /* !SFX */
  79. /* Function prototypes */
  80. #ifdef NTSD_EAS
  81.    static int  SetSD(__GPRO__ char *path, PVOLUMECAPS VolumeCaps,
  82.                      uch *eb_ptr, unsigned eb_len);
  83.    static int  EvalExtraFields(__GPRO__ char *path, uch *ef_ptr,
  84.                                unsigned ef_len);
  85. #endif
  86. #if (defined(USE_EF_UT_TIME) || defined(NT_TZBUG_WORKAROUND) || 
  87.      defined(TIMESTAMP))
  88.    static void utime2FileTime(time_t ut, FILETIME *pft);
  89.    static int FStampIsLocTime(__GPRO__ const char *path);
  90. #endif /* USE_EF_UT_TIME || NT_TZBUG_WORKAROUND || TIMESTAMP */
  91. #ifdef NT_TZBUG_WORKAROUND
  92.    static int FileTime2utime(const FILETIME *pft, time_t *ut);
  93. #ifdef W32_STAT_BANDAID
  94.    static int VFatFileTime2utime(const FILETIME *pft, time_t *ut);
  95. #endif
  96.    static time_t UTCtime2Localtime(time_t utctime);
  97.    static void NTtzbugWorkaround(time_t ut, FILETIME *pft);
  98. #endif /* NT_TZBUG_WORKAROUND */
  99. static int  getNTfiletime   (__GPRO__ FILETIME *pModFT, FILETIME *pAccFT,
  100.                              FILETIME *pCreFT);
  101. static int  isfloppy        (int nDrive);
  102. static int  NTQueryVolInfo  (__GPRO__ const char *name);
  103. static int  IsVolumeOldFAT  (__GPRO__ const char *name);
  104. static void map2fat         (char *pathcomp, char **pEndFAT);
  105. #ifdef __MINGW32__
  106.    int _CRT_glob = 0;   /* suppress command line globbing by C RTL */
  107. #endif
  108. /* static int created_dir;      */     /* used by mapname(), checkdir() */
  109. /* static int renamed_fullpath; */     /* ditto */
  110. /* static int fnlen;            */     /* ditto */
  111. /* static unsigned nLabelDrive; */     /* ditto */
  112. extern char Far TruncNTSD[];    /* in extract.c */
  113. #ifdef SFX
  114. /**************************/
  115. /* Function GetLoadPath() */
  116. /**************************/
  117. char *GetLoadPath(__GPRO)
  118. {
  119. #ifdef MSC
  120.     extern char *_pgmptr;
  121.     return _pgmptr;
  122. #else    /* use generic API call */
  123.     GetModuleFileName(NULL, G.filename, FILNAMSIZ-1);
  124.     _ISO_INTERN(G.filename);    /* translate to codepage of C rtl's stdio */
  125.     return G.filename;
  126. #endif
  127. } /* end function GetLoadPath() */
  128. #else /* !SFX */
  129. #ifndef HAVE_WORKING_DIRENT_H
  130. /**********************/        /* Borrowed from ZIP 2.0 sources            */
  131. /* Function Opendir() */        /* Difference: no special handling for      */
  132. /**********************/        /*             hidden or system files.      */
  133. static zDIR *Opendir(n)
  134.     const char *n;          /* directory to open */
  135. {
  136.     zDIR *d;                /* malloc'd return value */
  137.     char *p;                /* malloc'd temporary string */
  138.     WIN32_FIND_DATA fd;
  139.     extent len = strlen(n);
  140.     /* Start searching for files in directory n */
  141.     if ((d = (zDIR *)malloc(sizeof(zDIR))) == NULL ||
  142.         (p = malloc(strlen(n) + 5)) == NULL)
  143.     {
  144.         if (d != (zDIR *)NULL)
  145.             free((void *)d);
  146.         return (zDIR *)NULL;
  147.     }
  148.     INTERN_TO_ISO(n, p);
  149.     if (len > 0) {
  150.         if (p[len-1] == ':')
  151.             p[len++] = '.';     /* x: => x:. */
  152.         else if (p[len-1] == '/' || p[len-1] == '\')
  153.             --len;              /* foo/ => foo */
  154.     }
  155.     strcpy(p+len, "/*");
  156.     if (INVALID_HANDLE_VALUE == (d->d_hFindFile = FindFirstFile(p, &fd))) {
  157.         free((zvoid *)d);
  158.         free((zvoid *)p);
  159.         return NULL;
  160.     }
  161.     strcpy(d->d_name, fd.cFileName);
  162.     free((zvoid *)p);
  163.     d->d_first = 1;
  164.     return d;
  165. } /* end of function Opendir() */
  166. /**********************/        /* Borrowed from ZIP 2.0 sources            */
  167. /* Function Readdir() */        /* Difference: no special handling for      */
  168. /**********************/        /*             hidden or system files.      */
  169. static struct zdirent *Readdir(d)
  170.     zDIR *d;                    /* directory stream from which to read */
  171. {
  172.     /* Return pointer to first or next directory entry, or NULL if end. */
  173.     if ( d->d_first )
  174.         d->d_first = 0;
  175.     else
  176.     {
  177.         WIN32_FIND_DATA fd;
  178.         if ( !FindNextFile(d->d_hFindFile, &fd) )
  179.             return NULL;
  180.         ISO_TO_INTERN(fd.cFileName, d->d_name);
  181.     }
  182.     return (struct zdirent *)d;
  183. } /* end of function Readdir() */
  184. /***********************/
  185. /* Function Closedir() */       /* Borrowed from ZIP 2.0 sources */
  186. /***********************/
  187. static void Closedir(d)
  188.     zDIR *d;                    /* directory stream to close */
  189. {
  190.     FindClose(d->d_hFindFile);
  191.     free(d);
  192. }
  193. #endif /* !HAVE_WORKING_DIRENT_H */
  194. #endif /* ?SFX */
  195. #ifdef NTSD_EAS
  196. /*********************************/
  197. /*  Function process_defer_NT()  */
  198. /*********************************/
  199. void process_defer_NT(__G)
  200.     __GDEF
  201. {
  202.     /* process deferred items */
  203.     DWORD dir, bytes;
  204.     DWORD dirfail, bytesfail;
  205.     ProcessDefer(&dir, &bytes, &dirfail, &bytesfail);
  206.     if (!uO.tflag && (uO.qflag < 2)) {
  207.         if (dir)
  208.             Info(slide, 0, ((char *)slide,
  209.               "    updated: %lu directory entries with %lu bytes security",
  210.               (ulg)dir, (ulg)bytes));
  211.         if (dirfail)
  212.             Info(slide, 0, ((char *)slide,
  213.               "     failed: %lu directory entries with %lu bytes security",
  214.               (ulg)dirfail, (ulg)bytesfail));
  215.     }
  216. }
  217. /**********************/
  218. /*  Function SetSD()  */   /* return almost-PK errors */
  219. /**********************/
  220. static int SetSD(__G__ path, VolumeCaps, eb_ptr, eb_len)
  221.     __GDEF
  222.     char *path;
  223.     PVOLUMECAPS VolumeCaps;
  224.     uch *eb_ptr;
  225.     unsigned eb_len;
  226. {
  227.     ulg ntsd_ucSize;
  228.     uch *security_data;
  229.     int error;
  230.     if (eb_ptr == NULL || eb_len < EB_NTSD_L_LEN)
  231.         return PK_OK;  /* not a valid NTSD extra field:  assume OK */
  232.     /* check if we know how to handle this version */
  233.     if (*(eb_ptr + (EB_HEADSIZE+EB_NTSD_VERSION)) > (uch)EB_NTSD_MAX_VER)
  234.         return PK_OK;
  235.     ntsd_ucSize = makelong(eb_ptr + (EB_HEADSIZE+EB_UCSIZE_P));
  236.     if (ntsd_ucSize > 0L && eb_len <= (EB_NTSD_L_LEN + EB_CMPRHEADLEN))
  237.         return IZ_EF_TRUNC;               /* no compressed data! */
  238.     /* allocate storage for uncompressed data */
  239.     security_data = (uch *)malloc((extent)ntsd_ucSize);
  240.     if (security_data == (uch *)NULL)
  241.         return PK_MEM4;
  242.     error = memextract(__G__ security_data, ntsd_ucSize,
  243.       (eb_ptr + (EB_HEADSIZE+EB_NTSD_L_LEN)), (ulg)(eb_len - EB_NTSD_L_LEN));
  244.     if (error == PK_OK) {
  245.         if (SecuritySet(path, VolumeCaps, security_data)) {
  246.             error = PK_COOL;
  247.             if (!uO.tflag && (uO.qflag < 2) &&
  248.                 (!(VolumeCaps->dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)))
  249.                 Info(slide, 0, ((char *)slide, " (%ld bytes security)",
  250.                   ntsd_ucSize));
  251.         }
  252.     }
  253.     free(security_data);
  254.     return error;
  255. }
  256. /********************************/   /* scan extra fields for something */
  257. /*  Function EvalExtraFields()  */   /*  we happen to know */
  258. /********************************/
  259. static int EvalExtraFields(__G__ path, ef_ptr, ef_len)
  260.     __GDEF
  261.     char *path;
  262.     uch *ef_ptr;
  263.     unsigned ef_len;
  264. {
  265.     int rc = PK_OK;
  266.     if (!uO.X_flag)
  267.         return PK_OK;  /* user said don't process ACLs; for now, no other
  268.                           extra block types are handled here */
  269.     while (ef_len >= EB_HEADSIZE)
  270.     {
  271.         unsigned eb_id = makeword(EB_ID + ef_ptr);
  272.         unsigned eb_len = makeword(EB_LEN + ef_ptr);
  273.         if (eb_len > (ef_len - EB_HEADSIZE)) {
  274.             /* discovered some extra field inconsistency! */
  275.             Trace((stderr,
  276.               "EvalExtraFields: block length %u > rest ef_size %un", eb_len,
  277.               ef_len - EB_HEADSIZE));
  278.             break;
  279.         }
  280.         switch (eb_id)
  281.         {
  282.             /* process security descriptor extra data if:
  283.                  Caller is WinNT AND
  284.                  Target local/remote drive supports acls AND
  285.                  Target file is not a directory (else we defer processing
  286.                    until later)
  287.              */
  288.             case EF_NTSD:
  289.                 if (IsWinNT()) {
  290.                     VOLUMECAPS VolumeCaps;
  291.                     /* provide useful input */
  292.                     VolumeCaps.dwFileAttributes = G.pInfo->file_attr;
  293.                     VolumeCaps.bUsePrivileges = (uO.X_flag > 1);
  294.                     /* check target volume capabilities - just fall through
  295.                      * and try if fail */
  296.                     if (GetVolumeCaps(G.rootpath, path, &VolumeCaps) &&
  297.                         !(VolumeCaps.dwFileSystemFlags & FS_PERSISTENT_ACLS))
  298.                     {
  299.                         rc = PK_OK;
  300.                         break;
  301.                     }
  302.                     rc = SetSD(__G__ path, &VolumeCaps, ef_ptr, eb_len);
  303.                 } else
  304.                     rc = PK_OK;
  305.                 break;
  306. #if 0
  307.             /* perhaps later we can add support for unzipping OS/2 EAs to NT */
  308.             case EF_OS2:
  309.                 rc = SetEAs(__G__ path, ef_ptr);
  310.                 break;
  311.             case EF_PKUNIX:
  312.             case EF_IZUNIX:
  313.             case EF_IZUNIX2:
  314.             case EF_TIME:
  315.                 break;          /* handled elsewhere */
  316. #else /* ! 0 */
  317. #ifdef DEBUG
  318.             case EF_AV:
  319.             case EF_OS2:
  320.             case EF_PKVMS:
  321.             case EF_PKW32:
  322.             case EF_PKUNIX:
  323.             case EF_IZVMS:
  324.             case EF_IZUNIX:
  325.             case EF_IZUNIX2:
  326.             case EF_TIME:
  327.             case EF_MAC3:
  328.             case EF_JLMAC:
  329.             case EF_ZIPIT:
  330.             case EF_VMCMS:
  331.             case EF_MVS:
  332.             case EF_ACL:
  333.             case EF_BEOS:
  334.             case EF_QDOS:
  335.             case EF_AOSVS:
  336.             case EF_SPARK:
  337.             case EF_MD5:
  338.             case EF_ASIUNIX:
  339.                 break;          /* shut up for other known e.f. blocks  */
  340. #endif /* DEBUG */
  341. #endif /* ? 0 */
  342.             default:
  343.                 Trace((stderr,
  344.                   "EvalExtraFields: unknown extra field block, ID=%un",
  345.                   eb_id));
  346.                 break;
  347.         }
  348.         ef_ptr += (eb_len + EB_HEADSIZE);
  349.         ef_len -= (eb_len + EB_HEADSIZE);
  350.         if (rc != PK_OK)
  351.             break;
  352.     }
  353.     return rc;
  354. }
  355. #ifndef SFX
  356. /**************************/
  357. /*  Function test_NTSD()  */   /*  returns PK_WARN when NTSD data is invalid */
  358. /**************************/
  359. #ifdef __BORLANDC__
  360. /* Turn off warning about not using all parameters for this function only */
  361. #pragma argsused
  362. #endif
  363. int test_NTSD(__G__ eb, eb_size, eb_ucptr, eb_ucsize)
  364.     __GDEF
  365.     uch *eb;
  366.     unsigned eb_size;
  367.     uch *eb_ucptr;
  368.     ulg eb_ucsize;
  369. {
  370.     int r = PK_OK;
  371.     if (!ValidateSecurity(eb_ucptr))
  372.         r = PK_WARN;
  373.     return r;
  374. } /* end function test_NTSD() */
  375. #endif /* !SFX */
  376. #endif /* NTSD_EAS */
  377. /**********************/
  378. /* Function IsWinNT() */
  379. /**********************/
  380. int IsWinNT(void)       /* returns TRUE if real NT, FALSE if Win95 or Win32s */
  381. {
  382.     static DWORD g_PlatformId = 0xFFFFFFFF; /* saved platform indicator */
  383.     if (g_PlatformId == 0xFFFFFFFF) {
  384.         /* note: GetVersionEx() doesn't exist on WinNT 3.1 */
  385.         if (GetVersion() < 0x80000000)
  386.             g_PlatformId = TRUE;
  387.         else
  388.             g_PlatformId = FALSE;
  389.     }
  390.     return (int)g_PlatformId;
  391. }
  392. /* DEBUG_TIME insertion: */
  393. #ifdef DEBUG_TIME
  394. static int show_NTFileTime(FILE *hdo, char *TTmsg, int isloc, FILETIME *pft);
  395. static int show_NTFileTime(FILE *hdo, char *TTmsg, int isloc, FILETIME *pft)
  396. {
  397.     SYSTEMTIME w32tm;
  398.     int rval;
  399.     rval = FileTimeToSystemTime(pft, &w32tm);
  400.     if (!rval) {
  401.         fprintf(hdo, "%sn %08lX,%08lX (%s) -> Conversion failed !!!n",
  402.                 TTmsg, (ulg)(pft->dwHighDateTime), (ulg)(pft->dwLowDateTime),
  403.                 (isloc ? "local" : "UTC"));
  404.     } else {
  405.         fprintf(hdo, "%sn %08lx,%08lx -> %04u-%02u-%02u, %02u:%02u:%02u %sn",
  406.                 TTmsg, (ulg)(pft->dwHighDateTime), (ulg)(pft->dwLowDateTime),
  407.                 w32tm.wYear, w32tm.wMonth, w32tm.wDay, w32tm.wHour,
  408.                 w32tm.wMinute, w32tm.wSecond, (isloc ? "local" : "UTC"));
  409.     }
  410.     return rval;
  411. }
  412. #define FTTrace(x)   show_NTFileTime x
  413. #else
  414. #define FTTrace(x)
  415. #endif /* DEBUG_TIME */
  416. /* end of TIME_DEBUG insertion */
  417. #if (defined(USE_EF_UT_TIME) || defined(NT_TZBUG_WORKAROUND) || 
  418.      defined(TIMESTAMP))
  419. #if ((defined(__GNUC__) || defined(ULONG_LONG_MAX)) && !defined(HAVE_INT64))
  420.    typedef long long            LLONG64;
  421.    typedef unsigned long long   ULLNG64;
  422. #  define HAVE_INT64
  423. #endif
  424. #if (defined(__WATCOMC__) && (__WATCOMC__ >= 1100) && !defined(HAVE_INT64))
  425.    typedef __int64              LLONG64;
  426.    typedef unsigned __int64     ULLNG64;
  427. #  define HAVE_INT64
  428. #endif
  429. #if (defined(_MSC_VER) && (_MSC_VER >= 1100) && !defined(HAVE_INT64))
  430.    typedef __int64              LLONG64;
  431.    typedef unsigned __int64     ULLNG64;
  432. #  define HAVE_INT64
  433. #endif
  434. /*****************************/
  435. /* Function utime2FileTime() */     /* convert Unix time_t format into the */
  436. /*****************************/     /* form used by SetFileTime() in NT/95 */
  437. #define UNIX_TIME_ZERO_HI  0x019DB1DEUL
  438. #define UNIX_TIME_ZERO_LO  0xD53E8000UL
  439. #define NT_QUANTA_PER_UNIX 10000000L
  440. static void utime2FileTime(time_t ut, FILETIME *pft)
  441. {
  442. #ifdef HAVE_INT64
  443.     ULLNG64 NTtime;
  444.     /* NT_QUANTA_PER_UNIX is small enough so that "ut * NT_QUANTA_PER_UNIX"
  445.      * cannot overflow in 64-bit signed calculation, regardless wether "ut"
  446.      * is signed or unsigned.  */
  447.     NTtime = ((LLONG64)ut * NT_QUANTA_PER_UNIX) +
  448.              ((ULLNG64)UNIX_TIME_ZERO_LO + ((ULLNG64)UNIX_TIME_ZERO_HI << 32));
  449.     pft->dwLowDateTime = (DWORD)NTtime;
  450.     pft->dwHighDateTime = (DWORD)(NTtime >> 32);
  451. #else /* !HAVE_INT64 (64-bit integer arithmetics may not be supported) */
  452.     unsigned int b1, b2, carry = 0;
  453.     unsigned long r0, r1, r2, r3;
  454.     long r4;            /* signed, to catch environments with signed time_t */
  455.     b1 = ut & 0xFFFF;
  456.     b2 = (ut >> 16) & 0xFFFF;       /* if ut is over 32 bits, too bad */
  457.     r1 = b1 * (NT_QUANTA_PER_UNIX & 0xFFFF);
  458.     r2 = b1 * (NT_QUANTA_PER_UNIX >> 16);
  459.     r3 = b2 * (NT_QUANTA_PER_UNIX & 0xFFFF);
  460.     r4 = b2 * (NT_QUANTA_PER_UNIX >> 16);
  461.     r0 = (r1 + (r2 << 16)) & 0xFFFFFFFFL;
  462.     if (r0 < r1)
  463.         carry++;
  464.     r1 = r0;
  465.     r0 = (r0 + (r3 << 16)) & 0xFFFFFFFFL;
  466.     if (r0 < r1)
  467.         carry++;
  468.     pft->dwLowDateTime = r0 + UNIX_TIME_ZERO_LO;
  469.     if (pft->dwLowDateTime < r0)
  470.         carry++;
  471.     pft->dwHighDateTime = r4 + (r2 >> 16) + (r3 >> 16)
  472.                             + UNIX_TIME_ZERO_HI + carry;
  473. #endif /* ?HAVE_INT64 */
  474. } /* end function utime2FileTime() */
  475. /******************************/
  476. /* Function FStampIsLocTime() */
  477. /******************************/
  478. static int FStampIsLocTime(__GPRO__ const char *path)
  479. {
  480.     return (NTQueryVolInfo(__G__ path) ? G.lastVolLocTim : FALSE);
  481. }
  482. #endif /* USE_EF_UT_TIME || NT_TZBUG_WORKAROUND || TIMESTAMP */
  483. #ifndef NT_TZBUG_WORKAROUND
  484. #  define UTIME_BOUNDCHECK_1(utimval) 
  485.      if (fs_uses_loctime) { 
  486.          utime_dosmin = dos_to_unix_time(DOSTIME_MINIMUM); 
  487.          if ((ulg)utimval < (ulg)utime_dosmin) 
  488.              utimval = utime_dosmin; 
  489.      }
  490. #  define UTIME_BOUNDCHECK_N(utimval) 
  491.      if (fs_uses_loctime && ((ulg)utimval < (ulg)utime_dosmin)) 
  492.          utimval = utime_dosmin;
  493. #  define NT_TZBUG_PRECOMPENSATE(ut, pft)
  494. #else /* NT_TZBUG_WORKAROUND */
  495. #  define UNIX_TIME_UMAX_HI  0x0236485EUL
  496. #  define UNIX_TIME_UMAX_LO  0xD4A5E980UL
  497. #  define UNIX_TIME_SMIN_HI  0x0151669EUL
  498. #  define UNIX_TIME_SMIN_LO  0xD53E8000UL
  499. #  define UNIX_TIME_SMAX_HI  0x01E9FD1EUL
  500. #  define UNIX_TIME_SMAX_LO  0xD4A5E980UL
  501. #  define UTIME_1980_JAN_01_00_00   315532800L
  502. #  define UTIME_BOUNDCHECK_1(utimval)
  503. #  define UTIME_BOUNDCHECK_N(utimval)
  504. #  define NT_TZBUG_PRECOMPENSATE(ut, pft) 
  505.      if (fs_uses_loctime) NTtzbugWorkaround(ut, pft);
  506.    /* nonzero if `y' is a leap year, else zero */
  507. #  define leap(y) (((y)%4 == 0 && (y)%100 != 0) || (y)%400 == 0)
  508.    /* number of leap years from 1970 to `y' (not including `y' itself) */
  509. #  define nleap(y) (((y)-1969)/4 - ((y)-1901)/100 + ((y)-1601)/400)
  510. extern ZCONST ush ydays[];              /* defined in fileio.c */
  511. /*****************************/
  512. /* Function FileTime2utime() */
  513. /*****************************/
  514. static int FileTime2utime(const FILETIME *pft, time_t *ut)
  515. {
  516. #ifdef HAVE_INT64
  517.     ULLNG64 NTtime;
  518.     NTtime = ((ULLNG64)pft->dwLowDateTime +
  519.               ((ULLNG64)pft->dwHighDateTime << 32));
  520.     /* underflow and overflow handling */
  521. #ifdef CHECK_UTIME_SIGNED_UNSIGNED
  522.     if ((time_t)0x80000000L < (time_t)0L)
  523.     {
  524.         if (NTtime < ((ULLNG64)UNIX_TIME_SMIN_LO +
  525.                       ((ULLNG64)UNIX_TIME_SMIN_HI << 32))) {
  526.             *ut = (time_t)LONG_MIN;
  527.             return FALSE;
  528.         }
  529.         if (NTtime > ((ULLNG64)UNIX_TIME_SMAX_LO +
  530.                       ((ULLNG64)UNIX_TIME_SMAX_HI << 32))) {
  531.             *ut = (time_t)LONG_MAX;
  532.             return FALSE;
  533.         }
  534.     }
  535.     else
  536. #endif /* CHECK_UTIME_SIGNED_UNSIGNED */
  537.     {
  538.         if (NTtime < ((ULLNG64)UNIX_TIME_ZERO_LO +
  539.                       ((ULLNG64)UNIX_TIME_ZERO_HI << 32))) {
  540.             *ut = (time_t)0;
  541.             return FALSE;
  542.         }
  543.         if (NTtime > ((ULLNG64)UNIX_TIME_UMAX_LO +
  544.                       ((ULLNG64)UNIX_TIME_UMAX_HI << 32))) {
  545.             *ut = (time_t)ULONG_MAX;
  546.             return FALSE;
  547.         }
  548.     }
  549.     NTtime -= ((ULLNG64)UNIX_TIME_ZERO_LO +
  550.                ((ULLNG64)UNIX_TIME_ZERO_HI << 32));
  551.     *ut = (time_t)(NTtime / (unsigned long)NT_QUANTA_PER_UNIX);
  552.     return TRUE;
  553. #else /* !HAVE_INT64 (64-bit integer arithmetics may not be supported) */
  554.     time_t days;
  555.     SYSTEMTIME w32tm;
  556.     /* underflow and overflow handling */
  557. #ifdef CHECK_UTIME_SIGNED_UNSIGNED
  558.     if ((time_t)0x80000000L < (time_t)0L)
  559.     {
  560.         if ((pft->dwHighDateTime < UNIX_TIME_SMIN_HI) ||
  561.             ((pft->dwHighDateTime == UNIX_TIME_SMIN_HI) &&
  562.              (pft->dwLowDateTime < UNIX_TIME_SMIN_LO))) {
  563.             *ut = (time_t)LONG_MIN;
  564.             return FALSE;
  565.         if ((pft->dwHighDateTime > UNIX_TIME_SMAX_HI) ||
  566.             ((pft->dwHighDateTime == UNIX_TIME_SMAX_HI) &&
  567.              (pft->dwLowDateTime > UNIX_TIME_SMAX_LO))) {
  568.             *ut = (time_t)LONG_MAX;
  569.             return FALSE;
  570.         }
  571.     }
  572.     else
  573. #endif /* CHECK_UTIME_SIGNED_UNSIGNED */
  574.     {
  575.         if ((pft->dwHighDateTime < UNIX_TIME_ZERO_HI) ||
  576.             ((pft->dwHighDateTime == UNIX_TIME_ZERO_HI) &&
  577.              (pft->dwLowDateTime < UNIX_TIME_ZERO_LO))) {
  578.             *ut = (time_t)0;
  579.             return FALSE;
  580.         }
  581.         if ((pft->dwHighDateTime > UNIX_TIME_UMAX_HI) ||
  582.             ((pft->dwHighDateTime == UNIX_TIME_UMAX_HI) &&
  583.              (pft->dwLowDateTime > UNIX_TIME_UMAX_LO))) {
  584.             *ut = (time_t)ULONG_MAX;
  585.             return FALSE;
  586.         }
  587.     }
  588.     FileTimeToSystemTime(pft, &w32tm);
  589.     /* set `days' to the number of days into the year */
  590.     days = w32tm.wDay - 1 + ydays[w32tm.wMonth-1] +
  591.            (w32tm.wMonth > 2 && leap (w32tm.wYear));
  592.     /* now set `days' to the number of days since 1 Jan 1970 */
  593.     days += 365 * (time_t)(w32tm.wYear - 1970) +
  594.             (time_t)(nleap(w32tm.wYear));
  595.     *ut = (time_t)(86400L * days + 3600L * (time_t)w32tm.wHour +
  596.                    (time_t)(60 * w32tm.wMinute + w32tm.wSecond));
  597.     return TRUE;
  598. #endif /* ?HAVE_INT64 */
  599. } /* end function FileTime2utime() */
  600. #ifdef W32_STAT_BANDAID
  601. /*********************************/
  602. /* Function VFatFileTime2utime() */
  603. /*********************************/
  604. static int VFatFileTime2utime(const FILETIME *pft, time_t *ut)
  605. {
  606.     FILETIME lft;
  607. #ifndef HAVE_MKTIME
  608.     WORD wDOSDate, wDOSTime;
  609. #else
  610.     SYSTEMTIME w32tm;
  611.     struct tm ltm;
  612. #endif
  613.     FileTimeToLocalFileTime(pft, &lft);
  614.     FTTrace((stdout, "VFatFT2utime, feed for mktime()", 1, &lft));
  615. #ifndef HAVE_MKTIME
  616.     /* This version of the FILETIME-to-UNIXTIME conversion function
  617.      * uses DOS-DATE-TIME format as intermediate stage. For modification
  618.      * and access times, this is no problem. But, the extra fine resolution
  619.      * of the VFAT-stored creation time gets lost.
  620.      */
  621.     FileTimeToDosDateTime(&lft, &wDOSDate, &wDOSTime);
  622.     TTrace((stdout,"DosDateTime is %04u-%02u-%02u %02u:%02u:%02un",
  623.       (unsigned)((wDOSDate>>9)&0x7f)+1980,(unsigned)((wDOSDate>>5)&0x0f),
  624.       (unsigned)(wDOSDate&0x1f),(unsigned)((wDOSTime>>11)&0x1f),
  625.       (unsigned)((wDOSTime>>5)&0x3f),(unsigned)((wDOSTime<<1)&0x3e)));
  626.     *ut = dos_to_unix_time(((ulg)wDOSDate << 16) | (ulg)wDOSTime);
  627.     /* a cheap error check: dos_to_unix_time() only returns an odd time
  628.      * when clipping at maximum time_t value. DOS_DATE_TIME values have
  629.      * a resolution of 2 seconds and are therefore even numbers.
  630.      */
  631.     return (((*ut)&1) == (time_t)0);
  632. #else /* HAVE_MKTIME */
  633.     FileTimeToSystemTime(&lft, &w32tm);
  634.     /* underflow and overflow handling */
  635.     /* TODO: The range checks are not accurate, the actual limits may
  636.      *       be off by one daylight-saving-time shift (typically 1 hour),
  637.      *       depending on the current state of "is_dst".
  638.      */
  639. #ifdef CHECK_UTIME_SIGNED_UNSIGNED
  640.     if ((time_t)0x80000000L < (time_t)0L)
  641.     {
  642.         if ((pft->dwHighDateTime < UNIX_TIME_SMIN_HI) ||
  643.             ((pft->dwHighDateTime == UNIX_TIME_SMIN_HI) &&
  644.              (pft->dwLowDateTime < UNIX_TIME_SMIN_LO))) {
  645.             *ut = (time_t)LONG_MIN;
  646.             return FALSE;
  647.         if ((pft->dwHighDateTime > UNIX_TIME_SMAX_HI) ||
  648.             ((pft->dwHighDateTime == UNIX_TIME_SMAX_HI) &&
  649.              (pft->dwLowDateTime > UNIX_TIME_SMAX_LO))) {
  650.             *ut = (time_t)LONG_MAX;
  651.             return FALSE;
  652.         }
  653.     }
  654.     else
  655. #endif /* CHECK_UTIME_SIGNED_UNSIGNED */
  656.     {
  657.         if ((pft->dwHighDateTime < UNIX_TIME_ZERO_HI) ||
  658.             ((pft->dwHighDateTime == UNIX_TIME_ZERO_HI) &&
  659.              (pft->dwLowDateTime < UNIX_TIME_ZERO_LO))) {
  660.             *ut = (time_t)0;
  661.             return FALSE;
  662.         }
  663.         if ((pft->dwHighDateTime > UNIX_TIME_UMAX_HI) ||
  664.             ((pft->dwHighDateTime == UNIX_TIME_UMAX_HI) &&
  665.              (pft->dwLowDateTime > UNIX_TIME_UMAX_LO))) {
  666.             *ut = (time_t)ULONG_MAX;
  667.             return FALSE;
  668.         }
  669.     }
  670.     ltm.tm_year = w32tm.wYear - 1900;
  671.     ltm.tm_mon = w32tm.wMonth - 1;
  672.     ltm.tm_mday = w32tm.wDay;
  673.     ltm.tm_hour = w32tm.wHour;
  674.     ltm.tm_min = w32tm.wMinute;
  675.     ltm.tm_sec = w32tm.wSecond;
  676.     ltm.tm_isdst = -1;  /* let mktime determine if DST is in effect */
  677.     *ut = mktime(&ltm);
  678.     /* a cheap error check: mktime returns "(time_t)-1L" on conversion errors.
  679.      * Normally, we would have to apply a consistency check because "-1"
  680.      * could also be a valid time. But, it is quite unlikely to read back odd
  681.      * time numbers from file systems that store time stamps in DOS format.
  682.      * (The only known exception is creation time on VFAT partitions.)
  683.      */
  684.     return (*ut != (time_t)-1L);
  685. #endif /* ?HAVE_MKTIME */
  686. } /* end function VFatFileTime2utime() */
  687. #endif /* W32_STAT_BANDAID */
  688. /********************************/
  689. /* Function UTCtime2Localtime() */      /* borrowed from Zip's mkgmtime() */
  690. /********************************/
  691. static time_t UTCtime2Localtime(time_t utctime)
  692. {
  693.     time_t utc = utctime;
  694.     struct tm *tm;
  695.     unsigned years, months, days, hours, minutes, seconds;
  696. #ifdef __BORLANDC__   /* Borland C++ 5.x crashes when trying to reference tm */
  697.     if (utc < UTIME_1980_JAN_01_00_00)
  698.         utc = UTIME_1980_JAN_01_00_00;
  699. #endif
  700.     tm = localtime(&utc);
  701.     if (tm == (struct tm *)NULL)
  702.         /* localtime() did not accept given utc time value; as an emergency
  703.            exit, the unconverted utctime value is returned */
  704.         return utctime;
  705.     years = tm->tm_year + 1900; /* year - 1900 -> year */
  706.     months = tm->tm_mon;        /* 0..11 */
  707.     days = tm->tm_mday - 1;     /* 1..31 -> 0..30 */
  708.     hours = tm->tm_hour;        /* 0..23 */
  709.     minutes = tm->tm_min;       /* 0..59 */
  710.     seconds = tm->tm_sec;       /* 0..61 in ANSI C */
  711.     /* set `days' to the number of days into the year */
  712.     days += ydays[months] + (months > 1 && leap(years));
  713.     /* now set `days' to the number of days since 1 Jan 1970 */
  714.     days += 365 * (years - 1970) + nleap(years);
  715.     return (time_t)(86400L * (ulg)days + 3600L * (ulg)hours +
  716.                     (ulg)(60 * minutes + seconds));
  717. } /* end function UTCtime2Localtime() */
  718. /********************************/
  719. /* Function NTtzbugWorkaround() */
  720. /********************************/
  721. static void NTtzbugWorkaround(time_t ut, FILETIME *pft)
  722. {
  723.     FILETIME C_RTL_locft, NTAPI_locft;
  724.     time_t ux_loctime = UTCtime2Localtime(ut);
  725.     /* This routine is only used when the target file system stores time-
  726.      * stamps as local time in MSDOS format.  Thus we make sure that the
  727.      * resulting timestamp is within the range of MSDOS date-time values. */
  728.     if (ux_loctime < UTIME_1980_JAN_01_00_00)
  729.         ux_loctime = UTIME_1980_JAN_01_00_00;
  730.     utime2FileTime(ux_loctime, &C_RTL_locft);
  731.     if (!FileTimeToLocalFileTime(pft, &NTAPI_locft))
  732.         return;
  733.     else {
  734.         long time_shift_l, time_shift_h;
  735.         int carry = 0;
  736.         time_shift_l = C_RTL_locft.dwLowDateTime - NTAPI_locft.dwLowDateTime;
  737.         if (C_RTL_locft.dwLowDateTime < NTAPI_locft.dwLowDateTime)
  738.             carry--;
  739.         time_shift_h = C_RTL_locft.dwHighDateTime - NTAPI_locft.dwHighDateTime;
  740.         pft->dwLowDateTime += time_shift_l;
  741.         if (pft->dwLowDateTime < (ulg)time_shift_l)
  742.             carry++;
  743.         pft->dwHighDateTime += time_shift_h + carry;
  744.         TTrace((stdout, "FileTime shift: %08lx:%08lxn",
  745.                 time_shift_h+carry,time_shift_l));
  746.     }
  747. } /* end function NTtzbugWorkaround() */
  748. #endif /* ?NT_TZBUG_WORKAROUND */
  749. /****************************/      /* Get the file time in a format that */
  750. /* Function getNTfiletime() */      /*  can be used by SetFileTime() in NT */
  751. /****************************/
  752. static int getNTfiletime(__G__ pModFT, pAccFT, pCreFT)
  753.     __GDEF
  754.     FILETIME *pModFT;
  755.     FILETIME *pAccFT;
  756.     FILETIME *pCreFT;
  757. {
  758. #ifdef NT_TZBUG_WORKAROUND
  759.     time_t ux_modtime;
  760. #else /* !NT_TZBUG_WORKAROUND */
  761.     FILETIME locft;    /* 64-bit value made up of two 32-bit [low & high] */
  762.     WORD wDOSDate;     /* for converting from DOS date to Windows NT */
  763.     WORD wDOSTime;
  764. #endif /* ?NT_TZBUG_WORKAROUND */
  765. #ifdef USE_EF_UT_TIME
  766.     unsigned eb_izux_flg;
  767.     iztimes z_utime;   /* struct for Unix-style actime & modtime, + creatime */
  768. #endif
  769. #if (defined(USE_EF_UT_TIME) && !defined(NT_TZBUG_WORKAROUND))
  770.     time_t utime_dosmin;
  771. # endif
  772. #if (defined(USE_EF_UT_TIME) || defined(NT_TZBUG_WORKAROUND))
  773.     int fs_uses_loctime = FStampIsLocTime(__G__ G.filename);
  774. #endif
  775.     /* Copy and/or convert time and date variables, if necessary;
  776.      * return a flag indicating which time stamps are available. */
  777. #ifdef USE_EF_UT_TIME
  778.     if (G.extra_field &&
  779. #ifdef IZ_CHECK_TZ
  780.         G.tz_is_valid &&
  781. #endif
  782.         ((eb_izux_flg = ef_scan_for_izux(G.extra_field,
  783.           G.lrec.extra_field_length, 0, G.lrec.last_mod_dos_datetime,
  784.           &z_utime, NULL)) & EB_UT_FL_MTIME))
  785.     {
  786.         TTrace((stderr, "getNTfiletime:  Unix e.f. modif. time = %lun",
  787.           z_utime.mtime));
  788.         UTIME_BOUNDCHECK_1(z_utime.mtime)
  789.         utime2FileTime(z_utime.mtime, pModFT);
  790.         NT_TZBUG_PRECOMPENSATE(z_utime.mtime, pModFT)
  791.         if (eb_izux_flg & EB_UT_FL_ATIME) {
  792.             UTIME_BOUNDCHECK_N(z_utime.atime)
  793.             utime2FileTime(z_utime.atime, pAccFT);
  794.             NT_TZBUG_PRECOMPENSATE(z_utime.atime, pAccFT)
  795.         }
  796.         if (eb_izux_flg & EB_UT_FL_CTIME) {
  797.             UTIME_BOUNDCHECK_N(z_utime.ctime)
  798.             utime2FileTime(z_utime.ctime, pCreFT);
  799.             NT_TZBUG_PRECOMPENSATE(z_utime.ctime, pCreFT)
  800.         }
  801.         return (int)eb_izux_flg;
  802.     }
  803. #endif /* USE_EF_UT_TIME */
  804. #ifdef NT_TZBUG_WORKAROUND
  805.     ux_modtime = dos_to_unix_time(G.lrec.last_mod_dos_datetime);
  806.     utime2FileTime(ux_modtime, pModFT);
  807.     NT_TZBUG_PRECOMPENSATE(ux_modtime, pModFT)
  808. #else /* !NT_TZBUG_WORKAROUND */
  809.     wDOSTime = (WORD)(G.lrec.last_mod_dos_datetime);
  810.     wDOSDate = (WORD)(G.lrec.last_mod_dos_datetime >> 16);
  811.     /* The DosDateTimeToFileTime() function converts a DOS date/time
  812.      * into a 64-bit Windows NT file time */
  813.     if (!DosDateTimeToFileTime(wDOSDate, wDOSTime, &locft))
  814.     {
  815.         Info(slide, 0, ((char *)slide, "DosDateTime failed: %dn",
  816.           (int)GetLastError()));
  817.         return 0;
  818.     }
  819.     if (!LocalFileTimeToFileTime(&locft, pModFT))
  820.     {
  821.         Info(slide, 0, ((char *)slide, "LocalFileTime failed: %dn",
  822.           (int)GetLastError()));
  823.         *pModFT = locft;
  824.     }
  825. #endif /* ?NT_TZBUG_WORKAROUND */
  826.     *pAccFT = *pModFT;
  827.     return (EB_UT_FL_MTIME | EB_UT_FL_ATIME);
  828. } /* end function getNTfiletime() */
  829. /****************************/
  830. /* Function close_outfile() */
  831. /****************************/
  832. void close_outfile(__G)
  833.     __GDEF
  834. {
  835.     FILETIME Modft;    /* File time type defined in NT, `last modified' time */
  836.     FILETIME Accft;    /* NT file time type, `last access' time */
  837.     FILETIME Creft;    /* NT file time type, `file creation' time */
  838.     HANDLE hFile;      /* File handle defined in NT    */
  839.     int gotTime;
  840. #ifdef __RSXNT__        /* RSXNT/EMX C rtl uses OEM charset */
  841.     char *ansi_name = (char *)alloca(strlen(G.filename) + 1);
  842.     INTERN_TO_ISO(G.filename, ansi_name);
  843. #   define Ansi_Fname  ansi_name
  844. #else
  845. #   define Ansi_Fname  G.filename
  846. #endif
  847.     /* Close the file and then re-open it using the Win32
  848.      * CreateFile call, so that the file can be created
  849.      * with GENERIC_WRITE access, otherwise the SetFileTime
  850.      * call will fail. */
  851.     fclose(G.outfile);
  852.     /* don't set the time stamp and attributes on standard output */
  853.     if (uO.cflag)
  854.         return;
  855.     gotTime = getNTfiletime(__G__ &Modft, &Accft, &Creft);
  856.     /* open a handle to the file before processing extra fields;
  857.        we do this in case new security on file prevents us from updating
  858.        time stamps */
  859.     hFile = CreateFile(Ansi_Fname, GENERIC_WRITE, FILE_SHARE_WRITE, NULL,
  860.          OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
  861.     /* sfield@microsoft.com: set attributes before time in case we decide to
  862.        support other filetime members later.  This also allows us to apply
  863.        attributes before the security is changed, which may prevent this
  864.        from succeeding otherwise.  Also, since most files don't have
  865.        any interesting attributes, only change them if something other than
  866.        FILE_ATTRIBUTE_ARCHIVE appears in the attributes.  This works well
  867.        as an optimization because FILE_ATTRIBUTE_ARCHIVE gets applied to the
  868.        file anyway, when it's created new. */
  869.     if((G.pInfo->file_attr & 0x7F) & ~FILE_ATTRIBUTE_ARCHIVE) {
  870.         if (!SetFileAttributes(Ansi_Fname, G.pInfo->file_attr & 0x7F))
  871.             Info(slide, 1, ((char *)slide,
  872.               "nwarning (%d): could not set file attributesn",
  873.               (int)GetLastError()));
  874.     }
  875. #ifdef NTSD_EAS
  876.     /* set extra fields, both stored-in-zipfile and .LONGNAME flavors */
  877.     if (G.extra_field) {    /* zipfile extra field may have extended attribs */
  878.         int err = EvalExtraFields(__G__ G.filename, G.extra_field,
  879.                                   G.lrec.extra_field_length);
  880.         if (err == IZ_EF_TRUNC) {
  881.             if (uO.qflag)
  882.                 Info(slide, 1, ((char *)slide, "%-22s ",
  883.                   FnFilter1(G.filename)));
  884.             Info(slide, 1, ((char *)slide, LoadFarString(TruncNTSD),
  885.               makeword(G.extra_field+2)-10, uO.qflag? "n":""));
  886.         }
  887.     }
  888. #endif /* NTSD_EAS */
  889.     if ( hFile == INVALID_HANDLE_VALUE )
  890.         Info(slide, 1, ((char *)slide,
  891.           "nCreateFile error %d when trying set file timen",
  892.           (int)GetLastError()));
  893.     else {
  894.         if (gotTime) {
  895.             FILETIME *pModft = (gotTime & EB_UT_FL_MTIME) ? &Modft : NULL;
  896.             FILETIME *pAccft = (gotTime & EB_UT_FL_ATIME) ? &Accft : NULL;
  897.             FILETIME *pCreft = (gotTime & EB_UT_FL_CTIME) ? &Creft : NULL;
  898.             if (!SetFileTime(hFile, pCreft, pAccft, pModft))
  899.                 Info(slide, 0, ((char *)slide, "nSetFileTime failed: %dn",
  900.                   (int)GetLastError()));
  901.         }
  902.         CloseHandle(hFile);
  903.     }
  904.     return;
  905. #undef Ansi_Fname
  906. } /* end function close_outfile() */
  907. #ifdef TIMESTAMP
  908. /*************************/
  909. /* Function stamp_file() */
  910. /*************************/
  911. int stamp_file(__GPRO__ ZCONST char *fname, time_t modtime)
  912. {
  913.     FILETIME Modft;    /* File time type defined in NT, `last modified' time */
  914.     HANDLE hFile;      /* File handle defined in NT    */
  915.     int errstat = 0;   /* return status: 0 == "OK", -1 == "Failure" */
  916. #ifndef NT_TZBUG_WORKAROUND
  917.     time_t utime_dosmin;        /* internal variable for UTIME_BOUNDCHECK_1 */
  918. #endif
  919.     int fs_uses_loctime = FStampIsLocTime(__G__ fname);
  920. #ifdef __RSXNT__        /* RSXNT/EMX C rtl uses OEM charset */
  921.     char *ansi_name = (char *)alloca(strlen(fname) + 1);
  922.     INTERN_TO_ISO(fname, ansi_name);
  923. #   define Ansi_Fname  ansi_name
  924. #else
  925. #   define Ansi_Fname  fname
  926. #endif
  927.     /* open a handle to the file to prepare setting the mod-time stamp */
  928.     hFile = CreateFile(Ansi_Fname, GENERIC_WRITE, FILE_SHARE_WRITE, NULL,
  929.          OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
  930.     if ( hFile == INVALID_HANDLE_VALUE ) {
  931.         errstat = -1;
  932.     } else {
  933.         /* convert time_t modtime into WIN32 native 64bit format */
  934.         UTIME_BOUNDCHECK_1(modtime)
  935.         utime2FileTime(modtime, &Modft);
  936.         NT_TZBUG_PRECOMPENSATE(modtime, &Modft)
  937.         /* set Access and Modification times of the file to modtime */
  938.         if (!SetFileTime(hFile, NULL, &Modft, &Modft)) {
  939.             errstat = -1;
  940.         }
  941.         CloseHandle(hFile);
  942.     }
  943.     return errstat;
  944. #undef Ansi_Fname
  945. } /* end function stamp_file() */
  946. #endif /* TIMESTAMP */
  947. /***********************/
  948. /* Function isfloppy() */   /* more precisely, is it removable? */
  949. /***********************/
  950. static int isfloppy(int nDrive)   /* 1 == A:, 2 == B:, etc. */
  951. {
  952.     char rootPathName[4];
  953.     rootPathName[0] = (char)('A' + nDrive - 1);   /* build the root path */
  954.     rootPathName[1] = ':';                        /*  name, e.g. "A:/" */
  955.     rootPathName[2] = '/';
  956.     rootPathName[3] = '';
  957.     return (GetDriveType(rootPathName) == DRIVE_REMOVABLE);
  958. } /* end function isfloppy() */
  959. /*****************************/
  960. /* Function NTQueryVolInfo() */
  961. /*****************************/
  962. /*
  963.  * Note:  8.3 limits on filenames apply only to old-style FAT filesystems.
  964.  *        More recent versions of Windows (Windows NT 3.5 / Windows 4.0)
  965.  *        can support long filenames (LFN) on FAT filesystems.  Check the
  966.  *        filesystem maximum component length field to detect LFN support.
  967.  */
  968. static int NTQueryVolInfo(__GPRO__ const char *name)
  969. {
  970.  /* static char lastRootPath[4] = ""; */
  971.  /* static int lastVolOldFAT; */
  972.  /* static int lastVolLocTim; */
  973.     char     *tmp0;
  974.     char      tmp1[MAX_PATH], tmp2[MAX_PATH];
  975.     unsigned  volSerNo, maxCompLen, fileSysFlags;
  976. #ifdef __RSXNT__        /* RSXNT/EMX C rtl uses OEM charset */
  977.     char *ansi_name = (char *)alloca(strlen(name) + 1);
  978.     INTERN_TO_ISO(name, ansi_name);
  979.     name = ansi_name;
  980. #endif
  981.     if ((!strncmp(name, "//", 2) || !strncmp(name,"\\", 2)) &&
  982.         (name[2] != '' && name[2] != '/' && name[2] != '\')) {
  983.         /* GetFullPathname() and GetVolumeInformation() do not work
  984.          * on UNC names. For now, we return "error".
  985.          * **FIXME**: check if UNC name is mapped to a drive letter
  986.          *            and use mapped drive for volume info query.
  987.          */
  988.         return FALSE;
  989.     }
  990.     if (isalpha((uch)name[0]) && (name[1] == ':'))
  991.         tmp0 = (char *)name;
  992.     else
  993.     {
  994.         if (!GetFullPathName(name, MAX_PATH, tmp1, &tmp0))
  995.             return FALSE;
  996.         tmp0 = &tmp1[0];
  997.     }
  998.     if (strncmp(G.lastRootPath, tmp0, 2) != 0) {
  999.         /* For speed, we skip repeated queries for the same device */
  1000.         strncpy(G.lastRootPath, tmp0, 2);   /* Build the root path name, */
  1001.         G.lastRootPath[2] = '/';            /* e.g. "A:/"                */
  1002.         G.lastRootPath[3] = '';
  1003.         if (!GetVolumeInformation((LPCTSTR)G.lastRootPath,
  1004.               (LPTSTR)tmp1, (DWORD)MAX_PATH,
  1005.               (LPDWORD)&volSerNo, (LPDWORD)&maxCompLen,
  1006.               (LPDWORD)&fileSysFlags, (LPTSTR)tmp2, (DWORD)MAX_PATH)) {
  1007.             G.lastRootPath[0] = '';
  1008.             return FALSE;
  1009.         }
  1010.         /*  LFNs are available if the component length is > 12 */
  1011.         G.lastVolOldFAT = (maxCompLen <= 12);
  1012. /*      G.lastVolOldFAT = !strncmp(strupr(tmp2), "FAT", 3);   old version */
  1013.         /* Volumes in (V)FAT and (OS/2) HPFS format store file timestamps in
  1014.          * local time!
  1015.          */
  1016.         G.lastVolLocTim = !strncmp(strupr(tmp2), "VFAT", 4) ||
  1017.                           !strncmp(tmp2, "HPFS", 4) ||
  1018.                           !strncmp(tmp2, "FAT", 3);
  1019.     }
  1020.     return TRUE;
  1021. } /* end function NTQueryVolInfo() */
  1022. /*****************************/
  1023. /* Function IsVolumeOldFAT() */
  1024. /*****************************/
  1025. static int IsVolumeOldFAT(__GPRO__ const char *name)
  1026. {
  1027.     return (NTQueryVolInfo(__G__ name) ? G.lastVolOldFAT : FALSE);
  1028. }
  1029. #ifndef SFX
  1030. /************************/
  1031. /*  Function do_wild()  */   /* identical to OS/2 version */
  1032. /************************/
  1033. char *do_wild(__G__ wildspec)
  1034.     __GDEF
  1035.     char *wildspec;         /* only used first time on a given dir */
  1036. {
  1037.  /* static zDIR *wild_dir = NULL;                               */
  1038.  /* static char *dirname, *wildname, matchname[FILNAMSIZ]; */
  1039.  /* static int firstcall=TRUE, have_dirname, dirnamelen;   */
  1040.     char *fnamestart;
  1041.     struct zdirent *file;
  1042.     /* Even when we're just returning wildspec, we *always* do so in
  1043.      * matchname[]--calling routine is allowed to append four characters
  1044.      * to the returned string, and wildspec may be a pointer to argv[].
  1045.      */
  1046.     if (!G.notfirstcall) {  /* first call:  must initialize everything */
  1047.         G.notfirstcall = TRUE;
  1048.         if (!iswild(wildspec)) {
  1049.             strcpy(G.matchname, wildspec);
  1050.             G.have_dirname = FALSE;
  1051.             G.wild_dir = NULL;
  1052.             return G.matchname;
  1053.         }
  1054.         /* break the wildspec into a directory part and a wildcard filename */
  1055.         if ((G.wildname = strrchr(wildspec, '/')) == NULL &&
  1056.             (G.wildname = strrchr(wildspec, ':')) == NULL) {
  1057.             G.dirname = ".";
  1058.             G.dirnamelen = 1;
  1059.             G.have_dirname = FALSE;
  1060.             G.wildname = wildspec;
  1061.         } else {
  1062.             ++G.wildname;     /* point at character after '/' or ':' */
  1063.             G.dirnamelen = G.wildname - wildspec;
  1064.             if ((G.dirname = (char *)malloc(G.dirnamelen+1)) == NULL) {
  1065.                 Info(slide, 1, ((char *)slide,
  1066.                   "warning:  cannot allocate wildcard buffersn"));
  1067.                 strcpy(G.matchname, wildspec);
  1068.                 return G.matchname; /* but maybe filespec was not a wildcard */
  1069.             }
  1070.             strncpy(G.dirname, wildspec, G.dirnamelen);
  1071.             G.dirname[G.dirnamelen] = '';    /* terminate for strcpy below */
  1072.             G.have_dirname = TRUE;
  1073.         }
  1074.         Trace((stderr, "do_wild:  dirname = [%s]n", G.dirname));
  1075.         if ((G.wild_dir = (zvoid *)Opendir(G.dirname)) != NULL) {
  1076.             if (G.have_dirname) {
  1077.                 strcpy(G.matchname, G.dirname);
  1078.                 fnamestart = G.matchname + G.dirnamelen;
  1079.             } else
  1080.                 fnamestart = G.matchname;
  1081.             while ((file = Readdir((zDIR *)G.wild_dir)) != NULL) {
  1082.                 Trace((stderr, "do_wild:  Readdir returns %sn", file->d_name));
  1083.                 strcpy(fnamestart, file->d_name);
  1084.                 if (strrchr(fnamestart, '.') == (char *)NULL)
  1085.                     strcat(fnamestart, ".");
  1086.                 if (match(fnamestart, G.wildname, 1) &&  /* 1 == ignore case */
  1087.                     /* skip "." and ".." directory entries */
  1088.                     strcmp(fnamestart, ".") && strcmp(fnamestart, "..")) {
  1089.                     Trace((stderr, "do_wild:  match() succeedsn"));
  1090.                     /* remove trailing dot */
  1091.                     fnamestart += strlen(fnamestart) - 1;
  1092.                     if (*fnamestart == '.')
  1093.                         *fnamestart = '';
  1094.                     return G.matchname;
  1095.                 }
  1096.             }
  1097.             /* if we get to here directory is exhausted, so close it */
  1098.             Closedir((zDIR *)G.wild_dir);
  1099.             G.wild_dir = NULL;
  1100.         }
  1101.         Trace((stderr, "do_wild:  Opendir(%s) returns NULLn", G.dirname));
  1102.         /* return the raw wildspec in case that works (e.g., directory not
  1103.          * searchable, but filespec was not wild and file is readable) */
  1104.         strcpy(G.matchname, wildspec);
  1105.         return G.matchname;
  1106.     }
  1107.     /* last time through, might have failed opendir but returned raw wildspec */
  1108.     if (G.wild_dir == NULL) {
  1109.         G.notfirstcall = FALSE;    /* reset for new wildspec */
  1110.         if (G.have_dirname)
  1111.             free(G.dirname);
  1112.         return (char *)NULL;
  1113.     }
  1114.     /* If we've gotten this far, we've read and matched at least one entry
  1115.      * successfully (in a previous call), so dirname has been copied into
  1116.      * matchname already.
  1117.      */
  1118.     if (G.have_dirname) {
  1119.         /* strcpy(G.matchname, G.dirname); */
  1120.         fnamestart = G.matchname + G.dirnamelen;
  1121.     } else
  1122.         fnamestart = G.matchname;
  1123.     while ((file = Readdir((zDIR *)G.wild_dir)) != NULL) {
  1124.         Trace((stderr, "do_wild:  readdir returns %sn", file->d_name));
  1125.         strcpy(fnamestart, file->d_name);
  1126.         if (strrchr(fnamestart, '.') == (char *)NULL)
  1127.             strcat(fnamestart, ".");
  1128.         if (match(fnamestart, G.wildname, 1)) {     /* 1 == ignore case */
  1129.             Trace((stderr, "do_wild:  match() succeedsn"));
  1130.             /* remove trailing dot */
  1131.             fnamestart += strlen(fnamestart) - 1;
  1132.             if (*fnamestart == '.')
  1133.                 *fnamestart = '';
  1134.             return G.matchname;
  1135.         }
  1136.     }
  1137.     Closedir((zDIR *)G.wild_dir);  /* at least one entry read; nothing left */
  1138.     G.wild_dir = NULL;
  1139.     G.notfirstcall = FALSE;        /* reset for new wildspec */
  1140.     if (G.have_dirname)
  1141.         free(G.dirname);
  1142.     return (char *)NULL;
  1143. } /* end function do_wild() */
  1144. #endif /* !SFX */
  1145. /**********************/
  1146. /* Function mapattr() */
  1147. /**********************/
  1148. /* Identical to MS-DOS, OS/2 versions.  However, NT has a lot of extra
  1149.  * permission stuff, so this function should probably be extended in the
  1150.  * future. */
  1151. int mapattr(__G)
  1152.     __GDEF
  1153. {
  1154.     /* set archive bit for file entries (file is not backed up): */
  1155.     G.pInfo->file_attr = ((unsigned)G.crec.external_file_attributes |
  1156.       (G.crec.external_file_attributes & FILE_ATTRIBUTE_DIRECTORY ?
  1157.        0 : FILE_ATTRIBUTE_ARCHIVE)) & 0xff;
  1158.     return 0;
  1159. } /* end function mapattr() */
  1160. /************************/
  1161. /*  Function mapname()  */
  1162. /************************/
  1163.                              /* return 0 if no error, 1 if caution (filename */
  1164. int mapname(__G__ renamed)   /*  truncated), 2 if warning (skip file because */
  1165.     __GDEF                   /*  dir doesn't exist), 3 if error (skip file), */
  1166.     int renamed;             /*  or 10 if out of memory (skip file) */
  1167. {                            /*  [also IZ_VOL_LABEL, IZ_CREATED_DIR] */
  1168.     char pathcomp[FILNAMSIZ];   /* path-component buffer */
  1169.     char *pp, *cp=NULL;         /* character pointers */
  1170.     char *lastsemi = NULL;      /* pointer to last semi-colon in pathcomp */
  1171.     int error;
  1172.     register unsigned workch;   /* hold the character being tested */
  1173. /*---------------------------------------------------------------------------
  1174.     Initialize various pointers and counters and stuff.
  1175.   ---------------------------------------------------------------------------*/
  1176.     /* can create path as long as not just freshening, or if user told us */
  1177.     G.create_dirs = (!uO.fflag || renamed);
  1178.     G.created_dir = FALSE;      /* not yet */
  1179.     G.renamed_fullpath = FALSE;
  1180.     G.fnlen = strlen(G.filename);
  1181.     if (renamed) {
  1182.         cp = G.filename - 1;    /* point to beginning of renamed name... */
  1183.         while (*++cp)
  1184.             if (*cp == '\')    /* convert backslashes to forward */
  1185.                 *cp = '/';
  1186.         cp = G.filename;
  1187.         /* use temporary rootpath if user gave full pathname */
  1188.         if (G.filename[0] == '/') {
  1189.             G.renamed_fullpath = TRUE;
  1190.             pathcomp[0] = '/';  /* copy the '/' and terminate */
  1191.             pathcomp[1] = '';
  1192.             ++cp;
  1193.         } else if (isalpha((uch)G.filename[0]) && G.filename[1] == ':') {
  1194.             G.renamed_fullpath = TRUE;
  1195.             pp = pathcomp;
  1196.             *pp++ = *cp++;      /* copy the "d:" (+ '/', possibly) */
  1197.             *pp++ = *cp++;
  1198.             if (*cp == '/')
  1199.                 *pp++ = *cp++;  /* otherwise add "./"? */
  1200.             *pp = '';
  1201.         }
  1202.     }
  1203.     /* pathcomp is ignored unless renamed_fullpath is TRUE: */
  1204.     if ((error = checkdir(__G__ pathcomp, INIT)) != 0)    /* init path buffer */
  1205.         return error;           /* ...unless no mem or vol label on hard disk */
  1206.     *pathcomp = '';           /* initialize translation buffer */
  1207.     pp = pathcomp;              /* point to translation buffer */
  1208.     if (!renamed) {             /* cp already set if renamed */
  1209.         if (uO.jflag)           /* junking directories */
  1210.             cp = (char *)strrchr(G.filename, '/');
  1211.         if (cp == NULL)         /* no '/' or not junking dirs */
  1212.             cp = G.filename;    /* point to internal zipfile-member pathname */
  1213.         else
  1214.             ++cp;               /* point to start of last component of path */
  1215.     }
  1216. /*---------------------------------------------------------------------------
  1217.     Begin main loop through characters in filename.
  1218.   ---------------------------------------------------------------------------*/
  1219.     while ((workch = (uch)*cp++) != 0) {
  1220.         switch (workch) {
  1221.         case '/':             /* can assume -j flag not given */
  1222.             *pp = '';
  1223.             if ((error = checkdir(__G__ pathcomp, APPEND_DIR)) > 1)
  1224.                 return error;
  1225.             pp = pathcomp;    /* reset conversion buffer for next piece */
  1226.             lastsemi = NULL;  /* leave directory semi-colons alone */
  1227.             break;
  1228.         case ':':             /* drive names not stored in zipfile, */
  1229.         case '<':             /*  so no colons allowed */
  1230.         case '>':             /* no redirection symbols allowed either */
  1231.         case '|':             /* no pipe signs allowed */
  1232.         case '"':             /* no double quotes allowed */
  1233.         case '?':             /* no wildcards allowed */
  1234.         case '*':
  1235.             *pp++ = '_';      /* these rules apply equally to FAT and NTFS */
  1236.             break;
  1237.         case ';':             /* start of VMS version? */
  1238.             lastsemi = pp;    /* remove VMS version later... */
  1239.             *pp++ = ';';      /*  but keep semicolon for now */
  1240.             break;
  1241.         case ' ':             /* keep spaces unless specifically */
  1242.             /* NT cannot create filenames with spaces on FAT volumes */
  1243.             if (uO.sflag || IsVolumeOldFAT(__G__ G.filename))
  1244.                 *pp++ = '_';
  1245.             else
  1246.                 *pp++ = ' ';
  1247.             break;
  1248.         default:
  1249.             /* allow European characters in filenames: */
  1250.             if (isprint(workch) || workch >= 127)
  1251.                 *pp++ = (char)workch;
  1252.         } /* end switch */
  1253.     } /* end while loop */
  1254.     *pp = '';                   /* done with pathcomp:  terminate it */
  1255.     /* if not saving them, remove VMS version numbers (appended "###") */
  1256.     if (!uO.V_flag && lastsemi) {
  1257.         pp = lastsemi + 1;        /* semi-colon was kept:  expect #'s after */
  1258.         while (isdigit((uch)(*pp)))
  1259.             ++pp;
  1260.         if (*pp == '')          /* only digits between ';' and end:  nuke */
  1261.             *lastsemi = '';
  1262.     }
  1263. /*---------------------------------------------------------------------------
  1264.     Report if directory was created (and no file to create:  filename ended
  1265.     in '/'), check name to be sure it exists, and combine path and name be-
  1266.     fore exiting.
  1267.   ---------------------------------------------------------------------------*/
  1268.     if (G.filename[G.fnlen-1] == '/') {
  1269.         checkdir(__G__ G.filename, GETPATH);
  1270.         if (G.created_dir) {
  1271. #ifdef __RSXNT__        /* RSXNT/EMX C rtl uses OEM charset */
  1272.             char *ansi_name = (char *)alloca(strlen(G.filename) + 1);
  1273.             INTERN_TO_ISO(G.filename, ansi_name);
  1274. #           define Ansi_Fname  ansi_name
  1275. #else
  1276. #           define Ansi_Fname  G.filename
  1277. #endif
  1278.             if (QCOND2) {
  1279.                 Info(slide, 0, ((char *)slide, "   creating: %-22sn",
  1280.                   FnFilter1(G.filename)));
  1281.             }
  1282.             /* set file attributes:
  1283.                The default for newly created directories is "DIR attribute
  1284.                flags set", so there is no need to change attributes unless
  1285.                one of the DOS style attribute flags is set. The readonly
  1286.                attribute need not be masked, since it does not prevent
  1287.                modifications in the new directory. */
  1288.             if(G.pInfo->file_attr & (0x7F & ~FILE_ATTRIBUTE_DIRECTORY)) {
  1289.                 if (!SetFileAttributes(Ansi_Fname, G.pInfo->file_attr & 0x7F))
  1290.                     Info(slide, 1, ((char *)slide,
  1291.                       "nwarning (%d): could not set file attributes for %sn",
  1292.                       (int)GetLastError(), G.filename));
  1293.             }
  1294. #ifdef NTSD_EAS
  1295.             /* set extra fields, both stored-in-zipfile and .LONGNAME flavors */
  1296.             if (G.extra_field) { /* zipfile e.f. may have extended attribs */
  1297.                 int err = EvalExtraFields(__G__ G.filename, G.extra_field,
  1298.                                           G.lrec.extra_field_length);
  1299.                 if (err == IZ_EF_TRUNC) {
  1300.                     if (uO.qflag)
  1301.                         Info(slide, 1, ((char *)slide, "%-22s ",
  1302.                           FnFilter1(G.filename)));
  1303.                     Info(slide, 1, ((char *)slide, LoadFarString(TruncNTSD),
  1304.                       makeword(G.extra_field+2)-10, uO.qflag? "n":""));
  1305.                 }
  1306.             }
  1307. #endif /* NTSD_EAS */
  1308.             return IZ_CREATED_DIR;      /* set dir time (note trailing '/') */
  1309.         }
  1310.         return 2;   /* dir existed already; don't look for data to extract */
  1311.     }
  1312.     if (*pathcomp == '') {
  1313.         Info(slide, 1, ((char *)slide, "mapname:  conversion of %s failedn",
  1314.           FnFilter1(G.filename)));
  1315.         return 3;
  1316.     }
  1317.     checkdir(__G__ pathcomp, APPEND_NAME);  /* returns 1 if truncated: care? */
  1318.     checkdir(__G__ G.filename, GETPATH);
  1319.     Trace((stderr, "mapname returns with filename = [%s] (error = %d)nn",
  1320.       FnFilter1(G.filename), error));
  1321.     if (G.pInfo->vollabel) {    /* set the volume label now */
  1322.         char drive[4];
  1323. #ifdef __RSXNT__        /* RSXNT/EMX C rtl uses OEM charset */
  1324.         char *ansi_name = (char *)alloca(strlen(G.filename) + 1);
  1325.         INTERN_TO_ISO(G.filename, ansi_name);
  1326. #       define Ansi_Fname  ansi_name
  1327. #else
  1328. #       define Ansi_Fname  G.filename
  1329. #endif
  1330.         /* Build a drive string, e.g. "b:" */
  1331.         drive[0] = (char)('a' + G.nLabelDrive - 1);
  1332.         strcpy(drive + 1, ":\");
  1333.         if (QCOND2)
  1334.             Info(slide, 0, ((char *)slide, "labelling %s %-22sn", drive,
  1335.               FnFilter1(G.filename)));
  1336.         if (!SetVolumeLabel(drive, Ansi_Fname)) {
  1337.             Info(slide, 1, ((char *)slide,
  1338.               "mapname:  error setting volume labeln"));
  1339.             return 3;
  1340.         }
  1341.         return 2;   /* success:  skip the "extraction" quietly */
  1342. #undef Ansi_Fname
  1343.     }
  1344.     return error;
  1345. } /* end function mapname() */
  1346. /**********************/
  1347. /* Function map2fat() */        /* Not quite identical to OS/2 version */
  1348. /**********************/
  1349. static void map2fat(pathcomp, pEndFAT)
  1350.     char *pathcomp, **pEndFAT;
  1351. {
  1352.     char *ppc = pathcomp;       /* variable pointer to pathcomp */
  1353.     char *pEnd = *pEndFAT;      /* variable pointer to buildpathFAT */
  1354.     char *pBegin = *pEndFAT;    /* constant pointer to start of this comp. */
  1355.     char *last_dot = NULL;      /* last dot not converted to underscore */
  1356.     int dotname = FALSE;        /* flag:  path component begins with dot */
  1357.                                 /*  ("." and ".." don't count) */
  1358.     register unsigned workch;   /* hold the character being tested */
  1359.     /* Only need check those characters which are legal in NTFS but not
  1360.      * in FAT:  to get here, must already have passed through mapname.
  1361.      * Also must truncate path component to ensure 8.3 compliance.
  1362.      */
  1363.     while ((workch = (uch)*ppc++) != 0) {
  1364.         switch (workch) {
  1365.             case '[':
  1366.             case ']':
  1367.             case '+':
  1368.             case ',':
  1369.             case ';':
  1370.             case '=':
  1371.                 *pEnd++ = '_';      /* convert brackets to underscores */
  1372.                 break;
  1373.             case '.':
  1374.                 if (pEnd == *pEndFAT) {   /* nothing appended yet... */
  1375.                     if (*ppc == '')     /* don't bother appending a */
  1376.                         break;            /*  "./" component to the path */
  1377.                     else if (*ppc == '.' && ppc[1] == '') {   /* "../" */
  1378.                         *pEnd++ = '.';    /* add first dot, unchanged... */
  1379.                         ++ppc;            /* skip second dot, since it will */
  1380.                     } else {              /*  be "added" at end of if-block */
  1381.                         *pEnd++ = '_';    /* FAT doesn't allow null filename */
  1382.                         dotname = TRUE;   /*  bodies, so map .exrc -> _.exrc */
  1383.                     }                     /*  (extra '_' now, "dot" below) */
  1384.                 } else if (dotname) {     /* found a second dot, but still */
  1385.                     dotname = FALSE;      /*  have extra leading underscore: */
  1386.                     *pEnd = '';         /*  remove it by shifting chars */
  1387.                     pEnd = *pEndFAT + 1;  /*  left one space (e.g., .p1.p2: */
  1388.                     while (pEnd[1]) {     /*  __p1 -> _p1_p2 -> _p1.p2 when */
  1389.                         *pEnd = pEnd[1];  /*  finished) [opt.:  since first */
  1390.                         ++pEnd;           /*  two chars are same, can start */
  1391.                     }                     /*  shifting at second position] */
  1392.                 }
  1393.                 last_dot = pEnd;    /* point at last dot so far... */
  1394.                 *pEnd++ = '_';      /* convert dot to underscore for now */
  1395.                 break;
  1396.             default:
  1397.                 *pEnd++ = (char)workch;
  1398.         } /* end switch */
  1399.     } /* end while loop */
  1400.     *pEnd = '';                 /* terminate buildpathFAT */
  1401.     /* NOTE:  keep in mind that pEnd points to the end of the path
  1402.      * component, and *pEndFAT still points to the *beginning* of it...
  1403.      * Also note that the algorithm does not try to get too fancy:
  1404.      * if there are no dots already, the name either gets truncated
  1405.      * at 8 characters or the last underscore is converted to a dot
  1406.      * (only if more characters are saved that way).  In no case is
  1407.      * a dot inserted between existing characters.
  1408.      */
  1409.     if (last_dot == NULL) {       /* no dots:  check for underscores... */
  1410.         char *plu = strrchr(pBegin, '_');   /* pointer to last underscore */
  1411.         if (plu == NULL) {   /* no dots, no underscores:  truncate at 8 chars */
  1412.             *pEndFAT += 8;        /* (or could insert '.' and keep 11...?) */
  1413.             if (*pEndFAT > pEnd)
  1414.                 *pEndFAT = pEnd;  /* oops...didn't have 8 chars to truncate */
  1415.             else
  1416.                 **pEndFAT = '';
  1417.         } else if (MIN(plu - pBegin, 8) + MIN(pEnd - plu - 1, 3) > 8) {
  1418.             last_dot = plu;       /* be lazy:  drop through to next if-blk */
  1419.         } else if ((pEnd - *pEndFAT) > 8) {
  1420.             *pEndFAT += 8;        /* more fits into just basename than if */
  1421.             **pEndFAT = '';     /*  convert last underscore to dot */
  1422.         } else
  1423.             *pEndFAT = pEnd;      /* whole thing fits into 8 chars or less */
  1424.     }
  1425.     if (last_dot != NULL) {       /* one dot (or two, in the case of */
  1426.         *last_dot = '.';          /*  "..") is OK:  put it back in */
  1427.         if ((last_dot - pBegin) > 8) {
  1428.             char *p, *q;
  1429.             int i;
  1430.             p = last_dot;
  1431.             q = last_dot = pBegin + 8;
  1432.             for (i = 0;  (i < 4) && *p;  ++i)  /* too many chars in basename: */
  1433.                 *q++ = *p++;                   /*  shift .ext left and trun- */
  1434.             *q = '';                         /*  cate/terminate it */
  1435.             *pEndFAT = q;
  1436.         } else if ((pEnd - last_dot) > 4) {    /* too many chars in extension */
  1437.             *pEndFAT = last_dot + 4;
  1438.             **pEndFAT = '';
  1439.         } else
  1440.             *pEndFAT = pEnd;   /* filename is fine; point at terminating zero */
  1441.         if ((last_dot - pBegin) > 0 && last_dot[-1] == ' ')
  1442.             last_dot[-1] = '_';                /* NO blank in front of '.'! */
  1443.     }
  1444. } /* end function map2fat() */
  1445. /***********************/       /* Borrowed from os2.c for UnZip 5.1.        */
  1446. /* Function checkdir() */       /* Difference: no EA stuff                   */
  1447. /***********************/       /*             HPFS stuff works on NTFS too  */
  1448. int checkdir(__G__ pathcomp, flag)
  1449.     __GDEF
  1450.     char *pathcomp;
  1451.     int flag;
  1452. /*
  1453.  * returns:  1 - (on APPEND_NAME) truncated filename
  1454.  *           2 - path doesn't exist, not allowed to create
  1455.  *           3 - path doesn't exist, tried to create and failed; or
  1456.  *               path exists and is not a directory, but is supposed to be
  1457.  *           4 - path is too long
  1458.  *          10 - can't allocate memory for filename buffers
  1459.  */
  1460. {
  1461.  /* static int rootlen = 0;     */   /* length of rootpath */
  1462.  /* static char *rootpath;      */   /* user's "extract-to" directory */
  1463.  /* static char *buildpathHPFS; */   /* full path (so far) to extracted file, */
  1464.  /* static char *buildpathFAT;  */   /*  both HPFS/EA (main) and FAT versions */
  1465.  /* static char *endHPFS;       */   /* corresponding pointers to end of */
  1466.  /* static char *endFAT;        */   /*  buildpath ('') */
  1467. #   define FN_MASK   7
  1468. #   define FUNCTION  (flag & FN_MASK)
  1469. /*---------------------------------------------------------------------------
  1470.     APPEND_DIR:  append the path component to the path being built and check
  1471.     for its existence.  If doesn't exist and we are creating directories, do
  1472.     so for this one; else signal success or error as appropriate.
  1473.   ---------------------------------------------------------------------------*/
  1474.     if (FUNCTION == APPEND_DIR) {
  1475.         char *p = pathcomp;
  1476.         int too_long=FALSE;
  1477.         Trace((stderr, "appending dir segment [%s]n", pathcomp));
  1478.         while ((*G.endHPFS = *p++) != '')     /* copy to HPFS filename */
  1479.             ++G.endHPFS;
  1480.         if (!IsVolumeOldFAT(__G__ G.buildpathHPFS)) {
  1481.             p = pathcomp;
  1482.             while ((*G.endFAT = *p++) != '')  /* copy to FAT filename, too */
  1483.                 ++G.endFAT;
  1484.         } else
  1485.             map2fat(pathcomp, &G.endFAT);   /* map into FAT fn, update endFAT */
  1486.         /* GRR:  could do better check, see if overrunning buffer as we go:
  1487.          * check endHPFS-buildpathHPFS after each append, set warning variable
  1488.          * if within 20 of FILNAMSIZ; then if var set, do careful check when
  1489.          * appending.  Clear variable when begin new path. */
  1490.         /* next check:  need to append '/', at least one-char name, '' */
  1491.         if ((G.endHPFS-G.buildpathHPFS) > FILNAMSIZ-3)
  1492.             too_long = TRUE;                    /* check if extracting dir? */
  1493. #ifdef FIX_STAT_BUG
  1494.         /* Borland C++ 5.0 does not handle a call to stat() well if the
  1495.          * directory does not exist (it tends to crash in strange places.)
  1496.          * This is apparently a problem only when compiling for GUI rather
  1497.          * than console. The code below attempts to work around this problem.
  1498.          */
  1499.         if (access(G.buildpathFAT, 0) != 0) {
  1500.             if (!G.create_dirs) { /* told not to create (freshening) */
  1501.                 free(G.buildpathHPFS);
  1502.                 free(G.buildpathFAT);
  1503.                 return 2;         /* path doesn't exist:  nothing to do */
  1504.             }
  1505.             if (too_long) {   /* GRR:  should allow FAT extraction w/o EAs */
  1506.                 Info(slide, 1, ((char *)slide,
  1507.                   "checkdir error:  path too long: %sn",
  1508.                   FnFilter1(G.buildpathHPFS)));
  1509.                 free(G.buildpathHPFS);
  1510.                 free(G.buildpathFAT);
  1511.                 return 4;         /* no room for filenames:  fatal */
  1512.             }
  1513.             if (MKDIR(G.buildpathFAT, 0777) == -1) { /* create the directory */
  1514.                 Info(slide, 1, ((char *)slide,
  1515.                   "checkdir error:  cannot create %sn
  1516.                  unable to process %s.n",
  1517.                   FnFilter2(G.buildpathFAT), FnFilter1(G.filename)));
  1518.                 free(G.buildpathHPFS);
  1519.                 free(G.buildpathFAT);
  1520.                 return 3;      /* path didn't exist, tried to create, failed */
  1521.             }
  1522.             G.created_dir = TRUE;
  1523.         }
  1524. #endif /* FIX_STAT_BUG */
  1525.         if (SSTAT(G.buildpathFAT, &G.statbuf))   /* path doesn't exist */
  1526.         {
  1527.             if (!G.create_dirs) { /* told not to create (freshening) */
  1528.                 free(G.buildpathHPFS);
  1529.                 free(G.buildpathFAT);
  1530.                 return 2;         /* path doesn't exist:  nothing to do */
  1531.             }
  1532.             if (too_long) {   /* GRR:  should allow FAT extraction w/o EAs */
  1533.                 Info(slide, 1, ((char *)slide,
  1534.                   "checkdir error:  path too long: %sn",
  1535.                   FnFilter1(G.buildpathHPFS)));
  1536.                 free(G.buildpathHPFS);
  1537.                 free(G.buildpathFAT);
  1538.                 return 4;         /* no room for filenames:  fatal */
  1539.             }
  1540.             if (MKDIR(G.buildpathFAT, 0777) == -1) { /* create the directory */
  1541.                 Info(slide, 1, ((char *)slide,
  1542.                   "checkdir error:  cannot create %sn
  1543.                  unable to process %s.n",
  1544.                   FnFilter2(G.buildpathFAT), FnFilter1(G.filename)));
  1545.                 free(G.buildpathHPFS);
  1546.                 free(G.buildpathFAT);
  1547.                 return 3;      /* path didn't exist, tried to create, failed */
  1548.             }
  1549.             G.created_dir = TRUE;
  1550.         } else if (!S_ISDIR(G.statbuf.st_mode)) {
  1551.             Info(slide, 1, ((char *)slide,
  1552.               "checkdir error:  %s exists but is not directoryn   
  1553.               unable to process %s.n",
  1554.               FnFilter2(G.buildpathFAT), FnFilter1(G.filename)));
  1555.             free(G.buildpathHPFS);
  1556.             free(G.buildpathFAT);
  1557.             return 3;          /* path existed but wasn't dir */
  1558.         }
  1559.         if (too_long) {
  1560.             Info(slide, 1, ((char *)slide,
  1561.               "checkdir error:  path too long: %sn",
  1562.                FnFilter1(G.buildpathHPFS)));
  1563.             free(G.buildpathHPFS);
  1564.             free(G.buildpathFAT);
  1565.             return 4;         /* no room for filenames:  fatal */
  1566.         }
  1567.         *G.endHPFS++ = '/';
  1568.         *G.endFAT++ = '/';
  1569.         *G.endHPFS = *G.endFAT = '';
  1570.         Trace((stderr, "buildpathHPFS now = [%s]nbuildpathFAT now =  [%s]n",
  1571.           FnFilter1(G.buildpathHPFS), FnFilter2(G.buildpathFAT)));
  1572.         return 0;
  1573.     } /* end if (FUNCTION == APPEND_DIR) */
  1574. /*---------------------------------------------------------------------------
  1575.     GETPATH:  copy full FAT path to the string pointed at by pathcomp (want
  1576.     filename to reflect name used on disk, not EAs; if full path is HPFS,
  1577.     buildpathFAT and buildpathHPFS will be identical).  Also free both paths.
  1578.   ---------------------------------------------------------------------------*/
  1579.     if (FUNCTION == GETPATH) {
  1580.         Trace((stderr, "getting and freeing FAT path [%s]n",
  1581.           FnFilter1(G.buildpathFAT)));
  1582.         Trace((stderr, "freeing HPFS path [%s]n",
  1583.           FnFilter1(G.buildpathHPFS)));
  1584.         strcpy(pathcomp, G.buildpathFAT);
  1585.         free(G.buildpathFAT);
  1586.         free(G.buildpathHPFS);
  1587.         G.buildpathHPFS = G.buildpathFAT = G.endHPFS = G.endFAT = NULL;
  1588.         return 0;
  1589.     }
  1590. /*---------------------------------------------------------------------------
  1591.     APPEND_NAME:  assume the path component is the filename; append it and
  1592.     return without checking for existence.
  1593.   ---------------------------------------------------------------------------*/
  1594.     if (FUNCTION == APPEND_NAME) {
  1595.         char *p = pathcomp;
  1596.         int error = 0;
  1597.         Trace((stderr, "appending filename [%s]n", FnFilter1(pathcomp)));
  1598.         while ((*G.endHPFS = *p++) != '') {   /* copy to HPFS filename */
  1599.             ++G.endHPFS;
  1600.             if ((G.endHPFS-G.buildpathHPFS) >= FILNAMSIZ) {
  1601.                 *--G.endHPFS = '';
  1602.                 Info(slide, 1, ((char *)slide,
  1603.                   "checkdir warning:  path too long; truncatingn 
  1604.                   %sn                -> %sn",
  1605.                   FnFilter1(G.filename), FnFilter2(G.buildpathHPFS)));
  1606.                 error = 1;   /* filename truncated */
  1607.             }
  1608.         }
  1609.         if ( G.pInfo->vollabel || !IsVolumeOldFAT(__G__ G.buildpathHPFS)) {
  1610.             p = pathcomp;
  1611.             while ((*G.endFAT = *p++) != '')  /* copy to FAT filename, too */
  1612.                 ++G.endFAT;
  1613.         } else
  1614.             map2fat(pathcomp, &G.endFAT);   /* map into FAT fn, update endFAT */
  1615.         Trace((stderr, "buildpathHPFS: %snbuildpathFAT:  %sn",
  1616.           FnFilter1(G.buildpathHPFS), FnFilter2(G.buildpathFAT)));
  1617.         return error;  /* could check for existence, prompt for new name... */
  1618.     } /* end if (FUNCTION == APPEND_NAME) */
  1619. /*---------------------------------------------------------------------------
  1620.     INIT:  allocate and initialize buffer space for the file currently being
  1621.     extracted.  If file was renamed with an absolute path, don't prepend the
  1622.     extract-to path.
  1623.   ---------------------------------------------------------------------------*/
  1624.     if (FUNCTION == INIT) {
  1625.         Trace((stderr, "initializing buildpathHPFS and buildpathFAT to "));
  1626.         if ((G.buildpathHPFS = (char *)malloc(G.fnlen+G.rootlen+1)) == NULL)
  1627.             return 10;
  1628.         if ((G.buildpathFAT = (char *)malloc(G.fnlen+G.rootlen+1)) == NULL) {
  1629.             free(G.buildpathHPFS);
  1630.             return 10;
  1631.         }
  1632.         if (G.pInfo->vollabel) { /* use root or renamed path, but don't store */
  1633. /* GRR:  for network drives, do strchr() and return IZ_VOL_LABEL if not [1] */
  1634.             if (G.renamed_fullpath && pathcomp[1] == ':')
  1635.                 *G.buildpathHPFS = (char)ToLower(*pathcomp);
  1636.             else if (!G.renamed_fullpath && G.rootlen > 1 &&
  1637.                      G.rootpath[1] == ':')
  1638.                 *G.buildpathHPFS = (char)ToLower(*G.rootpath);
  1639.             else {
  1640.                 char tmpN[MAX_PATH], *tmpP;
  1641.                 if (GetFullPathName(".", MAX_PATH, tmpN, &tmpP) > MAX_PATH)
  1642.                 { /* by definition of MAX_PATH we should never get here */
  1643.                     Info(slide, 1, ((char *)slide,
  1644.                       "checkdir warning: current dir path too longn"));
  1645.                     return 1;   /* can't get drive letter */
  1646.                 }
  1647.                 G.nLabelDrive = *tmpN - 'a' + 1;
  1648.                 *G.buildpathHPFS = (char)(G.nLabelDrive - 1 + 'a');
  1649.             }
  1650.             G.nLabelDrive = *G.buildpathHPFS - 'a' + 1; /* save for mapname() */
  1651.             if (uO.volflag == 0 || *G.buildpathHPFS < 'a' /* no labels/bogus? */
  1652.                 || (uO.volflag == 1 && !isfloppy(G.nLabelDrive))) { /* !fixed */
  1653.                 free(G.buildpathHPFS);
  1654.                 free(G.buildpathFAT);
  1655.                 return IZ_VOL_LABEL;   /* skipping with message */
  1656.             }
  1657.             *G.buildpathHPFS = '';
  1658.         } else if (G.renamed_fullpath) /* pathcomp = valid data */
  1659.             strcpy(G.buildpathHPFS, pathcomp);
  1660.         else if (G.rootlen > 0)
  1661.             strcpy(G.buildpathHPFS, G.rootpath);
  1662.         else
  1663.             *G.buildpathHPFS = '';
  1664.         G.endHPFS = G.buildpathHPFS;
  1665.         G.endFAT = G.buildpathFAT;
  1666.         while ((*G.endFAT = *G.endHPFS) != '') {
  1667.             ++G.endFAT;
  1668.             ++G.endHPFS;
  1669.         }
  1670.         Trace((stderr, "[%s]n", FnFilter1(G.buildpathHPFS)));
  1671.         return 0;
  1672.     }
  1673. /*---------------------------------------------------------------------------
  1674.     ROOT:  if appropriate, store the path in rootpath and create it if neces-
  1675.     sary; else assume it's a zipfile member and return.  This path segment
  1676.     gets used in extracting all members from every zipfile specified on the
  1677.     command line.  Note that under OS/2 and MS-DOS, if a candidate extract-to
  1678.     directory specification includes a drive letter (leading "x:"), it is
  1679.     treated just as if it had a trailing '/'--that is, one directory level
  1680.     will be created if the path doesn't exist, unless this is otherwise pro-
  1681.     hibited (e.g., freshening).
  1682.   ---------------------------------------------------------------------------*/
  1683. #if (!defined(SFX) || defined(SFX_EXDIR))
  1684.     if (FUNCTION == ROOT) {
  1685.         Trace((stderr, "initializing root path to [%s]n",
  1686.           FnFilter1(pathcomp)));
  1687.         if (pathcomp == NULL) {
  1688.             G.rootlen = 0;
  1689.             return 0;
  1690.         }
  1691.         if ((G.rootlen = strlen(pathcomp)) > 0) {
  1692.             int had_trailing_pathsep=FALSE, has_drive=FALSE, xtra=2;
  1693.             if (isalpha((uch)pathcomp[0]) && pathcomp[1] == ':')
  1694.                 has_drive = TRUE;   /* drive designator */
  1695.             if (pathcomp[G.rootlen-1] == '/' || pathcomp[G.rootlen-1] == '\') {
  1696.                 pathcomp[--G.rootlen] = '';
  1697.                 had_trailing_pathsep = TRUE;
  1698.             }
  1699.             if (has_drive && (G.rootlen == 2)) {
  1700.                 if (!had_trailing_pathsep)   /* i.e., original wasn't "x:/" */
  1701.                     xtra = 3;      /* room for '.' + '/' + 0 at end of "x:" */
  1702.             } else if (G.rootlen > 0) {   /* need not check "x:." and "x:/" */
  1703.                 if (SSTAT(pathcomp, &G.statbuf) || !S_ISDIR(G.statbuf.st_mode))
  1704.                 {
  1705.                     /* path does not exist */
  1706.                     if (!G.create_dirs /* || iswild(pathcomp) */ ) {
  1707.                         G.rootlen = 0;
  1708.                         return 2;   /* treat as stored file */
  1709.                     }
  1710.                     /* create directory (could add loop here to scan pathcomp
  1711.                      * and create more than one level, but really necessary?) */
  1712.                     if (MKDIR(pathcomp, 0777) == -1) {
  1713.                         Info(slide, 1, ((char *)slide,
  1714.                           "checkdir:  cannot create extraction directory: %sn",
  1715.                           FnFilter1(pathcomp)));
  1716.                         G.rootlen = 0; /* path didn't exist, tried to create, */
  1717.                         return 3;  /* failed:  file exists, or need 2+ levels */
  1718.                     }
  1719.                 }
  1720.             }
  1721.             if ((G.rootpath = (char *)malloc(G.rootlen+xtra)) == NULL) {
  1722.                 G.rootlen = 0;
  1723.                 return 10;
  1724.             }
  1725.             strcpy(G.rootpath, pathcomp);
  1726.             if (xtra == 3)                  /* had just "x:", make "x:." */
  1727.                 G.rootpath[G.rootlen++] = '.';
  1728.             G.rootpath[G.rootlen++] = '/';
  1729.             G.rootpath[G.rootlen] = '';
  1730.             Trace((stderr, "rootpath now = [%s]n", FnFilter1(G.rootpath)));
  1731.         }
  1732.         return 0;
  1733.     }
  1734. #endif /* !SFX || SFX_EXDIR */
  1735. /*---------------------------------------------------------------------------
  1736.     END:  free rootpath, immediately prior to program exit.
  1737.   ---------------------------------------------------------------------------*/
  1738.     if (FUNCTION == END) {
  1739.         Trace((stderr, "freeing rootpathn"));
  1740.         if (G.rootlen > 0) {
  1741.             free(G.rootpath);
  1742.             G.rootlen = 0;
  1743.         }
  1744.         return 0;
  1745.     }
  1746.     return 99;  /* should never reach */
  1747. } /* end function checkdir() */
  1748. #ifndef SFX
  1749. #ifndef WINDLL
  1750. /************************/
  1751. /*  Function version()  */
  1752. /************************/
  1753. void version(__G)
  1754.     __GDEF
  1755. {
  1756.     int len;
  1757. #if (defined(_MSC_VER) || defined(__WATCOMC__) || defined(__DJGPP__))
  1758.     char buf[80];
  1759. #if (defined(_MSC_VER) && (_MSC_VER > 900))
  1760.     char buf2[80];
  1761. #endif
  1762. #endif
  1763.     len = sprintf((char *)slide, CompiledWith,
  1764. #if defined(_MSC_VER)  /* MSC == VC++, but what about SDK compiler? */
  1765.       (sprintf(buf, "Microsoft C %d.%02d ", _MSC_VER/100, _MSC_VER%100), buf),
  1766. #  if (_MSC_VER == 800)
  1767.       "(Visual C++ v1.1)",
  1768. #  elif (_MSC_VER == 850)
  1769.       "(Windows NT v3.5 SDK)",
  1770. #  elif (_MSC_VER == 900)
  1771.       "(Visual C++ v2.x)",
  1772. #  elif (_MSC_VER > 900)
  1773.       (sprintf(buf2, "(Visual C++ %d.%d)", _MSC_VER/100 - 6, _MSC_VER%100/10),
  1774.         buf2),
  1775. #  else
  1776.       "(bad version)",
  1777. #  endif
  1778. #elif defined(__WATCOMC__)
  1779. #  if (__WATCOMC__ % 10 > 0)
  1780.       (sprintf(buf, "Watcom C/C++ %d.%02d", __WATCOMC__ / 100,
  1781.        __WATCOMC__ % 100), buf), "",
  1782. #  else
  1783.       (sprintf(buf, "Watcom C/C++ %d.%d", __WATCOMC__ / 100,
  1784.        (__WATCOMC__ % 100) / 10), buf), "",
  1785. #  endif
  1786. #elif defined(__BORLANDC__)
  1787.       "Borland C++",
  1788. #  if (__BORLANDC__ < 0x0200)
  1789.       " 1.0",
  1790. #  elif (__BORLANDC__ == 0x0200)
  1791.       " 2.0",
  1792. #  elif (__BORLANDC__ == 0x0400)
  1793.       " 3.0",
  1794. #  elif (__BORLANDC__ == 0x0410)   /* __BCPLUSPLUS__ = 0x0310 */
  1795.       " 3.1",
  1796. #  elif (__BORLANDC__ == 0x0452)   /* __BCPLUSPLUS__ = 0x0320 */
  1797.       " 4.0 or 4.02",
  1798. #  elif (__BORLANDC__ == 0x0460)   /* __BCPLUSPLUS__ = 0x0340 */
  1799.       " 4.5",
  1800. #  elif (__BORLANDC__ == 0x0500)   /* __BCPLUSPLUS__ = 0x0340 */
  1801.       " 5.0",
  1802. #  elif (__BORLANDC__ == 0x0520)   /* __BCPLUSPLUS__ = 0x0520 */
  1803.       " 5.2 (C++ Builder)",        /* GRR:  assume this will stay sync'd? */
  1804. #  else
  1805.       " later than 5.2",
  1806. #  endif
  1807. #elif defined(__LCC__)
  1808.       "LCC-Win32", "",
  1809. #elif defined(__GNUC__)
  1810. #  if defined(__RSXNT__)
  1811. #    if (defined(__DJGPP__) && !defined(__EMX__))
  1812.       (sprintf(buf, "rsxnt(djgpp v%d.%02d) / gcc ",
  1813.         __DJGPP__, __DJGPP_MINOR__), buf),
  1814. #    elif defined(__DJGPP__)
  1815.       (sprintf(buf, "rsxnt(emx+djgpp v%d.%02d) / gcc ",
  1816.         __DJGPP__, __DJGPP_MINOR__), buf),
  1817. #    elif (defined(__GO32__) && !defined(__EMX__))
  1818.       "rsxnt(djgpp v1.x) / gcc ",
  1819. #    elif defined(__GO32__)
  1820.       "rsxnt(emx + djgpp v1.x) / gcc ",
  1821. #    elif defined(__EMX__)
  1822.       "rsxnt(emx)+gcc ",
  1823. #    else
  1824.       "rsxnt(unknown) / gcc ",
  1825. #    endif
  1826. #  elif defined(__CYGWIN32__)
  1827.       "cygnus win32 / gcc ",
  1828. #  elif defined(__MINGW32__)
  1829.       "mingw32 / gcc ",
  1830. #  else
  1831.       "gcc ",
  1832. #  endif
  1833.       __VERSION__,
  1834. #else /* !_MSC_VER, !__WATCOMC__, !__BORLANDC__, !__LCC__, !__GNUC__ */
  1835.       "unknown compiler (SDK?)", "",
  1836. #endif /* ?compilers */
  1837.       "Windows 95 / Windows NT", "n(32-bit)",
  1838. #ifdef __DATE__
  1839.       " on ", __DATE__
  1840. #else
  1841.       "", ""
  1842. #endif
  1843.     );
  1844.     (*G.message)((zvoid *)&G, slide, (ulg)len, 0);
  1845.     return;
  1846. } /* end function version() */
  1847. #endif /* !WINDLL */
  1848. #endif /* !SFX */
  1849. #ifdef W32_STAT_BANDAID
  1850. /* All currently known variants of WIN32 operating systems (Windows 95/98,
  1851.  * WinNT 3.x, 4.0, 5.0) have a nasty bug in the OS kernel concerning
  1852.  * conversions between UTC and local time: In the time conversion functions
  1853.  * of the Win32 API, the timezone offset (including seasonal daylight saving
  1854.  * shift) between UTC and local time evaluation is erratically based on the
  1855.  * current system time. The correct evaluation must determine the offset
  1856.  * value as it {was/is/will be} for the actual time to be converted.
  1857.  *
  1858.  * Some versions of MS C runtime lib's stat() returns utc time-stamps so
  1859.  * that localtime(timestamp) corresponds to the (potentially false) local
  1860.  * time shown by the OS' system programs (Explorer, command shell dir, etc.)
  1861.  * The RSXNT port follows the same strategy, but fails to recognize the
  1862.  * access-time attribute.
  1863.  *
  1864.  * For the NTFS file system (and other filesystems that store time-stamps
  1865.  * as UTC values), this results in st_mtime (, st_{c|a}time) fields which
  1866.  * are not stable but vary according to the seasonal change of "daylight
  1867.  * saving time in effect / not in effect".
  1868.  *
  1869.  * Other C runtime libs (CygWin, or the CRT DLLs supplied with Win95/NT
  1870.  * return the unix-time equivalent of the UTC FILETIME values as got back
  1871.  * from the Win32 API call. This time, return values from NTFS are correct
  1872.  * whereas utimes from files on (V)FAT volumes vary according to the DST
  1873.  * switches.
  1874.  *
  1875.  * To achieve timestamp consistency of UTC (UT extra field) values in
  1876.  * Zip archives, the Info-ZIP programs require work-around code for
  1877.  * proper time handling in stat() (and other time handling routines).
  1878.  */
  1879. /* stat() functions under Windows95 tend to fail for root directories.   *
  1880.  * Watcom and Borland, at least, are affected by this bug.  Watcom made  *
  1881.  * a partial fix for 11.0 but still missed some cases.  This substitute  *
  1882.  * detects the case and fills in reasonable values.  Otherwise we get    *
  1883.  * effects like failure to extract to a root dir because it's not found. */
  1884. int zstat_win32(__W32STAT_GLOBALS__ const char *path, struct stat *buf)
  1885. {
  1886.     if (!stat(path, buf))
  1887.     {
  1888. #ifdef NT_TZBUG_WORKAROUND
  1889.         /* stat was successful, now redo the time-stamp fetches */
  1890.         int fs_uses_loctime = FStampIsLocTime(__G__ path);
  1891.         HANDLE h;
  1892.         FILETIME Modft, Accft, Creft;
  1893. #ifdef __RSXNT__        /* RSXNT/EMX C rtl uses OEM charset */
  1894.         char *ansi_path = (char *)alloca(strlen(path) + 1);
  1895.         INTERN_TO_ISO(path, ansi_path);
  1896. #       define Ansi_Path  ansi_path
  1897. #else
  1898. #       define Ansi_Path  path
  1899. #endif
  1900.         TTrace((stdout, "stat(%s) finds modtime %08lxn", path, buf->st_mtime));
  1901.         h = CreateFile(Ansi_Path, GENERIC_READ,
  1902.                        FILE_SHARE_READ | FILE_SHARE_WRITE, NULL,
  1903.                        OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
  1904.         if (h != INVALID_HANDLE_VALUE) {
  1905.             BOOL ftOK = GetFileTime(h, &Creft, &Accft, &Modft);
  1906.             CloseHandle(h);
  1907.             if (ftOK) {
  1908.                 FTTrace((stdout, "GetFileTime returned Modft", 0, &Modft));
  1909.                 FTTrace((stdout, "GetFileTime returned Creft", 0, &Creft));
  1910.                 if (!fs_uses_loctime) {
  1911.                     /*  On a filesystem that stores UTC timestamps, we refill
  1912.                      *  the time fields of the struct stat buffer by directly
  1913.                      *  using the UTC values as returned by the Win32
  1914.                      *  GetFileTime() API call.
  1915.                      */
  1916.                     FileTime2utime(&Modft, &(buf->st_mtime));
  1917.                     if (Accft.dwLowDateTime != 0 || Accft.dwHighDateTime != 0)
  1918.                         FileTime2utime(&Accft, &(buf->st_atime));
  1919.                     else
  1920.                         buf->st_atime = buf->st_mtime;
  1921.                     if (Creft.dwLowDateTime != 0 || Creft.dwHighDateTime != 0)
  1922.                         FileTime2utime(&Creft, &(buf->st_ctime));
  1923.                     else
  1924.                         buf->st_ctime = buf->st_mtime;
  1925.                     TTrace((stdout,"NTFS, recalculated modtime %08lxn",
  1926.                             buf->st_mtime));
  1927.                 } else {
  1928.                     /*  On VFAT and FAT-like filesystems, the FILETIME values
  1929.                      *  are converted back to the stable local time before
  1930.                      *  converting them to UTC unix time-stamps.
  1931.                      */
  1932.                     VFatFileTime2utime(&Modft, &(buf->st_mtime));
  1933.                     if (Accft.dwLowDateTime != 0 || Accft.dwHighDateTime != 0)
  1934.                         VFatFileTime2utime(&Accft, &(buf->st_atime));
  1935.                     else
  1936.                         buf->st_atime = buf->st_mtime;
  1937.                     if (Creft.dwLowDateTime != 0 || Creft.dwHighDateTime != 0)
  1938.                         VFatFileTime2utime(&Creft, &(buf->st_ctime));
  1939.                     else
  1940.                         buf->st_ctime = buf->st_mtime;
  1941.                     TTrace((stdout, "VFAT, recalculated modtime %08lxn",
  1942.                             buf->st_mtime));
  1943.                 }
  1944.             }
  1945.         }
  1946. #       undef Ansi_Path
  1947. #endif /* NT_TZBUG_WORKAROUND */
  1948.         return 0;
  1949.     }
  1950. #ifdef W32_STATROOT_FIX
  1951.     else
  1952.     {
  1953.         DWORD flags;
  1954. #ifdef __RSXNT__        /* RSXNT/EMX C rtl uses OEM charset */
  1955.         char *ansi_path = (char *)alloca(strlen(path) + 1);
  1956.         INTERN_TO_ISO(path, ansi_path);
  1957. #       define Ansi_Path  ansi_path
  1958. #else
  1959. #       define Ansi_Path  path
  1960. #endif
  1961.         flags = GetFileAttributes(Ansi_Path);
  1962.         if (flags != 0xFFFFFFFF && flags & FILE_ATTRIBUTE_DIRECTORY) {
  1963.             Trace((stderr, "nstat("%s",...) failed on existing directoryn",
  1964.                    path));
  1965.             memset(buf, 0, sizeof(struct stat));
  1966.             buf->st_atime = buf->st_ctime = buf->st_mtime =
  1967.               dos_to_unix_time(DOSTIME_MINIMUM);        /* 1-1-80 */
  1968.             buf->st_mode = S_IFDIR | S_IREAD |
  1969.                            ((flags & FILE_ATTRIBUTE_READONLY) ? 0 : S_IWRITE);
  1970.             return 0;
  1971.         } /* assumes: stat() won't fail on non-dirs without good reason */
  1972. #       undef Ansi_Path
  1973.     }
  1974. #endif /* W32_STATROOT_FIX */
  1975.     return -1;
  1976. }
  1977. #endif /* W32_STAT_BANDAID */
  1978. #endif /* !FUNZIP */
  1979. #ifndef WINDLL
  1980. /* This replacement getch() function was originally created for Watcom C
  1981.  * and then additionally used with CYGWIN. Since UnZip 5.4, all other Win32
  1982.  * ports apply this replacement rather that their supplied getch() (or
  1983.  * alike) function.  There are problems with unabsorbed LF characters left
  1984.  * over in the keyboard buffer under Win95 (and 98) when ENTER was pressed.
  1985.  * (Under Win95, ENTER returns two(!!) characters: CR-LF.)  This problem
  1986.  * does not appear when run on a WinNT console prompt!
  1987.  */
  1988. /* Watcom 10.6's getch() does not handle Alt+<digit><digit><digit>. */
  1989. /* Note that if PASSWD_FROM_STDIN is defined, the file containing   */
  1990. /* the password must have a carriage return after the word, not a   */
  1991. /* Unix-style newline (linefeed only).  This discards linefeeds.    */
  1992. int getch_win32(void)
  1993. {
  1994.   HANDLE stin;
  1995.   DWORD rc;
  1996.   unsigned char buf[2];
  1997.   int ret = -1;
  1998.   DWORD odemode = ~(DWORD)0;
  1999. #  ifdef PASSWD_FROM_STDIN
  2000.   stin = GetStdHandle(STD_INPUT_HANDLE);
  2001. #  else
  2002.   stin = CreateFile("CONIN$", GENERIC_READ | GENERIC_WRITE,
  2003.                     FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, NULL);
  2004.   if (stin == INVALID_HANDLE_VALUE)
  2005.     return -1;
  2006. #  endif
  2007.   if (GetConsoleMode(stin, &odemode))
  2008.     SetConsoleMode(stin, ENABLE_PROCESSED_INPUT);  /* raw except ^C noticed */
  2009.   if (ReadFile(stin, &buf, 1, &rc, NULL) && rc == 1)
  2010.     ret = buf[0];
  2011.   /* when the user hits return we get CR LF.  We discard the LF, not the CR,
  2012.    * because when we call this for the first time after a previous input
  2013.    * such as the one for "replace foo? [y]es, ..." the LF may still be in
  2014.    * the input stream before whatever the user types at our prompt. */
  2015.   if (ret == 'n')
  2016.     if (ReadFile(stin, &buf, 1, &rc, NULL) && rc == 1)
  2017.       ret = buf[0];
  2018.   if (odemode != ~(DWORD)0)
  2019.     SetConsoleMode(stin, odemode);
  2020. #  ifndef PASSWD_FROM_STDIN
  2021.   CloseHandle(stin);
  2022. #  endif
  2023.   return ret;
  2024. }
  2025. #endif /* !WINDLL */