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

压缩解压

开发平台:

MultiPlatform

  1. /*---------------------------------------------------------------------------
  2.   fileio.c
  3.   This file contains routines for doing direct but relatively generic input/
  4.   output, file-related sorts of things, plus some miscellaneous stuff.  Most
  5.   of the stuff has to do with opening, closing, reading and/or writing files.
  6.   Contains:  open_input_file()
  7.              open_outfile()           (non-VMS, non-AOS/VS, non-CMS_MVS)
  8.              undefer_input()
  9.              defer_leftover_input()
  10.              readbuf()
  11.              readbyte()
  12.              fillinbuf()
  13.              flush()                  (non-VMS)
  14.              disk_error()             (non-VMS)
  15.              UzpMessagePrnt()
  16.              UzpMessageNull()         (DLL only)
  17.              UzpInput()
  18.              UzpMorePause()
  19.              UzpPassword()            (non-WINDLL)
  20.              handler()
  21.              dos_to_unix_time()       (non-VMS, non-VM/CMS, non-MVS)
  22.              check_for_newer()        (non-VMS, non-OS/2, non-VM/CMS, non-MVS)
  23.              do_string()
  24.              makeword()
  25.              makelong()
  26.              str2iso()                (CRYPT && NEED_STR2ISO, only)
  27.              str2oem()                (CRYPT && NEED_STR2OEM, only)
  28.              memset()                 (ZMEM only)
  29.              memcpy()                 (ZMEM only)
  30.              zstrnicmp()
  31.              zstat()                  (REGULUS only)
  32.              fLoadFarString()         (SMALL_MEM only)
  33.              fLoadFarStringSmall()    (SMALL_MEM only)
  34.              fLoadFarStringSmall2()   (SMALL_MEM only)
  35.              zfstrcpy()               (SMALL_MEM only)
  36.   ---------------------------------------------------------------------------*/
  37. #define FILEIO_C
  38. #define UNZIP_INTERNAL
  39. #include "unzip.h"
  40. #ifdef WINDLL
  41. #  include "windll/windll.h"
  42. #  include <setjmp.h>
  43. #endif
  44. #include "crypt.h"
  45. #include "ttyio.h"
  46. /* setup of codepage conversion for decryption passwords */
  47. #if CRYPT
  48. #  if (defined(CRYP_USES_ISO2OEM) && !defined(IZ_ISO2OEM_ARRAY))
  49. #    define IZ_ISO2OEM_ARRAY            /* pull in iso2oem[] table */
  50. #  endif
  51. #  if (defined(CRYP_USES_OEM2ISO) && !defined(IZ_OEM2ISO_ARRAY))
  52. #    define IZ_OEM2ISO_ARRAY            /* pull in oem2iso[] table */
  53. #  endif
  54. #endif
  55. #include "ebcdic.h"   /* definition/initialization of ebcdic[] */
  56. /*
  57.    Note: Under Windows, the maximum size of the buffer that can be used
  58.    with any of the *printf calls is 16,384, so win_fprintf was used to
  59.    feed the fprintf clone no more than 16K chunks at a time. This should
  60.    be valid for anything up to 64K (and probably beyond, assuming your
  61.    buffers are that big).
  62. */
  63. #ifdef WINDLL
  64. #  define WriteError(buf,len,strm) 
  65.    (win_fprintf(pG, strm, (extent)len, (char far *)buf) != (int)(len))
  66. #else /* !WINDLL */
  67. #  ifdef USE_FWRITE
  68. #    define WriteError(buf,len,strm) 
  69.      ((extent)fwrite((char *)(buf),1,(extent)(len),strm) != (extent)(len))
  70. #  else
  71. #    define WriteError(buf,len,strm) 
  72.      ((extent)write(fileno(strm),(char *)(buf),(extent)(len)) != (extent)(len))
  73. #  endif
  74. #endif /* ?WINDLL */
  75. static int disk_error OF((__GPRO));
  76. /****************************/
  77. /* Strings used in fileio.c */
  78. /****************************/
  79. #if (defined(UNIX) || defined(DOS_FLX_OS2_W32) || defined(__BEOS__))
  80.    static ZCONST char Far CannotDeleteOldFile[] =
  81.      "error:  cannot delete old %sn";
  82. #ifdef UNIXBACKUP
  83.    static ZCONST char Far CannotRenameOldFile[] =
  84.      "error:  cannot rename old %sn";
  85.    static ZCONST char Far BackupSuffix[] = "~";
  86. #endif
  87. #endif /* UNIX || DOS_FLX_OS2_W32 || __BEOS__ */
  88. static ZCONST char Far CannotOpenZipfile[] =
  89.   "error:  cannot open zipfile [ %s ]n";
  90. #if (!defined(VMS) && !defined(AOS_VS) && !defined(CMS_MVS) && !defined(MACOS))
  91.    static ZCONST char Far CannotCreateFile[] = "error:  cannot create %sn";
  92. #endif
  93. #ifdef NOVELL_BUG_FAILSAFE
  94.    static ZCONST char Far NovellBug[] =
  95.      "error:  %s: stat() says does not exist, but fopen() found anywayn";
  96. #endif
  97. static ZCONST char Far ReadError[] = "error:  zipfile read errorn";
  98. static ZCONST char Far FilenameTooLongTrunc[] =
  99.   "warning:  filename too long--truncating.n";
  100. static ZCONST char Far ExtraFieldTooLong[] =
  101.   "warning:  extra field too long (%d).  Ignoring...n";
  102. #ifdef WINDLL
  103.    static ZCONST char Far DiskFullQuery[] =
  104.      "%s:  write error (disk full?).n";
  105. #else
  106.    static ZCONST char Far DiskFullQuery[] =
  107.      "%s:  write error (disk full?).  Continue? (y/n/^C) ";
  108.    static ZCONST char Far ZipfileCorrupt[] =
  109.      "error:  zipfile probably corrupt (%s)n";
  110. #  ifdef SYMLINKS
  111.      static ZCONST char Far FileIsSymLink[] =
  112.        "%s exists and is a symbolic link%s.n";
  113. #  endif
  114. #  ifdef MORE
  115.      static ZCONST char Far MorePrompt[] = "--More--(%lu)";
  116. #  endif
  117.    static ZCONST char Far QuitPrompt[] =
  118.      "--- Press `Q' to quit, or any other key to continue ---";
  119.    static ZCONST char Far HidePrompt[] = /* "r                       r"; */
  120.      "r                                                         r";
  121. #  if CRYPT
  122. #    ifdef MACOS
  123.        /* SPC: are names on MacOS REALLY so much longer than elsewhere ??? */
  124.        static ZCONST char Far PasswPrompt[] = "[%s]n %s password: ";
  125. #    else
  126.        static ZCONST char Far PasswPrompt[] = "[%s] %s password: ";
  127. #    endif
  128.      static ZCONST char Far PasswPrompt2[] = "Enter password: ";
  129.      static ZCONST char Far PasswRetry[] = "password incorrect--reenter: ";
  130. #  endif /* CRYPT */
  131. #endif /* !WINDLL */
  132. /******************************/
  133. /* Function open_input_file() */
  134. /******************************/
  135. int open_input_file(__G)    /* return 1 if open failed */
  136.     __GDEF
  137. {
  138.     /*
  139.      *  open the zipfile for reading and in BINARY mode to prevent cr/lf
  140.      *  translation, which would corrupt the bitstreams
  141.      */
  142. #if (defined(UNIX) || defined(TOPS20) || defined(AOS_VS) || defined(__BEOS__))
  143.     G.zipfd = open(G.zipfn, O_RDONLY);
  144. #else /* !(UNIX || TOPS20 || AOS_VS || __BEOS__) */
  145. #ifdef VMS
  146.     G.zipfd = open(G.zipfn, O_RDONLY, 0, "ctx=stm");
  147. #else /* !VMS */
  148. #ifdef MACOS
  149.     G.zipfd = open(G.zipfn, 0);
  150. #else /* !MACOS */
  151. #ifdef RISCOS
  152.     G.zipfd = fopen(G.zipfn, "rb");
  153. #else /* !RISCOS */
  154. #ifdef CMS_MVS
  155.     G.zipfd = vmmvs_open_infile(__G);
  156. #else /* !CMS_MVS */
  157.     G.zipfd = open(G.zipfn, O_RDONLY | O_BINARY);
  158. #endif /* ?CMS_MVS */
  159. #endif /* ?RISCOS */
  160. #endif /* ?MACOS */
  161. #endif /* ?VMS */
  162. #endif /* ?(UNIX || TOPS20 || AOS_VS || __BEOS__) */
  163. #ifdef USE_STRM_INPUT
  164.     if (G.zipfd == NULL)
  165. #else
  166.     /* if (G.zipfd < 0) */  /* no good for Windows CE port */
  167.     if (G.zipfd == -1)
  168. #endif
  169.     {
  170.         Info(slide, 0x401, ((char *)slide, LoadFarString(CannotOpenZipfile),
  171.           G.zipfn));
  172.         return 1;
  173.     }
  174.     return 0;
  175. } /* end function open_input_file() */
  176. #if (!defined(VMS) && !defined(AOS_VS) && !defined(CMS_MVS) && !defined(MACOS))
  177. /***************************/
  178. /* Function open_outfile() */
  179. /***************************/
  180. int open_outfile(__G)         /* return 1 if fail */
  181.     __GDEF
  182. {
  183. #ifdef DLL
  184.     if (G.redirect_data)
  185.         return (redirect_outfile(__G) == FALSE);
  186. #endif
  187. #ifdef QDOS
  188.     QFilename(__G__ G.filename);
  189. #endif
  190. #if (defined(DOS_FLX_OS2_W32) || defined(UNIX) || defined(__BEOS__))
  191. #ifdef BORLAND_STAT_BUG
  192.     /* Borland 5.0's stat() barfs if the filename has no extension and the
  193.      * file doesn't exist. */
  194.     if (access(G.filename, 0) == -1) {
  195.         FILE *tmp = fopen(G.filename, "wb+");
  196.         /* file doesn't exist, so create a dummy file to keep stat() from
  197.          * failing (will be over-written anyway) */
  198.         fputc('0', tmp);  /* just to have something in the file */
  199.         fclose(tmp);
  200.     }
  201. #endif /* BORLAND_STAT_BUG */
  202. #ifdef SYMLINKS
  203.     if (SSTAT(G.filename, &G.statbuf) == 0 || lstat(G.filename,&G.statbuf) == 0)
  204. #else
  205.     if (SSTAT(G.filename, &G.statbuf) == 0)
  206. #endif /* ?SYMLINKS */
  207.     {
  208.         Trace((stderr, "open_outfile:  stat(%s) returns 0:  file existsn",
  209.           FnFilter1(G.filename)));
  210. #ifdef UNIXBACKUP
  211.         if (uO.B_flag) {    /* do backup */
  212.             char *tname;
  213.             int blen, flen, tlen;
  214.             blen = strlen(BackupSuffix);
  215.             flen = strlen(G.filename);
  216.             tlen = flen + blen + 1;
  217.             if (tlen >= FILNAMSIZ) {   /* in case name is too long, truncate */
  218.                 tname = (char *)malloc(FILNAMSIZ);
  219.                 if (tname == NULL)
  220.                     return 1;                 /* in case we run out of space */
  221.                 tlen = FILNAMSIZ - 1 - blen;
  222.                 strcpy(tname, G.filename);    /* make backup name */
  223.                 tname[tlen] = '';
  224.             } else {
  225.                 tname = (char *)malloc(tlen);
  226.                 if (tname == NULL)
  227.                     return 1;                 /* in case we run out of space */
  228.                 strcpy(tname, G.filename);    /* make backup name */
  229.             }
  230.             strcpy(tname+flen, BackupSuffix);
  231.             /* GRR:  should check if backup file exists, apply -n/-o to that */
  232.             if (rename(G.filename, tname) < 0) {   /* move file */
  233.                 Info(slide, 0x401, ((char *)slide,
  234.                   LoadFarString(CannotRenameOldFile), FnFilter1(G.filename)));
  235.                 free(tname);
  236.                 return 1;
  237.             }
  238.             free(tname);
  239.         } else
  240. #endif /* UNIXBACKUP */
  241. #ifdef DOS_FLX_OS2_W32
  242.         if (!(G.statbuf.st_mode & S_IWRITE)) {
  243.             Trace((stderr, "open_outfile:  existing file %s is read-onlyn",
  244.               FnFilter1(G.filename)));
  245.             chmod(G.filename, S_IREAD | S_IWRITE);
  246.             Trace((stderr, "open_outfile:  %s now writablen",
  247.               FnFilter1(G.filename)));
  248.         }
  249. #endif /* DOS_FLX_OS2_W32 */
  250.         if (unlink(G.filename) != 0) {
  251.             Info(slide, 0x401, ((char *)slide,
  252.               LoadFarString(CannotDeleteOldFile), FnFilter1(G.filename)));
  253.             return 1;
  254.         }
  255.         Trace((stderr, "open_outfile:  %s now deletedn",
  256.           FnFilter1(G.filename)));
  257.     }
  258. #endif /* DOS_FLX_OS2_W32 || UNIX || __BEOS__ */
  259. #ifdef RISCOS
  260.     if (SWI_OS_File_7(G.filename,0xDEADDEAD,0xDEADDEAD,G.lrec.ucsize)!=NULL) {
  261.         Info(slide, 1, ((char *)slide, LoadFarString(CannotCreateFile),
  262.           FnFilter1(G.filename)));
  263.         return 1;
  264.     }
  265. #endif /* RISCOS */
  266. #ifdef TOPS20
  267.     char *tfilnam;
  268.     if ((tfilnam = (char *)malloc(2*strlen(G.filename)+1)) == (char *)NULL)
  269.         return 1;
  270.     strcpy(tfilnam, G.filename);
  271.     upper(tfilnam);
  272.     enquote(tfilnam);
  273.     if ((G.outfile = fopen(tfilnam, FOPW)) == (FILE *)NULL) {
  274.         Info(slide, 1, ((char *)slide, LoadFarString(CannotCreateFile),
  275.           tfilnam));
  276.         free(tfilnam);
  277.         return 1;
  278.     }
  279.     free(tfilnam);
  280. #else /* !TOPS20 */
  281. #ifdef MTS
  282.     if (uO.aflag)
  283.         G.outfile = fopen(G.filename, FOPWT);
  284.     else
  285.         G.outfile = fopen(G.filename, FOPW);
  286.     if (G.outfile == (FILE *)NULL) {
  287.         Info(slide, 1, ((char *)slide, LoadFarString(CannotCreateFile),
  288.           FnFilter1(G.filename)));
  289.         return 1;
  290.     }
  291. #else /* !MTS */
  292. #ifdef TANDEM
  293.     if (SSTAT(G.filename, &G.statbuf) == 0) {
  294.         Trace((stderr, "open_outfile:  stat(%s) returns 0 (file exists)n",
  295.           FnFilter1(G.filename)));
  296.         if (unlink(G.filename) != 0) {
  297.             Trace((stderr, "open_outfile:  existing file %s is read-onlyn",
  298.               FnFilter1(G.filename)));
  299.             chmod(G.filename, S_IRUSR | S_IWUSR);
  300.             Trace((stderr, "open_outfile:  %s now writablen",
  301.               FnFilter1(G.filename)));
  302.             if (unlink(G.filename) != 0)
  303.                 return 1;
  304.         }
  305.         Trace((stderr, "open_outfile:  %s now deletedn",
  306.           FnFilter1(G.filename)));
  307.     }
  308.     if (G.pInfo->textmode)
  309.         G.outfile = fopen(G.filename, FOPWT);
  310.     else
  311.         G.outfile = fopen(G.filename, FOPW);
  312.     if (G.outfile == (FILE *)NULL) {
  313.         Info(slide, 1, ((char *)slide, LoadFarString(CannotCreateFile),
  314.           FnFilter1(G.filename)));
  315.         return 1;
  316.     }
  317. #else /* !TANDEM */
  318. #ifdef DEBUG
  319.     Info(slide, 1, ((char *)slide,
  320.       "open_outfile:  doing fopen(%s) for readingn", FnFilter1(G.filename)));
  321.     if ((G.outfile = fopen(G.filename, FOPR)) == (FILE *)NULL)
  322.         Info(slide, 1, ((char *)slide,
  323.           "open_outfile:  fopen(%s) for reading failed:  does not existn",
  324.           FnFilter1(G.filename)));
  325.     else {
  326.         Info(slide, 1, ((char *)slide,
  327.           "open_outfile:  fopen(%s) for reading succeeded:  file existsn",
  328.           FnFilter1(G.filename)));
  329.         fclose(G.outfile);
  330.     }
  331. #endif /* DEBUG */
  332. #ifdef NOVELL_BUG_FAILSAFE
  333.     if (G.dne && ((G.outfile = fopen(G.filename, FOPR)) != (FILE *)NULL)) {
  334.         Info(slide, 0x401, ((char *)slide, LoadFarString(NovellBug),
  335.           FnFilter1(G.filename)));
  336.         fclose(G.outfile);
  337.         return 1;   /* with "./" fix in checkdir(), should never reach here */
  338.     }
  339. #endif /* NOVELL_BUG_FAILSAFE */
  340.     Trace((stderr, "open_outfile:  doing fopen(%s) for writingn",
  341.       FnFilter1(G.filename)));
  342.     if ((G.outfile = fopen(G.filename, FOPW)) == (FILE *)NULL) {
  343.         Info(slide, 0x401, ((char *)slide, LoadFarString(CannotCreateFile),
  344.           FnFilter1(G.filename)));
  345.         return 1;
  346.     }
  347.     Trace((stderr, "open_outfile:  fopen(%s) for writing succeededn",
  348.       FnFilter1(G.filename)));
  349. #endif /* !TANDEM */
  350. #endif /* !MTS */
  351. #endif /* !TOPS20 */
  352. #ifdef USE_FWRITE
  353. #ifdef DOS_OS2_W32
  354.     /* 16-bit MSC: buffer size must be strictly LESS than 32K (WSIZE):  bogus */
  355.     setbuf(G.outfile, (char *)NULL);   /* make output unbuffered */
  356. #else /* !DOS_OS2_W32 */
  357. #ifndef RISCOS
  358. #ifdef _IOFBF  /* make output fully buffered (works just about like write()) */
  359.     setvbuf(G.outfile, (char *)slide, _IOFBF, WSIZE);
  360. #else
  361.     setbuf(G.outfile, (char *)slide);
  362. #endif
  363. #endif /* !RISCOS */
  364. #endif /* ?DOS_OS2_W32 */
  365. #endif /* USE_FWRITE */
  366.     return 0;
  367. } /* end function open_outfile() */
  368. #endif /* !VMS && !AOS_VS && !CMS_MVS && !MACOS */
  369. /*
  370.  * These functions allow NEXTBYTE to function without needing two bounds
  371.  * checks.  Call defer_leftover_input() if you ever have filled G.inbuf
  372.  * by some means other than readbyte(), and you then want to start using
  373.  * NEXTBYTE.  When going back to processing bytes without NEXTBYTE, call
  374.  * undefer_input().  For example, extract_or_test_member brackets its
  375.  * central section that does the decompression with these two functions.
  376.  * If you need to check the number of bytes remaining in the current
  377.  * file while using NEXTBYTE, check (G.csize + G.incnt), not G.csize.
  378.  */
  379. /****************************/
  380. /* function undefer_input() */
  381. /****************************/
  382. void undefer_input(__G)
  383.     __GDEF
  384. {
  385.     if (G.incnt > 0)
  386.         G.csize += G.incnt;
  387.     if (G.incnt_leftover > 0) {
  388.         /* We know that "(G.csize < MAXINT)" so we can cast G.csize to int:
  389.          * This condition was checked when G.incnt_leftover was set > 0 in
  390.          * defer_leftover_input(), and it is NOT allowed to touch G.csize
  391.          * before calling undefer_input() when (G.incnt_leftover > 0)
  392.          * (single exception: see read_byte()'s  "G.csize <= 0" handling) !!
  393.          */
  394.         G.incnt = G.incnt_leftover + (int)G.csize;
  395.         G.inptr = G.inptr_leftover - (int)G.csize;
  396.         G.incnt_leftover = 0;
  397.     } else if (G.incnt < 0)
  398.         G.incnt = 0;
  399. } /* end function undefer_input() */
  400. /***********************************/
  401. /* function defer_leftover_input() */
  402. /***********************************/
  403. void defer_leftover_input(__G)
  404.     __GDEF
  405. {
  406.     if ((long)G.incnt > G.csize) {
  407.         /* (G.csize < MAXINT), we can safely cast it to int !! */
  408.         if (G.csize < 0L)
  409.             G.csize = 0L;
  410.         G.inptr_leftover = G.inptr + (int)G.csize;
  411.         G.incnt_leftover = G.incnt - (int)G.csize;
  412.         G.incnt = (int)G.csize;
  413.     } else
  414.         G.incnt_leftover = 0;
  415.     G.csize -= G.incnt;
  416. } /* end function defer_leftover_input() */
  417. /**********************/
  418. /* Function readbuf() */
  419. /**********************/
  420. unsigned readbuf(__G__ buf, size)   /* return number of bytes read into buf */
  421.     __GDEF
  422.     char *buf;
  423.     register unsigned size;
  424. {
  425.     register unsigned count;
  426.     unsigned n;
  427.     n = size;
  428.     while (size) {
  429.         if (G.incnt <= 0) {
  430.             if ((G.incnt = read(G.zipfd, (char *)G.inbuf, INBUFSIZ)) == 0)
  431.                 return (n-size);
  432.             else if (G.incnt < 0) {
  433.                 /* another hack, but no real harm copying same thing twice */
  434.                 (*G.message)((zvoid *)&G,
  435.                   (uch *)LoadFarString(ReadError),  /* CANNOT use slide */
  436.                   (ulg)strlen(LoadFarString(ReadError)), 0x401);
  437.                 return 0;  /* discarding some data; better than lock-up */
  438.             }
  439.             /* buffer ALWAYS starts on a block boundary:  */
  440.             G.cur_zipfile_bufstart += INBUFSIZ;
  441.             G.inptr = G.inbuf;
  442.         }
  443.         count = MIN(size, (unsigned)G.incnt);
  444.         memcpy(buf, G.inptr, count);
  445.         buf += count;
  446.         G.inptr += count;
  447.         G.incnt -= count;
  448.         size -= count;
  449.     }
  450.     return n;
  451. } /* end function readbuf() */
  452. /***********************/
  453. /* Function readbyte() */
  454. /***********************/
  455. int readbyte(__G)   /* refill inbuf and return a byte if available, else EOF */
  456.     __GDEF
  457. {
  458.     if (G.mem_mode)
  459.         return EOF;
  460.     if (G.csize <= 0) {
  461.         G.csize--;             /* for tests done after exploding */
  462.         G.incnt = 0;
  463.         return EOF;
  464.     }
  465.     if (G.incnt <= 0) {
  466.         if ((G.incnt = read(G.zipfd, (char *)G.inbuf, INBUFSIZ)) == 0) {
  467.             G.incnt = 0;       /* do not allow negative value to affect stuff */
  468.             return EOF;
  469.         } else if (G.incnt < 0) {  /* "fail" (abort, retry, ...) returns this */
  470.             /* another hack, but no real harm copying same thing twice */
  471.             (*G.message)((zvoid *)&G,
  472.               (uch *)LoadFarString(ReadError),
  473.               (ulg)strlen(LoadFarString(ReadError)), 0x401);
  474.             echon();
  475. #ifdef WINDLL
  476.             longjmp(dll_error_return, 1);
  477. #else
  478.             DESTROYGLOBALS()
  479.             EXIT(PK_BADERR);    /* totally bailing; better than lock-up */
  480. #endif
  481.         }
  482.         G.cur_zipfile_bufstart += INBUFSIZ; /* always starts on block bndry */
  483.         G.inptr = G.inbuf;
  484.         defer_leftover_input(__G);           /* decrements G.csize */
  485.     }
  486. #if CRYPT
  487.     if (G.pInfo->encrypted) {
  488.         uch *p;
  489.         int n;
  490.         /* This was previously set to decrypt one byte beyond G.csize, when
  491.          * incnt reached that far.  GRR said, "but it's required:  why?"  This
  492.          * was a bug in fillinbuf() -- was it also a bug here?
  493.          */
  494.         for (n = G.incnt, p = G.inptr;  n--;  p++)
  495.             zdecode(*p);
  496.     }
  497. #endif /* CRYPT */
  498.     --G.incnt;
  499.     return *G.inptr++;
  500. } /* end function readbyte() */
  501. #ifdef USE_ZLIB
  502. /************************/
  503. /* Function fillinbuf() */
  504. /************************/
  505. int fillinbuf(__G) /* like readbyte() except returns number of bytes in inbuf */
  506.     __GDEF
  507. {
  508.     if (G.mem_mode ||
  509.                   (G.incnt = read(G.zipfd, (char *)G.inbuf, INBUFSIZ)) <= 0)
  510.         return 0;
  511.     G.cur_zipfile_bufstart += INBUFSIZ;  /* always starts on a block boundary */
  512.     G.inptr = G.inbuf;
  513.     defer_leftover_input(__G);           /* decrements G.csize */
  514. #if CRYPT
  515.     if (G.pInfo->encrypted) {
  516.         uch *p;
  517.         int n;
  518.         for (n = G.incnt, p = G.inptr;  n--;  p++)
  519.             zdecode(*p);
  520.     }
  521. #endif /* CRYPT */
  522.     return G.incnt;
  523. } /* end function fillinbuf() */
  524. #endif /* USE_ZLIB */
  525. #ifndef VMS  /* for VMS use code in vms.c */
  526. /********************/
  527. /* Function flush() */   /* returns PK error codes: */
  528. /********************/   /* if cflag => always 0; PK_DISK if write error */
  529. int flush(__G__ rawbuf, size, unshrink)
  530.     __GDEF
  531.     uch *rawbuf;
  532.     ulg size;
  533.     int unshrink;
  534. {
  535.     register uch *p, *q;
  536.     uch *transbuf;
  537. #if (defined(SMALL_MEM) || defined(MED_MEM) || defined(VMS_TEXT_CONV))
  538.     ulg transbufsiz;
  539. #endif
  540.     /* static int didCRlast = FALSE;    moved to globals.h */
  541. /*---------------------------------------------------------------------------
  542.     Compute the CRC first; if testing or if disk is full, that's it.
  543.   ---------------------------------------------------------------------------*/
  544.     G.crc32val = crc32(G.crc32val, rawbuf, (extent)size);
  545. #ifdef DLL
  546.     if ((G.statreportcb != NULL) &&
  547.         (*G.statreportcb)(__G__ UZ_ST_IN_PROGRESS, G.zipfn, G.filename, NULL))
  548.         return IZ_CTRLC;        /* cancel operation by user request */
  549. #endif
  550.     if (uO.tflag || size == 0L)  /* testing or nothing to write:  all done */
  551.         return PK_OK;
  552.     if (G.disk_full)
  553.         return PK_DISK;         /* disk already full:  ignore rest of file */
  554. /*---------------------------------------------------------------------------
  555.     Write the bytes rawbuf[0..size-1] to the output device, first converting
  556.     end-of-lines and ASCII/EBCDIC as needed.  If SMALL_MEM or MED_MEM are NOT
  557.     defined, outbuf is assumed to be at least as large as rawbuf and is not
  558.     necessarily checked for overflow.
  559.   ---------------------------------------------------------------------------*/
  560.     if (!G.pInfo->textmode) {   /* write raw binary data */
  561.         /* GRR:  note that for standard MS-DOS compilers, size argument to
  562.          * fwrite() can never be more than 65534, so WriteError macro will
  563.          * have to be rewritten if size can ever be that large.  For now,
  564.          * never more than 32K.  Also note that write() returns an int, which
  565.          * doesn't necessarily limit size to 32767 bytes if write() is used
  566.          * on 16-bit systems but does make it more of a pain; however, because
  567.          * at least MSC 5.1 has a lousy implementation of fwrite() (as does
  568.          * DEC Ultrix cc), write() is used anyway.
  569.          */
  570. #ifdef DLL
  571.         if (G.redirect_data)
  572.             writeToMemory(__G__ rawbuf, size);
  573.         else
  574. #endif
  575.         if (!uO.cflag && WriteError(rawbuf, size, G.outfile))
  576.             return disk_error(__G);
  577.         else if (uO.cflag && (*G.message)((zvoid *)&G, rawbuf, size, 0))
  578.             return 0;
  579.     } else {   /* textmode:  aflag is true */
  580.         if (unshrink) {
  581.             /* rawbuf = outbuf */
  582.             transbuf = G.outbuf2;
  583. #if (defined(SMALL_MEM) || defined(MED_MEM) || defined(VMS_TEXT_CONV))
  584.             transbufsiz = TRANSBUFSIZ;
  585. #endif
  586.         } else {
  587.             /* rawbuf = slide */
  588.             transbuf = G.outbuf;
  589. #if (defined(SMALL_MEM) || defined(MED_MEM) || defined(VMS_TEXT_CONV))
  590.             transbufsiz = OUTBUFSIZ;
  591.             Trace((stderr, "ntransbufsiz = OUTBUFSIZ = %un", OUTBUFSIZ));
  592. #endif
  593.         }
  594.         if (G.newfile) {
  595. #ifdef VMS_TEXT_CONV
  596.             /* GRR: really want to check if -aa (or -aaa?) was given... */
  597.             if (rawbuf[1]) {       /* first line is more than 255 chars long */
  598.                 Trace((stderr,
  599.       "nfirst line of VMS `text' too long; switching to normal extractionn"));
  600.                 G.VMS_line_state = -1;   /* -1: don't treat as VMS text */
  601.             } else
  602.                 G.VMS_line_state = 0;    /* 0: ready to read line length */
  603. #endif
  604.             G.didCRlast = FALSE;         /* no previous buffers written */
  605.             G.newfile = FALSE;
  606.         }
  607. #ifdef VMS_TEXT_CONV
  608.         if (G.pInfo->hostnum == VMS_ && G.extra_field && G.VMS_line_state >= 0)
  609.         {
  610.             /* GRR: really want to check for actual VMS extra field, and
  611.              *      ideally for variable-length record format */
  612. /*
  613.             printf("n>>>>>> GRR:  file is VMS text and has an extra fieldn");
  614.  */
  615.             p = rawbuf;
  616.             q = transbuf;
  617.             while(p < rawbuf+(unsigned)size) {
  618.                 switch (G.VMS_line_state) {
  619.                     /* 0: ready to read line length */
  620.                     case 0:
  621.                         G.VMS_line_length = 0;
  622.                         G.VMS_line_pad = 0;
  623.                         if (p == rawbuf+(unsigned)size-1) {    /* last char */
  624.                             G.VMS_line_length = (int)((uch)(*p++));
  625.                             G.VMS_line_state = 1;
  626.                         } else {
  627.                             G.VMS_line_length = makeword(p);
  628.                             p += 2;
  629.                             G.VMS_line_state = 2;
  630.                         }
  631.                         if (G.VMS_line_length & 1)   /* odd */
  632.                             G.VMS_line_pad = 1;
  633.                         break;
  634.                     /* 1: read one byte of length, need second */
  635.                     case 1:
  636.                         G.VMS_line_length += ((int)((uch)(*p++)) << 8);
  637.                         G.VMS_line_state = 2;
  638.                         break;
  639.                     /* 2: ready to read VMS_line_length chars */
  640.                     case 2:
  641.                         if (G.VMS_line_length < rawbuf+(unsigned)size-p) {
  642.                             if (G.VMS_line_length >=
  643.                                 transbuf+(unsigned)transbufsiz-q)
  644.                             {
  645.                                 int outroom = transbuf+(unsigned)transbufsiz-q;
  646. /* GRR:  need to change this to *q++ = native(*p++); loop or something */
  647.                                 memcpy(q, p, outroom);
  648. #ifdef DLL
  649.                                 if (G.redirect_data)
  650.                                     writeToMemory(__G__ transbuf,
  651.                                       (unsigned)outroom);
  652.                                 else
  653. #endif
  654.                                 if (!uO.cflag && WriteError(transbuf,
  655.                                     (unsigned)outroom, G.outfile))
  656.                                     return disk_error(__G);
  657.                                 else if (uO.cflag && (*G.message)((zvoid *)&G,
  658.                                          transbuf, (ulg)outroom, 0))
  659.                                     return 0;
  660.                                 q = transbuf;
  661.                                 p += outroom;
  662.                                 G.VMS_line_length -= outroom;
  663.                                 /* fall through to normal case */
  664.                             }
  665. /* GRR:  need to change this to *q++ = native(*p++); loop or something */
  666.                             memcpy(q, p, G.VMS_line_length);
  667.                             q += G.VMS_line_length;
  668.                             p += G.VMS_line_length;
  669.                             G.VMS_line_length = 0;   /* necessary?? */
  670.                             G.VMS_line_state = 3;
  671.                         } else {  /* remaining input is less than full line */
  672.                             int remaining = rawbuf+(unsigned)size-p;
  673.                             if (remaining <
  674.                                 transbuf+(unsigned)transbufsiz-q)
  675.                             {
  676.                                 int outroom = transbuf+(unsigned)transbufsiz-q;
  677. /* GRR:  need to change this to *q++ = native(*p++); loop or something */
  678.                                 memcpy(q, p, outroom);
  679. #ifdef DLL
  680.                                 if (G.redirect_data)
  681.                                     writeToMemory(__G__ transbuf,
  682.                                       (unsigned)(outroom));
  683.                                 else
  684. #endif
  685.                                 if (!uO.cflag && WriteError(transbuf,
  686.                                     (unsigned)outroom, G.outfile))
  687.                                     return disk_error(__G);
  688.                                 else if (uO.cflag && (*G.message)((zvoid *)&G,
  689.                                          transbuf, (ulg)outroom, 0))
  690.                                     return 0;
  691.                                 q = transbuf;
  692.                                 p += outroom;
  693.                                 remaining -= outroom;
  694.                             }
  695. /* GRR:  need to change this to *q++ = native(*p++); loop or something */
  696.                             memcpy(q, p, remaining);
  697.                             q += remaining;
  698.                             p += remaining;
  699.                             G.VMS_line_length -= remaining;
  700.                             /* no change in G.VMS_line_state */
  701.                         }
  702.                         break;
  703.                     /* 3: ready to PutNativeEOL */
  704.                     case 3:
  705.                         if (q > transbuf+(unsigned)transbufsiz-lenEOL) {
  706. #ifdef DLL
  707.                             if (G.redirect_data)
  708.                                 writeToMemory(__G__ transbuf,
  709.                                   (unsigned)(q-transbuf));
  710.                             else
  711. #endif
  712.                             if (!uO.cflag &&
  713.                                 WriteError(transbuf, (unsigned)(q-transbuf),
  714.                                   G.outfile))
  715.                                 return disk_error(__G);
  716.                             else if (uO.cflag && (*G.message)((zvoid *)&G,
  717.                                      transbuf, (ulg)(q-transbuf), 0))
  718.                                 return 0;
  719.                             q = transbuf;
  720.                         }
  721.                         PutNativeEOL
  722.                         if (G.VMS_line_pad)
  723.                             if (p < rawbuf+(unsigned)size) {
  724.                                 ++p;
  725.                                 G.VMS_line_state = 0;
  726.                             } else
  727.                                 G.VMS_line_state = 4;
  728.                         else
  729.                             G.VMS_line_state = 0;
  730.                         break;
  731.                     /* 4: ready to read pad byte */
  732.                     case 4:
  733.                         ++p;
  734.                         G.VMS_line_state = 0;
  735.                         break;
  736.                 }
  737.             } /* end while */
  738.         } else
  739. #endif /* VMS_TEXT_CONV */
  740.     /*-----------------------------------------------------------------------
  741.         Algorithm:  CR/LF => native; lone CR => native; lone LF => native.
  742.         This routine is only for non-raw-VMS, non-raw-VM/CMS files (i.e.,
  743.         stream-oriented files, not record-oriented).
  744.       -----------------------------------------------------------------------*/
  745.         /* else not VMS text */ {
  746.             p = rawbuf;
  747.             if (*p == LF && G.didCRlast)
  748.                 ++p;
  749.             G.didCRlast = FALSE;
  750.             for (q = transbuf;  p < rawbuf+(unsigned)size;  ++p) {
  751.                 if (*p == CR) {           /* lone CR or CR/LF: EOL either way */
  752.                     PutNativeEOL
  753.                     if (p == rawbuf+(unsigned)size-1)  /* last char in buffer */
  754.                         G.didCRlast = TRUE;
  755.                     else if (p[1] == LF)  /* get rid of accompanying LF */
  756.                         ++p;
  757.                 } else if (*p == LF)      /* lone LF */
  758.                     PutNativeEOL
  759.                 else
  760. #ifndef DOS_FLX_OS2_W32
  761.                 if (*p != CTRLZ)          /* lose all ^Z's */
  762. #endif
  763.                     *q++ = native(*p);
  764. #if (defined(SMALL_MEM) || defined(MED_MEM))
  765. # if (lenEOL == 1)   /* don't check unshrink:  both buffers small but equal */
  766.                 if (!unshrink)
  767. # endif
  768.                     /* check for danger of buffer overflow and flush */
  769.                     if (q > transbuf+(unsigned)transbufsiz-lenEOL) {
  770.                         Trace((stderr,
  771.                           "p - rawbuf = %u   q-transbuf = %u   size = %lun",
  772.                           (unsigned)(p-rawbuf), (unsigned)(q-transbuf), size));
  773.                         if (!uO.cflag && WriteError(transbuf,
  774.                             (unsigned)(q-transbuf), G.outfile))
  775.                             return disk_error(__G);
  776.                         else if (uO.cflag && (*G.message)((zvoid *)&G,
  777.                                  transbuf, (ulg)(q-transbuf), 0))
  778.                             return 0;
  779.                         q = transbuf;
  780.                         continue;
  781.                     }
  782. #endif /* SMALL_MEM || MED_MEM */
  783.             }
  784.         }
  785.     /*-----------------------------------------------------------------------
  786.         Done translating:  write whatever we've got to file (or screen).
  787.       -----------------------------------------------------------------------*/
  788.         Trace((stderr, "p - rawbuf = %u   q-transbuf = %u   size = %lun",
  789.           (unsigned)(p-rawbuf), (unsigned)(q-transbuf), size));
  790.         if (q > transbuf) {
  791. #ifdef DLL
  792.             if (G.redirect_data)
  793.                 writeToMemory(__G__ transbuf, (unsigned)(q-transbuf));
  794.             else
  795. #endif
  796.             if (!uO.cflag && WriteError(transbuf, (unsigned)(q-transbuf),
  797.                 G.outfile))
  798.                 return disk_error(__G);
  799.             else if (uO.cflag && (*G.message)((zvoid *)&G, transbuf,
  800.                 (ulg)(q-transbuf), 0))
  801.                 return 0;
  802.         }
  803.     }
  804.     return 0;
  805. } /* end function flush() */
  806. /*************************/
  807. /* Function disk_error() */
  808. /*************************/
  809. static int disk_error(__G)
  810.     __GDEF
  811. {
  812.     /* OK to use slide[] here because this file is finished regardless */
  813.     Info(slide, 0x4a1, ((char *)slide, LoadFarString(DiskFullQuery),
  814.       FnFilter1(G.filename)));
  815. #ifndef WINDLL
  816.     fgets(G.answerbuf, 9, stdin);
  817.     if (*G.answerbuf == 'y')   /* stop writing to this file */
  818.         G.disk_full = 1;       /*  (outfile bad?), but new OK */
  819.     else
  820. #endif
  821.         G.disk_full = 2;       /* no:  exit program */
  822.     return PK_DISK;
  823. } /* end function disk_error() */
  824. #endif /* !VMS */
  825. /*****************************/
  826. /* Function UzpMessagePrnt() */
  827. /*****************************/
  828. int UZ_EXP UzpMessagePrnt(pG, buf, size, flag)
  829.     zvoid *pG;   /* globals struct:  always passed */
  830.     uch *buf;    /* preformatted string to be printed */
  831.     ulg size;    /* length of string (may include nulls) */
  832.     int flag;    /* flag bits */
  833. {
  834.     /* IMPORTANT NOTE:
  835.      *    The name of the first parameter of UzpMessagePrnt(), which passes
  836.      *    the "Uz_Globs" address, >>> MUST <<< be identical to the string
  837.      *    expansion of the __G__ macro in the REENTRANT case (see globals.h).
  838.      *    This name identity is mandatory for the LoadFarString() macro
  839.      *    (in the SMALL_MEM case) !!!
  840.      */
  841.     int error;
  842.     uch *q=buf, *endbuf=buf+(unsigned)size;
  843. #ifdef MORE
  844.     uch *p=buf-1;
  845. #endif
  846.     FILE *outfp;
  847. /*---------------------------------------------------------------------------
  848.     These tests are here to allow fine-tuning of UnZip's output messages,
  849.     but none of them will do anything without setting the appropriate bit
  850.     in the flag argument of every Info() statement which is to be turned
  851.     *off*.  That is, all messages are currently turned on for all ports.
  852.     To turn off *all* messages, use the UzpMessageNull() function instead
  853.     of this one.
  854.   ---------------------------------------------------------------------------*/
  855. #if (defined(OS2) && defined(DLL))
  856.     if (MSG_NO_DLL2(flag))  /* if OS/2 DLL bit is set, do NOT print this msg */
  857.         return 0;
  858. #endif
  859. #ifdef WINDLL
  860.     if (MSG_NO_WDLL(flag))
  861.         return 0;
  862. #endif
  863. #ifdef WINDLL
  864.     if (MSG_NO_WGUI(flag))
  865.         return 0;
  866. #endif
  867. /*
  868. #ifdef ACORN_GUI
  869.     if (MSG_NO_AGUI(flag))
  870.         return 0;
  871. #endif
  872.  */
  873. #ifdef DLL                 /* don't display message if data is redirected */
  874.     if (((Uz_Globs *)pG)->redirect_data &&
  875.         !((Uz_Globs *)pG)->redirect_text)
  876.         return 0;
  877. #endif
  878.     if (MSG_STDERR(flag) && !((Uz_Globs *)pG)->UzO.tflag)
  879.         outfp = (FILE *)stderr;
  880.     else
  881.         outfp = (FILE *)stdout;
  882. #ifdef QUERY_TRNEWLN
  883.     /* some systems require termination of query prompts with 'n' to force
  884.      * immediate display */
  885.     if (MSG_MNEWLN(flag)) {   /* assumes writable buffer (e.g., slide[]) */
  886.         *endbuf++ = 'n';     /*  with room for one more char at end of buf */
  887.         ++size;               /*  (safe assumption:  only used for four */
  888.     }                         /*  short queries in extract.c and fileio.c) */
  889. #endif
  890.     if (MSG_TNEWLN(flag)) {   /* again assumes writable buffer:  fragile... */
  891.         if ((!size && !((Uz_Globs *)pG)->sol) ||
  892.             (size && (endbuf[-1] != 'n')))
  893.         {
  894.             *endbuf++ = 'n';
  895.             ++size;
  896.         }
  897.     }
  898. #ifdef MORE
  899.     /* room for --More-- and one line of overlap: */
  900.     ((Uz_Globs *)pG)->height = SCREENLINES - 2;
  901. #endif
  902.     if (MSG_LNEWLN(flag) && !((Uz_Globs *)pG)->sol) {
  903.         /* not at start of line:  want newline */
  904. #ifdef OS2DLL
  905.         if (!((Uz_Globs *)pG)->redirect_text) {
  906. #endif
  907.             putc('n', outfp);
  908.             fflush(outfp);
  909. #ifdef MORE
  910.             if (((Uz_Globs *)pG)->M_flag)
  911.             {
  912.                 ++((Uz_Globs *)pG)->numlines;
  913.                 if (((Uz_Globs *)pG)->numlines %
  914.                     ((Uz_Globs *)pG)->height == 0L)    /* GRR: fix */
  915.                     (*((Uz_Globs *)pG)->mpause)((zvoid *)pG,
  916.                       LoadFarString(MorePrompt), 1);
  917.             }
  918. #endif /* MORE */
  919.             if (MSG_STDERR(flag) && ((Uz_Globs *)pG)->UzO.tflag &&
  920.                 !isatty(1) && isatty(2))
  921.             {
  922.                 /* error output from testing redirected:  also send to stderr */
  923.                 putc('n', stderr);
  924.                 fflush(stderr);
  925.             }
  926. #ifdef OS2DLL
  927.         } else
  928.            REDIRECTC('n');
  929. #endif
  930.         ((Uz_Globs *)pG)->sol = TRUE;
  931.     }
  932.     /* put zipfile name, filename and/or error/warning keywords here */
  933. #ifdef MORE
  934.     if (((Uz_Globs *)pG)->M_flag
  935. #ifdef OS2DLL
  936.          && !((Uz_Globs *)pG)->redirect_text
  937. #endif
  938.                                                  )
  939.     {
  940.         while (++p < endbuf) {
  941.             if (*p == 'n') {
  942.                 ++((Uz_Globs *)pG)->numlines;
  943.                 if (((Uz_Globs *)pG)->numlines %
  944.                     ((Uz_Globs *)pG)->height == 0L)    /* GRR: fix */
  945.                 {
  946.                     if ((error = WriteError(q, p-q+1, outfp)) != 0)
  947.                         return error;
  948.                     fflush(outfp);
  949.                     ((Uz_Globs *)pG)->sol = TRUE;
  950.                     q = p + 1;
  951.                     (*((Uz_Globs *)pG)->mpause)((zvoid *)pG,
  952.                       LoadFarString(MorePrompt), 1);
  953.                 }
  954.             }
  955.         } /* end while */
  956.         size = (ulg)(p - q);   /* remaining text */
  957.     }
  958. #endif /* MORE */
  959.     if (size) {
  960. #ifdef OS2DLL
  961.         if (!((Uz_Globs *)pG)->redirect_text) {
  962. #endif
  963.             if ((error = WriteError(q, size, outfp)) != 0)
  964.                 return error;
  965.             fflush(outfp);
  966.             if (MSG_STDERR(flag) && ((Uz_Globs *)pG)->UzO.tflag &&
  967.                 !isatty(1) && isatty(2))
  968.             {
  969.                 /* error output from testing redirected:  also send to stderr */
  970.                 if ((error = WriteError(q, size, stderr)) != 0)
  971.                     return error;
  972.                 fflush(stderr);
  973.             }
  974. #ifdef OS2DLL
  975.         } else {                /* GRR:  this is ugly:  hide with macro */
  976.             if ((error = REDIRECTPRINT(q, size)) != 0)
  977.                 return error;
  978.         }
  979. #endif
  980.         ((Uz_Globs *)pG)->sol = (endbuf[-1] == 'n');
  981.     }
  982.     return 0;
  983. } /* end function UzpMessagePrnt() */
  984. #ifdef DLL
  985. /*****************************/
  986. /* Function UzpMessageNull() */  /* convenience routine for no output at all */
  987. /*****************************/
  988. int UZ_EXP UzpMessageNull(pG, buf, size, flag)
  989.     zvoid *pG;    /* globals struct:  always passed */
  990.     uch *buf;     /* preformatted string to be printed */
  991.     ulg size;     /* length of string (may include nulls) */
  992.     int flag;     /* flag bits */
  993. {
  994.     return 0;
  995. } /* end function UzpMessageNull() */
  996. #endif /* DLL */
  997. /***********************/
  998. /* Function UzpInput() */   /* GRR:  this is a placeholder for now */
  999. /***********************/
  1000. int UZ_EXP UzpInput(pG, buf, size, flag)
  1001.     zvoid *pG;    /* globals struct:  always passed */
  1002.     uch *buf;     /* preformatted string to be printed */
  1003.     int *size;    /* (address of) size of buf and of returned string */
  1004.     int flag;     /* flag bits (bit 0: no echo) */
  1005. {
  1006.     /* tell picky compilers to shut up about "unused variable" warnings */
  1007.     pG = pG; buf = buf; flag = flag;
  1008.     *size = 0;
  1009.     return 0;
  1010. } /* end function UzpInput() */
  1011. #if (!defined(WINDLL) && !defined(MACOS))
  1012. /***************************/
  1013. /* Function UzpMorePause() */
  1014. /***************************/
  1015. void UZ_EXP UzpMorePause(pG, prompt, flag)
  1016.     zvoid *pG;            /* globals struct:  always passed */
  1017.     ZCONST char *prompt;  /* "--More--" prompt */
  1018.     int flag;             /* 0 = any char OK; 1 = accept only 'n', ' ', q */
  1019. {
  1020.     uch c;
  1021. /*---------------------------------------------------------------------------
  1022.     Print a prompt and wait for the user to press a key, then erase prompt
  1023.     if possible.
  1024.   ---------------------------------------------------------------------------*/
  1025.     if (!((Uz_Globs *)pG)->sol)
  1026.         fprintf(stderr, "n");
  1027.     /* numlines may or may not be used: */
  1028.     fprintf(stderr, prompt, ((Uz_Globs *)pG)->numlines);
  1029.     fflush(stderr);
  1030.     if (flag & 1) {
  1031.         do {
  1032.             c = (uch)FGETCH(0);
  1033.         } while (c != 'r' && c != 'n' && c != ' ' && c != 'q' && c != 'Q');
  1034.     } else
  1035.         c = (uch)FGETCH(0);
  1036.     /* newline was not echoed, so cover up prompt line */
  1037.     fprintf(stderr, LoadFarString(HidePrompt));
  1038.     fflush(stderr);
  1039.     if (ToLower(c) == 'q') {
  1040.         DESTROYGLOBALS()
  1041.         EXIT(PK_COOL);
  1042.     }
  1043.     ((Uz_Globs *)pG)->sol = TRUE;
  1044. } /* end function UzpMorePause() */
  1045. #endif /* !WINDLL && !MACOS */
  1046. #ifndef WINDLL
  1047. /**************************/
  1048. /* Function UzpPassword() */
  1049. /**************************/
  1050. int UZ_EXP UzpPassword (pG, rcnt, pwbuf, size, zfn, efn)
  1051.     zvoid *pG;         /* pointer to UnZip's internal global vars */
  1052.     int *rcnt;         /* retry counter */
  1053.     char *pwbuf;       /* buffer for password */
  1054.     int size;          /* size of password buffer */
  1055.     ZCONST char *zfn;  /* name of zip archive */
  1056.     ZCONST char *efn;  /* name of archive entry being processed */
  1057. {
  1058. #if CRYPT
  1059.     int r = IZ_PW_ENTERED;
  1060.     char *m;
  1061.     char *prompt;
  1062. #ifndef REENTRANT
  1063.     /* tell picky compilers to shut up about "unused variable" warnings */
  1064.     pG = pG;
  1065. #endif
  1066.     if (*rcnt == 0) {           /* First call for current entry */
  1067.         *rcnt = 2;
  1068.         if ((prompt = (char *)malloc(2*FILNAMSIZ + 15)) != (char *)NULL) {
  1069.             sprintf(prompt, LoadFarString(PasswPrompt),
  1070.                     FnFilter1(zfn), FnFilter2(efn));
  1071.             m = prompt;
  1072.         } else
  1073.             m = (char *)LoadFarString(PasswPrompt2);
  1074.     } else {                    /* Retry call, previous password was wrong */
  1075.         (*rcnt)--;
  1076.         prompt = NULL;
  1077.         m = (char *)LoadFarString(PasswRetry);
  1078.     }
  1079.     m = getp(__G__ m, pwbuf, size);
  1080.     if (prompt != (char *)NULL) {
  1081.         free(prompt);
  1082.     }
  1083.     if (m == (char *)NULL) {
  1084.         r = IZ_PW_ERROR;
  1085.     }
  1086.     else if (*pwbuf == '') {
  1087.         r = IZ_PW_CANCELALL;
  1088.     }
  1089.     return r;
  1090. #else /* !CRYPT */
  1091.     /* tell picky compilers to shut up about "unused variable" warnings */
  1092.     pG = pG; rcnt = rcnt; pwbuf = pwbuf; size = size; zfn = zfn; efn = efn;
  1093.     return IZ_PW_ERROR;  /* internal error; function should never get called */
  1094. #endif /* ?CRYPT */
  1095. } /* end function UzpPassword() */
  1096. /**********************/
  1097. /* Function handler() */
  1098. /**********************/
  1099. void handler(signal)   /* upon interrupt, turn on echo and exit cleanly */
  1100.     int signal;
  1101. {
  1102.     GETGLOBALS();
  1103. #if !(defined(SIGBUS) || defined(SIGSEGV))      /* add a newline if not at */
  1104.     (*G.message)((zvoid *)&G, slide, 0L, 0x41); /*  start of line (to stderr; */
  1105. #endif                                          /*  slide[] should be safe) */
  1106.     echon();
  1107. #ifdef SIGBUS
  1108.     if (signal == SIGBUS) {
  1109.         Info(slide, 0x421, ((char *)slide, LoadFarString(ZipfileCorrupt),
  1110.           "bus error"));
  1111.         DESTROYGLOBALS()
  1112.         EXIT(PK_BADERR);
  1113.     }
  1114. #endif /* SIGBUS */
  1115. #ifdef SIGSEGV
  1116.     if (signal == SIGSEGV) {
  1117.         Info(slide, 0x421, ((char *)slide, LoadFarString(ZipfileCorrupt),
  1118.           "segmentation violation"));
  1119.         DESTROYGLOBALS()
  1120.         EXIT(PK_BADERR);
  1121.     }
  1122. #endif /* SIGSEGV */
  1123.     /* probably ctrl-C */
  1124.     DESTROYGLOBALS()
  1125. #if defined(AMIGA) && defined(__SASC)
  1126.     _abort();
  1127. #endif
  1128.     EXIT(IZ_CTRLC);       /* was EXIT(0), then EXIT(PK_ERR) */
  1129. }
  1130. #endif /* !WINDLL */
  1131. #if (!defined(VMS) && !defined(CMS_MVS))
  1132. #if (!defined(OS2) || defined(TIMESTAMP))
  1133. #if (!defined(HAVE_MKTIME) || defined(AMIGA) || defined(WIN32))
  1134. /* also used in amiga/filedate.c and win32/win32.c */
  1135. ZCONST ush ydays[] =
  1136.     { 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365 };
  1137. #endif
  1138. /*******************************/
  1139. /* Function dos_to_unix_time() */ /* used for freshening/updating/timestamps */
  1140. /*******************************/
  1141. time_t dos_to_unix_time(dosdatetime)
  1142.     ulg dosdatetime;
  1143. {
  1144.     time_t m_time;
  1145. #ifdef HAVE_MKTIME
  1146.     ZCONST time_t now = time(NULL);
  1147.     struct tm *tm;
  1148. #   define YRBASE  1900
  1149.     tm = localtime(&now);
  1150.     tm->tm_isdst = -1;          /* let mktime determine if DST is in effect */
  1151.     /* dissect date */
  1152.     tm->tm_year = ((int)(dosdatetime >> 25) & 0x7f) + (1980 - YRBASE);
  1153.     tm->tm_mon  = ((int)(dosdatetime >> 21) & 0x0f) - 1;
  1154.     tm->tm_mday = ((int)(dosdatetime >> 16) & 0x1f);
  1155.     /* dissect time */
  1156.     tm->tm_hour = (int)((unsigned)dosdatetime >> 11) & 0x1f;
  1157.     tm->tm_min  = (int)((unsigned)dosdatetime >> 5) & 0x3f;
  1158.     tm->tm_sec  = (int)((unsigned)dosdatetime << 1) & 0x3e;
  1159.     m_time = mktime(tm);
  1160.     NATIVE_TO_TIMET(m_time)     /* NOP unless MSC 7.0 or Macintosh */
  1161.     TTrace((stderr, "  final m_time  =       %lun", (ulg)m_time));
  1162. #else /* !HAVE_MKTIME */
  1163.     int yr, mo, dy, hh, mm, ss;
  1164. #ifdef TOPS20
  1165. #   define YRBASE  1900
  1166.     struct tmx *tmx;
  1167.     char temp[20];
  1168. #else /* !TOPS20 */
  1169. #   define YRBASE  1970
  1170.     int leap;
  1171.     unsigned days;
  1172.     struct tm *tm;
  1173. #if (!defined(MACOS) && !defined(RISCOS) && !defined(QDOS) && !defined(TANDEM))
  1174. #ifdef WIN32
  1175.     TIME_ZONE_INFORMATION tzinfo;
  1176.     DWORD res;
  1177. #else /* ! WIN32 */
  1178. #ifndef BSD4_4   /* GRR:  change to !defined(MODERN) ? */
  1179. #if (defined(BSD) || defined(MTS) || defined(__GO32__))
  1180.     struct timeb tbp;
  1181. #else /* !(BSD || MTS || __GO32__) */
  1182. #ifdef DECLARE_TIMEZONE
  1183.     extern time_t timezone;
  1184. #endif
  1185. #endif /* ?(BSD || MTS || __GO32__) */
  1186. #endif /* !BSD4_4 */
  1187. #endif /* ?WIN32 */
  1188. #endif /* !MACOS && !RISCOS && !QDOS && !TANDEM */
  1189. #endif /* ?TOPS20 */
  1190.     /* dissect date */
  1191.     yr = ((int)(dosdatetime >> 25) & 0x7f) + (1980 - YRBASE);
  1192.     mo = ((int)(dosdatetime >> 21) & 0x0f) - 1;
  1193.     dy = ((int)(dosdatetime >> 16) & 0x1f) - 1;
  1194.     /* dissect time */
  1195.     hh = (int)((unsigned)dosdatetime >> 11) & 0x1f;
  1196.     mm = (int)((unsigned)dosdatetime >> 5) & 0x3f;
  1197.     ss = (int)((unsigned)dosdatetime & 0x1f) * 2;
  1198. #ifdef TOPS20
  1199.     tmx = (struct tmx *)malloc(sizeof(struct tmx));
  1200.     sprintf (temp, "%02d/%02d/%02d %02d:%02d:%02d", mo+1, dy+1, yr, hh, mm, ss);
  1201.     time_parse(temp, tmx, (char *)0);
  1202.     m_time = time_make(tmx);
  1203.     free(tmx);
  1204. #else /* !TOPS20 */
  1205. /*---------------------------------------------------------------------------
  1206.     Calculate the number of seconds since the epoch, usually 1 January 1970.
  1207.   ---------------------------------------------------------------------------*/
  1208.     /* leap = # of leap yrs from YRBASE up to but not including current year */
  1209.     leap = ((yr + YRBASE - 1) / 4);   /* leap year base factor */
  1210.     /* calculate days from BASE to this year and add expired days this year */
  1211.     days = (yr * 365) + (leap - 492) + ydays[mo];
  1212.     /* if year is a leap year and month is after February, add another day */
  1213.     if ((mo > 1) && ((yr+YRBASE)%4 == 0) && ((yr+YRBASE) != 2100))
  1214.         ++days;                 /* OK through 2199 */
  1215.     /* convert date & time to seconds relative to 00:00:00, 01/01/YRBASE */
  1216.     m_time = (time_t)((unsigned long)(days + dy) * 86400L +
  1217.                       (unsigned long)hh * 3600L +
  1218.                       (unsigned long)(mm * 60 + ss));
  1219.       /* - 1;   MS-DOS times always rounded up to nearest even second */
  1220.     TTrace((stderr, "dos_to_unix_time:n"));
  1221.     TTrace((stderr, "  m_time before timezone = %lun", (ulg)m_time));
  1222. /*---------------------------------------------------------------------------
  1223.     Adjust for local standard timezone offset.
  1224.   ---------------------------------------------------------------------------*/
  1225. #if (!defined(MACOS) && !defined(RISCOS) && !defined(QDOS) && !defined(TANDEM))
  1226. #ifdef WIN32
  1227.     /* account for timezone differences */
  1228.     res = GetTimeZoneInformation(&tzinfo);
  1229.     if (res != TIME_ZONE_ID_UNKNOWN)
  1230.     {
  1231.     m_time += 60*(tzinfo.Bias);
  1232. #else /* !WIN32 */
  1233. #if (defined(BSD) || defined(MTS) || defined(__GO32__))
  1234. #ifdef BSD4_4
  1235.     if ( (dosdatetime >= DOSTIME_2038_01_18) &&
  1236.          (m_time < (time_t)0x70000000L) )
  1237.         m_time = U_TIME_T_MAX;  /* saturate in case of (unsigned) overflow */
  1238.     if (m_time < (time_t)0L)    /* a converted DOS time cannot be negative */
  1239.         m_time = S_TIME_T_MAX;  /*  -> saturate at max signed time_t value */
  1240.     if ((tm = localtime(&m_time)) != (struct tm *)NULL)
  1241.         m_time -= tm->tm_gmtoff;                /* sec. EAST of GMT: subtr. */
  1242. #else /* !(BSD4_4 */
  1243.     ftime(&tbp);                                /* get `timezone' */
  1244.     m_time += tbp.timezone * 60L;               /* seconds WEST of GMT:  add */
  1245. #endif /* ?(BSD4_4 || __EMX__) */
  1246. #else /* !(BSD || MTS || __GO32__) */
  1247.     /* tzset was already called at start of process_zipfiles() */
  1248.     /* tzset(); */              /* set `timezone' variable */
  1249. #ifndef __BEOS__                /* BeOS DR8 has no timezones... */
  1250.     m_time += timezone;         /* seconds WEST of GMT:  add */
  1251. #endif
  1252. #endif /* ?(BSD || MTS || __GO32__) */
  1253. #endif /* ?WIN32 */
  1254.     TTrace((stderr, "  m_time after timezone =  %lun", (ulg)m_time));
  1255. /*---------------------------------------------------------------------------
  1256.     Adjust for local daylight savings (summer) time.
  1257.   ---------------------------------------------------------------------------*/
  1258. #ifndef BSD4_4  /* (DST already added to tm_gmtoff, so skip tm_isdst) */
  1259.     if ( (dosdatetime >= DOSTIME_2038_01_18) &&
  1260.          (m_time < (time_t)0x70000000L) )
  1261.         m_time = U_TIME_T_MAX;  /* saturate in case of (unsigned) overflow */
  1262.     if (m_time < (time_t)0L)    /* a converted DOS time cannot be negative */
  1263.         m_time = S_TIME_T_MAX;  /*  -> saturate at max signed time_t value */
  1264.     TIMET_TO_NATIVE(m_time)     /* NOP unless MSC 7.0 or Macintosh */
  1265.     if (((tm = localtime((time_t *)&m_time)) != NULL) && tm->tm_isdst)
  1266. #ifdef WIN32
  1267.         m_time += 60L * tzinfo.DaylightBias;    /* adjust with DST bias */
  1268.     else
  1269.         m_time += 60L * tzinfo.StandardBias;    /* add StdBias (normally 0) */
  1270. #else
  1271.         m_time -= 60L * 60L;    /* adjust for daylight savings time */
  1272. #endif
  1273.     NATIVE_TO_TIMET(m_time)     /* NOP unless MSC 7.0 or Macintosh */
  1274.     TTrace((stderr, "  m_time after DST =       %lun", (ulg)m_time));
  1275. #endif /* !BSD4_4 */
  1276. #ifdef WIN32
  1277.     }
  1278. #endif
  1279. #endif /* !MACOS && !RISCOS && !QDOS && !TANDEM */
  1280. #endif /* ?TOPS20 */
  1281. #endif /* ?HAVE_MKTIME */
  1282.     if ( (dosdatetime >= DOSTIME_2038_01_18) &&
  1283.          (m_time < (time_t)0x70000000L) )
  1284.         m_time = U_TIME_T_MAX;  /* saturate in case of (unsigned) overflow */
  1285.     if (m_time < (time_t)0L)    /* a converted DOS time cannot be negative */
  1286.         m_time = S_TIME_T_MAX;  /*  -> saturate at max signed time_t value */
  1287.     return m_time;
  1288. } /* end function dos_to_unix_time() */
  1289. #endif /* !OS2 || TIMESTAMP */
  1290. #endif /* !VMS && !CMS_MVS */
  1291. #if (!defined(VMS) && !defined(OS2) && !defined(CMS_MVS))
  1292. /******************************/
  1293. /* Function check_for_newer() */  /* used for overwriting/freshening/updating */
  1294. /******************************/
  1295. int check_for_newer(__G__ filename)  /* return 1 if existing file is newer */
  1296.     __GDEF                           /*  or equal; 0 if older; -1 if doesn't */
  1297.     char *filename;                  /*  exist yet */
  1298. {
  1299.     time_t existing, archive;
  1300. #ifdef USE_EF_UT_TIME
  1301.     iztimes z_utime;
  1302. #endif
  1303. #ifdef AOS_VS
  1304.     long    dyy, dmm, ddd, dhh, dmin, dss;
  1305.     dyy = (lrec.last_mod_dos_datetime >> 25) + 1980;
  1306.     dmm = (lrec.last_mod_dos_datetime >> 21) & 0x0f;
  1307.     ddd = (lrec.last_mod_dos_datetime >> 16) & 0x1f;
  1308.     dhh = (lrec.last_mod_dos_datetime >> 11) & 0x1f;
  1309.     dmin = (lrec.last_mod_dos_datetime >> 5) & 0x3f;
  1310.     dss = (lrec.last_mod_dos_datetime & 0x1f) * 2;
  1311.     /* under AOS/VS, file times can only be set at creation time,
  1312.      * with the info in a special DG format.  Make sure we can create
  1313.      * it here - we delete it later & re-create it, whether or not
  1314.      * it exists now.
  1315.      */
  1316.     if (!zvs_create(filename, (((ulg)dgdate(dmm, ddd, dyy)) << 16) |
  1317.         (dhh*1800L + dmin*30L + dss/2L), -1L, -1L, (char *) -1, -1, -1, -1))
  1318.         return DOES_NOT_EXIST;
  1319. #endif /* AOS_VS */
  1320.     Trace((stderr, "check_for_newer:  doing stat(%s)n", FnFilter1(filename)));
  1321.     if (SSTAT(filename, &G.statbuf)) {
  1322.         Trace((stderr,
  1323.           "check_for_newer:  stat(%s) returns %d:  file does not existn",
  1324.           FnFilter1(filename), SSTAT(filename, &G.statbuf)));
  1325. #ifdef SYMLINKS
  1326.         Trace((stderr, "check_for_newer:  doing lstat(%s)n",
  1327.           FnFilter1(filename)));
  1328.         /* GRR OPTION:  could instead do this test ONLY if G.symlnk is true */
  1329.         if (lstat(filename, &G.statbuf) == 0) {
  1330.             Trace((stderr,
  1331.               "check_for_newer:  lstat(%s) returns 0:  symlink does existn",
  1332.               FnFilter1(filename)));
  1333.             if (QCOND2 && !uO.overwrite_all)
  1334.                 Info(slide, 0, ((char *)slide, LoadFarString(FileIsSymLink),
  1335.                   FnFilter1(filename), " with no real file"));
  1336.             return EXISTS_AND_OLDER;   /* symlink dates are meaningless */
  1337.         }
  1338. #endif /* SYMLINKS */
  1339.         return DOES_NOT_EXIST;
  1340.     }
  1341.     Trace((stderr, "check_for_newer:  stat(%s) returns 0:  file existsn",
  1342.       FnFilter1(filename)));
  1343. #ifdef SYMLINKS
  1344.     /* GRR OPTION:  could instead do this test ONLY if G.symlnk is true */
  1345.     if (lstat(filename, &G.statbuf) == 0 && S_ISLNK(G.statbuf.st_mode)) {
  1346.         Trace((stderr, "check_for_newer:  %s is a symbolic linkn",
  1347.           FnFilter1(filename)));
  1348.         if (QCOND2 && !uO.overwrite_all)
  1349.             Info(slide, 0, ((char *)slide, LoadFarString(FileIsSymLink),
  1350.               FnFilter1(filename), ""));
  1351.         return EXISTS_AND_OLDER;   /* symlink dates are meaningless */
  1352.     }
  1353. #endif /* SYMLINKS */
  1354.     NATIVE_TO_TIMET(G.statbuf.st_mtime)   /* NOP unless MSC 7.0 or Macintosh */
  1355. #ifdef USE_EF_UT_TIME
  1356.     /* The `Unix extra field mtime' should be used for comparison with the
  1357.      * time stamp of the existing file >>>ONLY<<< when the EF info is also
  1358.      * used to set the modification time of the extracted file.
  1359.      */
  1360.     if (G.extra_field &&
  1361. #ifdef IZ_CHECK_TZ
  1362.         G.tz_is_valid &&
  1363. #endif
  1364.         (ef_scan_for_izux(G.extra_field, G.lrec.extra_field_length, 0,
  1365.                           G.lrec.last_mod_dos_datetime, &z_utime, NULL)
  1366.          & EB_UT_FL_MTIME))
  1367.     {
  1368.         TTrace((stderr, "check_for_newer:  using Unix extra field mtimen"));
  1369.         existing = G.statbuf.st_mtime;
  1370.         archive  = z_utime.mtime;
  1371.     } else {
  1372.         /* round up existing filetime to nearest 2 seconds for comparison,
  1373.          * but saturate in case of arithmetic overflow
  1374.          */
  1375.         existing = ((G.statbuf.st_mtime & 1) &&
  1376.                     (G.statbuf.st_mtime + 1 > G.statbuf.st_mtime)) ?
  1377.                    G.statbuf.st_mtime + 1 : G.statbuf.st_mtime;
  1378.         archive  = dos_to_unix_time(G.lrec.last_mod_dos_datetime);
  1379.     }
  1380. #else /* !USE_EF_UT_TIME */
  1381.     /* round up existing filetime to nearest 2 seconds for comparison,
  1382.      * but saturate in case of arithmetic overflow
  1383.      */
  1384.     existing = ((G.statbuf.st_mtime & 1) &&
  1385.                 (G.statbuf.st_mtime + 1 > G.statbuf.st_mtime)) ?
  1386.                G.statbuf.st_mtime + 1 : G.statbuf.st_mtime;
  1387.     archive  = dos_to_unix_time(G.lrec.last_mod_dos_datetime);
  1388. #endif /* ?USE_EF_UT_TIME */
  1389.     TTrace((stderr, "check_for_newer:  existing %lu, archive %lu, e-a %ldn",
  1390.       (ulg)existing, (ulg)archive, (long)(existing-archive)));
  1391.     return (existing >= archive);
  1392. } /* end function check_for_newer() */
  1393. #endif /* !VMS && !OS2 && !CMS_MVS */
  1394. /************************/
  1395. /* Function do_string() */
  1396. /************************/
  1397. int do_string(__G__ len, option)      /* return PK-type error code */
  1398.     __GDEF
  1399.     unsigned int len;           /* without prototype, ush converted to this */
  1400.     int option;
  1401. {
  1402.     long comment_bytes_left, block_length;
  1403.     int error=PK_OK;
  1404.     ush extra_len;
  1405. #ifdef AMIGA
  1406.     char tmp_fnote[2 * AMIGA_FILENOTELEN];   /* extra room for squozen chars */
  1407. #endif
  1408. /*---------------------------------------------------------------------------
  1409.     This function processes arbitrary-length (well, usually) strings.  Four
  1410.     options are allowed:  SKIP, wherein the string is skipped (pretty logical,
  1411.     eh?); DISPLAY, wherein the string is printed to standard output after un-
  1412.     dergoing any necessary or unnecessary character conversions; DS_FN,
  1413.     wherein the string is put into the filename[] array after undergoing ap-
  1414.     propriate conversions (including case-conversion, if that is indicated:
  1415.     see the global variable pInfo->lcflag); and EXTRA_FIELD, wherein the
  1416.     `string' is assumed to be an extra field and is copied to the (freshly
  1417.     malloced) buffer G.extra_field.  The third option should be OK since
  1418.     filename is dimensioned at 1025, but we check anyway.
  1419.     The string, by the way, is assumed to start at the current file-pointer
  1420.     position; its length is given by len.  So start off by checking length
  1421.     of string:  if zero, we're already done.
  1422.   ---------------------------------------------------------------------------*/
  1423.     if (!len)
  1424.         return PK_COOL;
  1425.     switch (option) {
  1426.     /*
  1427.      * First case:  print string on standard output.  First set loop vari-
  1428.      * ables, then loop through the comment in chunks of OUTBUFSIZ bytes,
  1429.      * converting formats and printing as we go.  The second half of the
  1430.      * loop conditional was added because the file might be truncated, in
  1431.      * which case comment_bytes_left will remain at some non-zero value for
  1432.      * all time.  outbuf and slide are used as scratch buffers because they
  1433.      * are available (we should be either before or in between any file pro-
  1434.      * cessing).
  1435.      */
  1436.     case DISPLAY:
  1437.     case DISPL_8:
  1438.         comment_bytes_left = len;
  1439.         block_length = OUTBUFSIZ;    /* for the while statement, first time */
  1440.         while (comment_bytes_left > 0 && block_length > 0) {
  1441.             register uch *p = G.outbuf;
  1442.             register uch *q = G.outbuf;
  1443.             if ((block_length = readbuf(__G__ (char *)G.outbuf,
  1444.                    (unsigned) MIN((long)OUTBUFSIZ, comment_bytes_left))) == 0)
  1445.                 return PK_EOF;
  1446.             comment_bytes_left -= block_length;
  1447.             /* this is why we allocated an extra byte for outbuf:  terminate
  1448.              *  with zero (ASCIIZ) */
  1449.             G.outbuf[(unsigned)block_length] = '';
  1450.             /* remove all ASCII carriage returns from comment before printing
  1451.              * (since used before A_TO_N(), check for CR instead of 'r')
  1452.              */
  1453.             while (*p) {
  1454.                 while (*p == CR)
  1455.                     ++p;
  1456.                 *q++ = *p++;
  1457.             }
  1458.             /* could check whether (p - outbuf) == block_length here */
  1459.             *q = '';
  1460.             if (option == DISPL_8) {
  1461.                 /* translate the text coded in the entry's host-dependent
  1462.                    "extended ASCII" charset into the compiler's (system's)
  1463.                    internal text code page */
  1464.                 Ext_ASCII_TO_Native((char *)G.outbuf, G.pInfo->hostnum,
  1465.                                     G.crec.version_made_by[0]);
  1466. #ifdef WINDLL
  1467.                 /* translate to ANSI (RTL internal codepage may be OEM) */
  1468.                 INTERN_TO_ISO((char *)G.outbuf, (char *)G.outbuf);
  1469. #else /* !WINDLL */
  1470. #ifdef WIN32
  1471.                 /* Win9x console always uses OEM character coding, and
  1472.                    WinNT console is set to OEM charset by default, too */
  1473.                 INTERN_TO_OEM((char *)G.outbuf, (char *)G.outbuf);
  1474. #endif /* WIN32 */
  1475. #endif /* ?WINDLL */
  1476.             } else {
  1477.                 A_TO_N(G.outbuf);   /* translate string to native */
  1478.             }
  1479. #ifdef WINDLL
  1480.             /* ran out of local mem -- had to cheat */
  1481.             win_fprintf((zvoid *)&G, stdout, len, (char *)G.outbuf);
  1482.             win_fprintf((zvoid *)&G, stdout, 2, (char *)"nn");
  1483. #else /* !WINDLL */
  1484. #ifdef NOANSIFILT       /* GRR:  can ANSI be used with EBCDIC? */
  1485.             (*G.message)((zvoid *)&G, G.outbuf, (ulg)(q-G.outbuf), 0);
  1486. #else /* ASCII, filter out ANSI escape sequences and handle ^S (pause) */
  1487.             p = G.outbuf - 1;
  1488.             q = slide;
  1489.             while (*++p) {
  1490.                 int pause = FALSE;
  1491.                 if (*p == 0x1B) {          /* ASCII escape char */
  1492.                     *q++ = '^';
  1493.                     *q++ = '[';
  1494.                 } else if (*p == 0x13) {   /* ASCII ^S (pause) */
  1495.                     pause = TRUE;
  1496.                     if (p[1] == LF)        /* ASCII LF */
  1497.                         *q++ = *++p;
  1498.                     else if (p[1] == CR && p[2] == LF) {  /* ASCII CR LF */
  1499.                         *q++ = *++p;
  1500.                         *q++ = *++p;
  1501.                     }
  1502.                 } else
  1503.                     *q++ = *p;
  1504.                 if ((unsigned)(q-slide) > WSIZE-3 || pause) {   /* flush */
  1505.                     (*G.message)((zvoid *)&G, slide, (ulg)(q-slide), 0);
  1506.                     q = slide;
  1507.                     if (pause && G.extract_flag) /* don't pause for list/test */
  1508.                         (*G.mpause)((zvoid *)&G, LoadFarString(QuitPrompt), 0);
  1509.                 }
  1510.             }
  1511.             (*G.message)((zvoid *)&G, slide, (ulg)(q-slide), 0);
  1512. #endif /* ?NOANSIFILT */
  1513. #endif /* ?WINDLL */
  1514.         }
  1515.         /* add 'n' if not at start of line */
  1516.         (*G.message)((zvoid *)&G, slide, 0L, 0x40);
  1517.         break;
  1518.     /*
  1519.      * Second case:  read string into filename[] array.  The filename should
  1520.      * never ever be longer than FILNAMSIZ-1 (1024), but for now we'll check,
  1521.      * just to be sure.
  1522.      */
  1523.     case DS_FN:
  1524.         extra_len = 0;
  1525.         if (len >= FILNAMSIZ) {
  1526.             Info(slide, 0x401, ((char *)slide,
  1527.               LoadFarString(FilenameTooLongTrunc)));
  1528.             error = PK_WARN;
  1529.             extra_len = (ush)(len - FILNAMSIZ + 1);
  1530.             len = FILNAMSIZ - 1;
  1531.         }
  1532.         if (readbuf(__G__  G.filename, len) == 0)
  1533.             return PK_EOF;
  1534.         G.filename[len] = '';   /* terminate w/zero:  ASCIIZ */
  1535.         /* translate the Zip entry filename coded in host-dependent "extended
  1536.            ASCII" into the compiler's (system's) internal text code page */
  1537.         Ext_ASCII_TO_Native(G.filename, G.pInfo->hostnum,
  1538.                             G.crec.version_made_by[0]);
  1539.         if (G.pInfo->lcflag)      /* replace with lowercase filename */
  1540.             TOLOWER(G.filename, G.filename);
  1541.         if (G.pInfo->vollabel && len > 8 && G.filename[8] == '.') {
  1542.             char *p = G.filename+8;
  1543.             while (*p++)
  1544.                 p[-1] = *p;  /* disk label, and 8th char is dot:  remove dot */
  1545.         }
  1546.         if (!extra_len)         /* we're done here */
  1547.             break;
  1548.         /*
  1549.          * We truncated the filename, so print what's left and then fall
  1550.          * through to the SKIP routine.
  1551.          */
  1552.         Info(slide, 0x401, ((char *)slide, "[ %s ]n", FnFilter1(G.filename)));
  1553.         len = extra_len;
  1554.         /*  FALL THROUGH...  */
  1555.     /*
  1556.      * Third case:  skip string, adjusting readbuf's internal variables
  1557.      * as necessary (and possibly skipping to and reading a new block of
  1558.      * data).
  1559.      */
  1560.     case SKIP:
  1561.         /* cur_zipfile_bufstart already takes account of extra_bytes, so don't
  1562.          * correct for it twice: */
  1563.         ZLSEEK(G.cur_zipfile_bufstart - G.extra_bytes +
  1564.                (G.inptr-G.inbuf) + len)
  1565.         break;
  1566.     /*
  1567.      * Fourth case:  assume we're at the start of an "extra field"; malloc
  1568.      * storage for it and read data into the allocated space.
  1569.      */
  1570.     case EXTRA_FIELD:
  1571.         if (G.extra_field != (uch *)NULL)
  1572.             free(G.extra_field);
  1573.         if ((G.extra_field = (uch *)malloc(len)) == (uch *)NULL) {
  1574.             Info(slide, 0x401, ((char *)slide, LoadFarString(ExtraFieldTooLong),
  1575.               len));
  1576.             /* cur_zipfile_bufstart already takes account of extra_bytes,
  1577.              * so don't correct for it twice: */
  1578.             ZLSEEK(G.cur_zipfile_bufstart - G.extra_bytes +
  1579.                    (G.inptr-G.inbuf) + len)
  1580.         } else
  1581.             if (readbuf(__G__  (char *)G.extra_field, len) == 0)
  1582.                 return PK_EOF;
  1583.         break;
  1584. #ifdef AMIGA
  1585.     /*
  1586.      * Fifth case, for the Amiga only:  take the comment that would ordinarily
  1587.      * be skipped over, and turn it into a 79 character string that will be
  1588.      * attached to the file as a "filenote" after it is extracted.
  1589.      */
  1590.     case FILENOTE:
  1591.         if ((extra_len = readbuf(__G__ tmp_fnote, (unsigned)
  1592.                                  MIN(len, 2 * AMIGA_FILENOTELEN - 1))) == 0)
  1593.             return PK_EOF;
  1594.         if ((len -= extra_len) > 0)     /* treat remainder as in case SKIP: */
  1595.             ZLSEEK(G.cur_zipfile_bufstart - G.extra_bytes
  1596.                    + (G.inptr - G.inbuf) + len)
  1597.         /* convert multi-line text into single line with no ctl-chars: */
  1598.         tmp_fnote[extra_len] = '';
  1599.         while ((short int) --extra_len >= 0)
  1600.             if ((unsigned) tmp_fnote[extra_len] < ' ')
  1601.                 if (tmp_fnote[extra_len+1] == ' ')     /* no excess */
  1602.                     strcpy(tmp_fnote+extra_len, tmp_fnote+extra_len+1);
  1603.                 else
  1604.                     tmp_fnote[extra_len] = ' ';
  1605.         tmp_fnote[AMIGA_FILENOTELEN - 1] = '';
  1606.         if (G.filenotes[G.filenote_slot])
  1607.             free(G.filenotes[G.filenote_slot]);     /* should not happen */
  1608.         G.filenotes[G.filenote_slot] = NULL;
  1609.         if (tmp_fnote[0]) {
  1610.             if (!(G.filenotes[G.filenote_slot] = malloc(strlen(tmp_fnote)+1)))
  1611.                 return PK_MEM;
  1612.             strcpy(G.filenotes[G.filenote_slot], tmp_fnote);
  1613.         }
  1614.         break;
  1615. #endif /* AMIGA */
  1616.     } /* end switch (option) */
  1617.     return error;
  1618. } /* end function do_string() */
  1619. /***********************/
  1620. /* Function makeword() */
  1621. /***********************/
  1622. ush makeword(b)
  1623.     ZCONST uch *b;
  1624. {
  1625.     /*
  1626.      * Convert Intel style 'short' integer to non-Intel non-16-bit
  1627.      * host format.  This routine also takes care of byte-ordering.
  1628.      */
  1629.     return (ush)((b[1] << 8) | b[0]);
  1630. }
  1631. /***********************/
  1632. /* Function makelong() */
  1633. /***********************/
  1634. ulg makelong(sig)
  1635.     ZCONST uch *sig;
  1636. {
  1637.     /*
  1638.      * Convert intel style 'long' variable to non-Intel non-16-bit
  1639.      * host format.  This routine also takes care of byte-ordering.
  1640.      */
  1641.     return (((ulg)sig[3]) << 24)
  1642.         + (((ulg)sig[2]) << 16)
  1643.         + (((ulg)sig[1]) << 8)
  1644.         + ((ulg)sig[0]);
  1645. }
  1646. #if CRYPT
  1647. #ifdef NEED_STR2ISO
  1648. /**********************/
  1649. /* Function str2iso() */
  1650. /**********************/
  1651. char *str2iso(dst, src)
  1652.     char *dst;                          /* destination buffer */
  1653.     register ZCONST char *src;          /* source string */
  1654. {
  1655. #ifdef INTERN_TO_ISO
  1656.     INTERN_TO_ISO(src, dst);
  1657. #else
  1658.     register uch c;
  1659.     register char *dstp = dst;
  1660.     do {
  1661.         c = (uch)foreign(*src++);
  1662.         *dstp++ = (char)ASCII2ISO(c);
  1663.     } while (c != '');
  1664. #endif
  1665.     return dst;
  1666. }
  1667. #endif /* NEED_STR2ISO */
  1668. #ifdef NEED_STR2OEM
  1669. /**********************/
  1670. /* Function str2oem() */
  1671. /**********************/
  1672. char *str2oem(dst, src)
  1673.     char *dst;                          /* destination buffer */
  1674.     register ZCONST char *src;          /* source string */
  1675. {
  1676. #ifdef INTERN_TO_OEM
  1677.     INTERN_TO_OEM(src, dst);
  1678. #else
  1679.     register uch c;
  1680.     register char *dstp = dst;
  1681.     do {
  1682.         c = (uch)foreign(*src++);
  1683.         *dstp++ = (char)ASCII2OEM(c);
  1684.     } while (c != '');
  1685. #endif
  1686.     return dst;
  1687. }
  1688. #endif /* NEED_STR2OEM */
  1689. #endif /* CRYPT */
  1690. #ifdef ZMEM  /* memset/memcmp/memcpy for systems without either them or */
  1691.              /* bzero/bcmp/bcopy */
  1692.              /* (no known systems as of 960211) */
  1693. /*********************/
  1694. /* Function memset() */
  1695. /*********************/
  1696. zvoid *memset(buf, init, len)
  1697.     register zvoid *buf;        /* buffer location */
  1698.     register int init;          /* initializer character */
  1699.     register unsigned int len;  /* length of the buffer */
  1700. {
  1701.     zvoid *start;
  1702.     start = buf;
  1703.     while (len--)
  1704.         *((char *)buf++) = (char)init;
  1705.     return start;
  1706. }
  1707. /*********************/
  1708. /* Function memcmp() */
  1709. /*********************/
  1710. int memcmp(b1, b2, len)
  1711.     register ZCONST zvoid *b1;
  1712.     register ZCONST zvoid *b2;
  1713.     register unsigned int len;
  1714. {
  1715.     register int c;
  1716.     if (len > 0) do {
  1717.         if ((c = (int)(*((ZCONST unsigned char *)b1)++) -
  1718.                  (int)(*((ZCONST unsigned char *)b2)++)) != 0)
  1719.            return c;
  1720.     } while (--len > 0)
  1721.     return 0;
  1722. }
  1723. /*********************/
  1724. /* Function memcpy() */
  1725. /*********************/
  1726. zvoid *memcpy(dst, src, len)
  1727.     register zvoid *dst;
  1728.     register ZCONST zvoid *src;
  1729.     register unsigned int len;
  1730. {
  1731.     zvoid *start;
  1732.     start = dst;
  1733.     while (len-- > 0)
  1734.         *((char *)dst)++ = *((ZCONST char *)src)++;
  1735.     return start;
  1736. }
  1737. #endif /* ZMEM */
  1738. /************************/
  1739. /* Function zstrnicmp() */
  1740. /************************/
  1741. int zstrnicmp(s1, s2, n)
  1742.     register ZCONST char *s1, *s2;
  1743.     register unsigned n;
  1744. {
  1745.     for (; n > 0;  --n, ++s1, ++s2) {
  1746.         if (ToLower(*s1) != ToLower(*s2))
  1747.             /* test includes early termination of one string */
  1748.             return (ToLower(*s1) < ToLower(*s2))? -1 : 1;
  1749.         if (*s1 == '')   /* both strings terminate early */
  1750.             return 0;
  1751.     }
  1752.     return 0;
  1753. }
  1754. #ifdef REGULUS  /* returns the inode number on success(!)...argh argh argh */
  1755. #  undef stat
  1756. /********************/
  1757. /* Function zstat() */
  1758. /********************/
  1759. int zstat(p, s)
  1760.     char *p;
  1761.     struct stat *s;
  1762. {
  1763.     return (stat(p,s) >= 0? 0 : (-1));
  1764. }
  1765. #endif /* REGULUS */
  1766. #ifdef SMALL_MEM
  1767. /*******************************/
  1768. /*  Function fLoadFarString()  */   /* (and friends...) */
  1769. /*******************************/
  1770. char *fLoadFarString(__GPRO__ const char Far *sz)
  1771. {
  1772.     (void)zfstrcpy(G.rgchBigBuffer, sz);
  1773.     return G.rgchBigBuffer;
  1774. }
  1775. char *fLoadFarStringSmall(__GPRO__ const char Far *sz)
  1776. {
  1777.     (void)zfstrcpy(G.rgchSmallBuffer, sz);
  1778.     return G.rgchSmallBuffer;
  1779. }
  1780. char *fLoadFarStringSmall2(__GPRO__ const char Far *sz)
  1781. {
  1782.     (void)zfstrcpy(G.rgchSmallBuffer2, sz);
  1783.     return G.rgchSmallBuffer2;
  1784. }
  1785. #if (!defined(_MSC_VER) || (_MSC_VER < 600))
  1786. /*************************/
  1787. /*  Function zfstrcpy()  */   /* portable clone of _fstrcpy() */
  1788. /*************************/
  1789. char Far * Far zfstrcpy(char Far *s1, const char Far *s2)
  1790. {
  1791.     char Far *p = s1;
  1792.     while ((*s1++ = *s2++) != '');
  1793.     return p;
  1794. }
  1795. #endif /* !_MSC_VER || (_MSC_VER < 600) */
  1796. #endif /* SMALL_MEM */