home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 9 Archive / 09-Archive.zip / zip201.zip / os2 / os2zip.c < prev    next >
C/C++ Source or Header  |  1993-09-07  |  21KB  |  974 lines

  1. /*
  2.  * @(#)dir.c 1.4 87/11/06 Public Domain.
  3.  *
  4.  *  A public domain implementation of BSD directory routines for
  5.  *  MS-DOS.  Written by Michael Rendell ({uunet,utai}michael@garfield),
  6.  *  August 1897
  7.  *  Ported to OS/2 by Kai Uwe Rommel
  8.  *  December 1989, February 1990
  9.  *  Change for HPFS support, October 1990
  10.  */
  11.  
  12. /* does also contain EA access code for use in ZIP */
  13.  
  14.  
  15. #ifdef OS2
  16.  
  17.  
  18. #if defined(__EMX__) && !defined(__32BIT__)
  19. #  define __32BIT__
  20. #endif
  21.  
  22. #include "zip.h"
  23.  
  24. #include <stdlib.h>
  25. #include <time.h>
  26. #include <ctype.h>
  27. #ifndef __BORLANDC__
  28. #include <malloc.h>
  29. #endif
  30.  
  31. #define INCL_NOPM
  32. #define INCL_DOSNLS
  33. #define INCL_DOSERRORS
  34. #include <os2.h>
  35.  
  36. #include "os2zip.h"
  37.  
  38.  
  39. #ifndef max
  40. #define max(a, b) ((a) < (b) ? (b) : (a))
  41. #endif
  42.  
  43. #define EAID     0x0009
  44.  
  45.  
  46. #ifdef __WATCOMC__
  47. unsigned char __near _osmode = OS2_MODE;
  48. #endif
  49.  
  50.  
  51. #ifdef __32BIT__
  52. #define DosFindFirst(p1, p2, p3, p4, p5, p6) \
  53.         DosFindFirst(p1, p2, p3, p4, p5, p6, 1)
  54. #else
  55. #define DosQueryCurrentDisk DosQCurDisk
  56. #define DosQueryFSAttach(p1, p2, p3, p4, p5) \
  57.         DosQFSAttach(p1, p2, p3, p4, p5, 0)
  58. #define DosQueryFSInfo(d, l, b, s) \
  59.         DosQFSInfo(d, l, b, s)
  60. #define DosQueryPathInfo(p1, p2, p3, p4) \
  61.         DosQPathInfo(p1, p2, p3, p4, 0)
  62. #define DosSetPathInfo(p1, p2, p3, p4, p5) \
  63.         DosSetPathInfo(p1, p2, p3, p4, p5, 0)
  64. #define DosEnumAttribute(p1, p2, p3, p4, p5, p6, p7) \
  65.         DosEnumAttribute(p1, p2, p3, p4, p5, p6, p7, 0)
  66. #define DosFindFirst(p1, p2, p3, p4, p5, p6) \
  67.         DosFindFirst(p1, p2, p3, p4, p5, p6, 0)
  68. #define DosMapCase DosCaseMap
  69. #endif
  70.  
  71.  
  72. #ifndef UTIL
  73.  
  74. extern int noisy;
  75.  
  76. #ifndef S_IFMT
  77. #define S_IFMT 0xF000
  78. #endif
  79.  
  80. static int attributes = _A_DIR | _A_HIDDEN | _A_SYSTEM;
  81.  
  82. static char *getdirent(char *);
  83. static void free_dircontents(struct _dircontents *);
  84.  
  85. #ifdef __32BIT__
  86. static HDIR hdir;
  87. static ULONG count;
  88. static FILEFINDBUF3 find;
  89. #else
  90. static HDIR hdir;
  91. static USHORT count;
  92. static FILEFINDBUF find;
  93. #endif
  94.  
  95.  
  96. DIR *opendir(char *name)
  97. {
  98.   struct stat statb;
  99.   DIR *dirp;
  100.   char c;
  101.   char *s;
  102.   struct _dircontents *dp;
  103.   char nbuf[MAXPATHLEN + 1];
  104.   int len;
  105.  
  106.   attributes = hidden_files ? (_A_DIR | _A_HIDDEN | _A_SYSTEM) : _A_DIR;
  107.  
  108.   strcpy(nbuf, name);
  109.   len = strlen (nbuf);
  110.   s = nbuf + len;
  111.  
  112.   if ( ((c = nbuf[strlen(nbuf) - 1]) == '\\' || c == '/') &&
  113.        (strlen(nbuf) > 1) )
  114.   {
  115.     nbuf[strlen(nbuf) - 1] = 0;
  116.  
  117.     if ( nbuf[strlen(nbuf) - 1] == ':' )
  118.       strcat(nbuf, "\\.");
  119.   }
  120.   else
  121.     if ( nbuf[strlen(nbuf) - 1] == ':' )
  122.       strcat(nbuf, ".");
  123.  
  124. #ifndef __BORLANDC__
  125.   /* when will we ever see a Borland compiler that can properly stat !!! */
  126.   if (stat(nbuf, &statb) < 0 || (statb.st_mode & S_IFMT) != S_IFDIR)
  127.     return NULL;
  128. #endif
  129.  
  130.   if ( (dirp = malloc(sizeof(DIR))) == NULL )
  131.     return NULL;
  132.  
  133.   if ( nbuf[strlen(nbuf) - 1] == '.' )
  134.     strcpy(nbuf + strlen(nbuf) - 1, "*.*");
  135.   else
  136.     if ( ((c = nbuf[strlen(nbuf) - 1]) == '\\' || c == '/') &&
  137.          (strlen(nbuf) == 1) )
  138.       strcat(nbuf, "*.*");
  139.     else
  140.       strcat(nbuf, "\\*.*");
  141.  
  142.   dirp -> dd_loc = 0;
  143.   dirp -> dd_contents = dirp -> dd_cp = NULL;
  144.  
  145.   if ((s = getdirent(nbuf)) == NULL)
  146.     return dirp;
  147.  
  148.   do
  149.   {
  150.     if (((dp = malloc(sizeof(struct _dircontents))) == NULL) ||
  151.         ((dp -> _d_entry = malloc(strlen(s) + 1)) == NULL)      )
  152.     {
  153.       if (dp)
  154.         free(dp);
  155.       free_dircontents(dirp -> dd_contents);
  156.  
  157.       return NULL;
  158.     }
  159.  
  160.     if (dirp -> dd_contents)
  161.     {
  162.       dirp -> dd_cp -> _d_next = dp;
  163.       dirp -> dd_cp = dirp -> dd_cp -> _d_next;
  164.     }
  165.     else
  166.       dirp -> dd_contents = dirp -> dd_cp = dp;
  167.  
  168.     strcpy(dp -> _d_entry, s);
  169.     dp -> _d_next = NULL;
  170.  
  171.     dp -> _d_size = find.cbFile;
  172.     dp -> _d_mode = find.attrFile;
  173.     dp -> _d_time = *(unsigned *) &(find.ftimeLastWrite);
  174.     dp -> _d_date = *(unsigned *) &(find.fdateLastWrite);
  175.   }
  176.   while ((s = getdirent(NULL)) != NULL);
  177.  
  178.   dirp -> dd_cp = dirp -> dd_contents;
  179.  
  180.   return dirp;
  181. }
  182.  
  183.  
  184. void closedir(DIR * dirp)
  185. {
  186.   free_dircontents(dirp -> dd_contents);
  187.   free(dirp);
  188. }
  189.  
  190.  
  191. struct direct *readdir(DIR * dirp)
  192. {
  193.   static struct direct dp;
  194.  
  195.   if (dirp -> dd_cp == NULL)
  196.     return NULL;
  197.  
  198.   dp.d_namlen = dp.d_reclen =
  199.     strlen(strcpy(dp.d_name, dirp -> dd_cp -> _d_entry));
  200.  
  201.   dp.d_ino = 0;
  202.  
  203.   dp.d_size = dirp -> dd_cp -> _d_size;
  204.   dp.d_mode = dirp -> dd_cp -> _d_mode;
  205.   dp.d_time = dirp -> dd_cp -> _d_time;
  206.   dp.d_date = dirp -> dd_cp -> _d_date;
  207.  
  208.   dirp -> dd_cp = dirp -> dd_cp -> _d_next;
  209.   dirp -> dd_loc++;
  210.  
  211.   return &dp;
  212. }
  213.  
  214.  
  215. void seekdir(DIR * dirp, long off)
  216. {
  217.   long i = off;
  218.   struct _dircontents *dp;
  219.  
  220.   if (off >= 0)
  221.   {
  222.     for (dp = dirp -> dd_contents; --i >= 0 && dp; dp = dp -> _d_next);
  223.  
  224.     dirp -> dd_loc = off - (i + 1);
  225.     dirp -> dd_cp = dp;
  226.   }
  227. }
  228.  
  229.  
  230. long telldir(DIR * dirp)
  231. {
  232.   return dirp -> dd_loc;
  233. }
  234.  
  235.  
  236. static void free_dircontents(struct _dircontents * dp)
  237. {
  238.   struct _dircontents *odp;
  239.  
  240.   while (dp)
  241.   {
  242.     if (dp -> _d_entry)
  243.       free(dp -> _d_entry);
  244.  
  245.     dp = (odp = dp) -> _d_next;
  246.     free(odp);
  247.   }
  248. }
  249.  
  250.  
  251. static char *getdirent(char *dir)
  252. {
  253.   int done;
  254.   static int lower;
  255.  
  256.   if (dir != NULL)
  257.   {                                    /* get first entry */
  258.     hdir = HDIR_SYSTEM;
  259.     count = 1;
  260.     done = DosFindFirst(dir, &hdir, attributes, &find, sizeof(find), &count);
  261.     lower = IsFileSystemFAT(dir);
  262.   }
  263.   else                                 /* get next entry */
  264.     done = DosFindNext(hdir, &find, sizeof(find), &count);
  265.  
  266.   if (done == 0)
  267.   {
  268.     if ( lower )
  269.       StringLower(find.achName);
  270.     return find.achName;
  271.   }
  272.   else
  273.   {
  274.     DosFindClose(hdir);
  275.     return NULL;
  276.   }
  277. }
  278.  
  279.  
  280. /* FAT / HPFS detection */
  281.  
  282. int IsFileSystemFAT(char *dir)
  283. {
  284.   static USHORT nLastDrive = -1, nResult;
  285.   ULONG lMap;
  286.   BYTE bData[64], bName[3];
  287. #ifdef __32BIT__
  288.   ULONG nDrive, cbData;
  289.   PFSQBUFFER2 pData = (PFSQBUFFER2) bData;
  290. #else
  291.   USHORT nDrive, cbData;
  292.   PFSQBUFFER pData = (PFSQBUFFER) bData;
  293. #endif
  294.  
  295.   if ( _osmode == DOS_MODE )
  296.     return TRUE;
  297.   else
  298.   {
  299.     /* We separate FAT and HPFS+other file systems here.
  300.        at the moment I consider other systems to be similar to HPFS,
  301.        i.e. support long file names and beeing case sensitive */
  302.  
  303.     if ( isalpha(dir[0]) && (dir[1] == ':') )
  304.       nDrive = to_up(dir[0]) - '@';
  305.     else
  306.       DosQueryCurrentDisk(&nDrive, &lMap);
  307.  
  308.     if ( nDrive == nLastDrive )
  309.       return nResult;
  310.  
  311.     bName[0] = (char) (nDrive + '@');
  312.     bName[1] = ':';
  313.     bName[2] = 0;
  314.  
  315.     nLastDrive = nDrive;
  316.     cbData = sizeof(bData);
  317.  
  318.     if ( !DosQueryFSAttach(bName, 0, FSAIL_QUERYNAME, (PVOID) pData, &cbData) )
  319.       nResult = !strcmp(pData -> szFSDName + pData -> cbName, "FAT");
  320.     else
  321.       nResult = FALSE;
  322.  
  323.     /* End of this ugly code */
  324.     return nResult;
  325.   }
  326. }
  327.  
  328.  
  329. /* access mode bits and time stamp */
  330.  
  331. int GetFileMode(char *name)
  332. {
  333. #ifdef __32BIT__
  334.   FILESTATUS3 fs;
  335.   return DosQueryPathInfo(name, 1, &fs, sizeof(fs)) ? -1 : fs.attrFile;
  336. #else
  337.   USHORT mode;
  338.   return DosQFileMode(name, &mode, 0L) ? -1 : mode;
  339. #endif
  340. }
  341.  
  342. long GetFileTime(char *name)
  343. {
  344. #ifdef __32BIT__
  345.   FILESTATUS3 fs;
  346. #else
  347.   FILESTATUS fs;
  348. #endif
  349.   USHORT nDate, nTime;
  350.  
  351.   if ( DosQueryPathInfo(name, 1, (PBYTE) &fs, sizeof(fs)) )
  352.     return -1;
  353.  
  354.   nDate = * (USHORT *) &fs.fdateLastWrite;
  355.   nTime = * (USHORT *) &fs.ftimeLastWrite;
  356.  
  357.   return ((ULONG) nDate) << 16 | nTime;
  358. }
  359.  
  360. void SetFileTime(char *path, long stamp)
  361. {
  362.   FILESTATUS fs;
  363.   USHORT fd, ft;
  364.   USHORT nLength;
  365.   char szName[CCHMAXPATH];
  366.  
  367.   if ( DosQueryPathInfo(path, FIL_STANDARD, (PBYTE) &fs, sizeof(fs)) )
  368.     return;
  369.  
  370.   fd = (USHORT) (stamp >> 16);
  371.   ft = (USHORT) stamp;
  372.   fs.fdateLastWrite = fs.fdateCreation = * (FDATE *) &fd;
  373.   fs.ftimeLastWrite = fs.ftimeCreation = * (FTIME *) &ft;
  374.  
  375.   DosSetPathInfo(path, FIL_STANDARD, (PBYTE) &fs, sizeof(fs), 0);
  376. }
  377.  
  378. /* read volume label */
  379.  
  380. char *getVolumeLabel(int drive, unsigned long *vtime, unsigned long *vmode)
  381. {
  382.   static FSINFO fi;
  383.  
  384.   if ( DosQueryFSInfo(drive ? drive - 'A' + 1 : 0, 
  385.                       FSIL_VOLSER, (PBYTE) &fi, sizeof(fi)) )
  386.     return NULL;
  387.  
  388.   *vtime = (unsigned long) time(NULL);
  389.   *vmode = _A_VOLID;
  390.  
  391.   return fi.vol.szVolLabel;
  392. }
  393.  
  394. /* FAT / HPFS name conversion stuff */
  395.  
  396. int IsFileNameValid(char *name)
  397. {
  398.   HFILE hf;
  399. #ifdef __32BIT__
  400.   ULONG uAction;
  401. #else
  402.   USHORT uAction;
  403. #endif
  404.  
  405.   switch( DosOpen(name, &hf, &uAction, 0, 0, FILE_OPEN,
  406.                   OPEN_ACCESS_READONLY | OPEN_SHARE_DENYNONE, 0) )
  407.   {
  408.   case ERROR_INVALID_NAME:
  409.   case ERROR_FILENAME_EXCED_RANGE:
  410.     return FALSE;
  411.   case NO_ERROR:
  412.     DosClose(hf);
  413.   default:
  414.     return TRUE;
  415.   }
  416. }
  417.  
  418.  
  419. void ChangeNameForFAT(char *name)
  420. {
  421.   char *src, *dst, *next, *ptr, *dot, *start;
  422.   static char invalid[] = ":;,=+\"[]<>| \t";
  423.  
  424.   if ( isalpha(name[0]) && (name[1] == ':') )
  425.     start = name + 2;
  426.   else
  427.     start = name;
  428.  
  429.   src = dst = start;
  430.   if ( (*src == '/') || (*src == '\\') )
  431.     src++, dst++;
  432.  
  433.   while ( *src )
  434.   {
  435.     for ( next = src; *next && (*next != '/') && (*next != '\\'); next++ );
  436.  
  437.     for ( ptr = src, dot = NULL; ptr < next; ptr++ )
  438.       if ( *ptr == '.' )
  439.       {
  440.         dot = ptr; /* remember last dot */
  441.         *ptr = '_';
  442.       }
  443.  
  444.     if ( dot == NULL )
  445.       for ( ptr = src; ptr < next; ptr++ )
  446.         if ( *ptr == '_' )
  447.           dot = ptr; /* remember last _ as if it were a dot */
  448.  
  449.     if ( dot && (dot > src) &&
  450.          ((next - dot <= 4) ||
  451.           ((next - src > 8) && (dot - src > 3))) )
  452.     {
  453.       if ( dot )
  454.         *dot = '.';
  455.  
  456.       for ( ptr = src; (ptr < dot) && ((ptr - src) < 8); ptr++ )
  457.         *dst++ = *ptr;
  458.  
  459.       for ( ptr = dot; (ptr < next) && ((ptr - dot) < 4); ptr++ )
  460.         *dst++ = *ptr;
  461.     }
  462.     else
  463.     {
  464.       if ( dot && (next - src == 1) )
  465.         *dot = '.';           /* special case: "." as a path component */
  466.  
  467.       for ( ptr = src; (ptr < next) && ((ptr - src) < 8); ptr++ )
  468.         *dst++ = *ptr;
  469.     }
  470.  
  471.     *dst++ = *next; /* either '/' or 0 */
  472.  
  473.     if ( *next )
  474.     {
  475.       src = next + 1;
  476.  
  477.       if ( *src == 0 ) /* handle trailing '/' on dirs ! */
  478.         *dst = 0;
  479.     }
  480.     else
  481.       break;
  482.   }
  483.  
  484.   for ( src = start; *src != 0; ++src )
  485.     if ( (strchr(invalid, *src) != NULL) || (*src == ' ') )
  486.       *src = '_';
  487. }
  488.  
  489.  
  490. /* .LONGNAME EA code */
  491.  
  492. typedef struct
  493. {
  494.   ULONG cbList;               /* length of value + 22 */
  495. #ifdef __32BIT__
  496.   ULONG oNext;
  497. #endif
  498.   BYTE fEA;                   /* 0 */
  499.   BYTE cbName;                /* length of ".LONGNAME" = 9 */
  500.   USHORT cbValue;             /* length of value + 4 */
  501.   BYTE szName[10];            /* ".LONGNAME" */
  502.   USHORT eaType;              /* 0xFFFD for length-preceded ASCII */
  503.   USHORT eaSize;              /* length of value */
  504.   BYTE szValue[CCHMAXPATH];
  505. }
  506. FEALST;
  507.  
  508. typedef struct
  509. {
  510.   ULONG cbList;
  511. #ifdef __32BIT__
  512.   ULONG oNext;
  513. #endif
  514.   BYTE cbName;
  515.   BYTE szName[10];            /* ".LONGNAME" */
  516. }
  517. GEALST;
  518.  
  519.  
  520. char *GetLongNameEA(char *name)
  521. {
  522.   EAOP eaop;
  523.   GEALST gealst;
  524.   static FEALST fealst;
  525.  
  526.   if ( _osmode == DOS_MODE )
  527.     return NULL;
  528.  
  529.   eaop.fpGEAList = (PGEALIST) &gealst;
  530.   eaop.fpFEAList = (PFEALIST) &fealst;
  531.   eaop.oError = 0;
  532.  
  533.   strcpy(gealst.szName, ".LONGNAME");
  534.   gealst.cbName  = (BYTE) strlen(gealst.szName);
  535. #ifdef __32BIT__
  536.   gealst.oNext   = 0;
  537. #endif
  538.  
  539.   gealst.cbList  = sizeof(gealst);
  540.   fealst.cbList  = sizeof(fealst);
  541.  
  542.   if ( DosQueryPathInfo(name, FIL_QUERYEASFROMLIST,
  543.                         (PBYTE) &eaop, sizeof(eaop)) )
  544.     return NULL;
  545.  
  546.   if ( fealst.cbValue > 4 && fealst.eaType == 0xFFFD )
  547.   {
  548.     fealst.szValue[fealst.eaSize] = 0;
  549.     return fealst.szValue;
  550.   }
  551.  
  552.   return NULL;
  553. }
  554.  
  555.  
  556. char *GetLongPathEA(char *name)
  557. {
  558.   static char nbuf[CCHMAXPATH + 1];
  559.   char *comp, *next, *ea, sep;
  560.   BOOL bFound = FALSE;
  561.  
  562.   nbuf[0] = 0;
  563.   next = name;
  564.  
  565.   while ( *next )
  566.   {
  567.     comp = next;
  568.  
  569.     while ( *next != '\\' && *next != '/' && *next != 0 )
  570.       next++;
  571.  
  572.     sep = *next;
  573.     *next = 0;
  574.  
  575.     ea = GetLongNameEA(name);
  576.     strcat(nbuf, ea ? ea : comp);
  577.     bFound = bFound || (ea != NULL);
  578.  
  579.     *next = sep;
  580.  
  581.     if ( *next )
  582.     {
  583.       strcat(nbuf, "\\");
  584.       next++;
  585.     }
  586.   }
  587.  
  588.   return (nbuf[0] != 0) && bFound ? nbuf : NULL;
  589. }
  590.  
  591.  
  592. /* general EA code */
  593.  
  594. typedef struct
  595. {
  596.   USHORT nID;
  597.   USHORT nSize;
  598.   ULONG lSize;
  599. }
  600. EAHEADER, *PEAHEADER;
  601.  
  602.  
  603. #ifdef __32BIT__
  604.  
  605. /* Perhaps due to bugs in the current OS/2 2.0 kernel, the success or
  606.    failure of the DosEnumAttribute() and DosQueryPathInfo() system calls
  607.    depends on the area where the return buffers are allocated. This
  608.    differs for the various compilers, for some alloca() works, for some
  609.    malloc() works, for some, both work. We'll have to live with that. */
  610.  
  611. /* The use of malloc() is not very convenient, because it requires
  612.    backtracking (i.e. free()) at error returns. We do that for system
  613.    calls that may fail, but not for malloc() calls, because they are VERY
  614.    unlikely to fail. If ever, we just leave some memory allocated
  615.    over the usually short lifetime of a zip process ... */
  616.  
  617. #ifdef __GNUC__
  618. #define alloc(x) alloca(x)
  619. #define unalloc(x)
  620. #else
  621. #define alloc(x) malloc(x)
  622. #define unalloc(x) free(x)
  623. #endif
  624.  
  625. void GetEAs(char *path, char **bufptr, size_t *size,
  626.                         char **cbufptr, size_t *csize)
  627. {
  628.   FILESTATUS4 fs;
  629.   PDENA2 pDENA, pFound;
  630.   EAOP2 eaop;
  631.   PGEA2 pGEA;
  632.   PGEA2LIST pGEAlist;
  633.   PFEA2LIST pFEAlist;
  634.   PEAHEADER pEAblock;
  635.   ULONG ulAttributes, ulMemoryBlock;
  636.   ULONG nLength;
  637.   ULONG nBlock;
  638.   char szName[CCHMAXPATH];
  639.  
  640.   *size = *csize = 0;
  641.  
  642.   if ( _osmode == DOS_MODE )
  643.     return;
  644.  
  645.   strcpy(szName, path);
  646.   nLength = strlen(szName);
  647.   if ( szName[nLength - 1] == '/' )
  648.     szName[nLength - 1] = 0;
  649.  
  650.   if ( DosQueryPathInfo(szName, FIL_QUERYEASIZE, (PBYTE) &fs, sizeof(fs)) )
  651.     return;
  652.   nBlock = max(fs.cbList, 65535);
  653.   if ( (pDENA = alloc((size_t) nBlock)) == NULL )
  654.     return;
  655.  
  656.   ulAttributes = -1;
  657.  
  658.   if ( DosEnumAttribute(ENUMEA_REFTYPE_PATH, szName, 1, pDENA, nBlock,
  659.                         &ulAttributes, ENUMEA_LEVEL_NO_VALUE)
  660.     || ulAttributes == 0
  661.     || (pGEAlist = alloc((size_t) nBlock)) == NULL )
  662.   {
  663.     unalloc(pDENA);
  664.     return;
  665.   }
  666.  
  667.   pGEA = pGEAlist -> list;
  668.   pFound = pDENA;
  669.  
  670.   while ( ulAttributes-- )
  671.   {
  672.     if ( !(strcmp(pFound -> szName, ".LONGNAME") == 0 && use_longname_ea) )
  673.     {
  674.       pGEA -> cbName = pFound -> cbName;
  675.       strcpy(pGEA -> szName, pFound -> szName);
  676.  
  677.       nLength = sizeof(GEA2) + strlen(pGEA -> szName);
  678.       nLength = ((nLength - 1) / sizeof(ULONG) + 1) * sizeof(ULONG);
  679.  
  680.       pGEA -> oNextEntryOffset = ulAttributes ? nLength : 0;
  681.       pGEA   = (PGEA2)  ((PCH) pGEA + nLength);
  682.     }
  683.  
  684.     pFound = (PDENA2) ((PCH) pFound + pFound -> oNextEntryOffset);
  685.   }
  686.  
  687.   if ( pGEA == pGEAlist -> list ) /* no attributes to save */
  688.   {
  689.     unalloc(pDENA);
  690.     unalloc(pGEAlist);
  691.     return;
  692.   }
  693.  
  694.   pGEAlist -> cbList = (PCH) pGEA - (PCH) pGEAlist;
  695.  
  696.   pFEAlist = (PVOID) pDENA;  /* reuse buffer */
  697.   pFEAlist -> cbList = nBlock;
  698.  
  699.   eaop.fpGEA2List = pGEAlist;
  700.   eaop.fpFEA2List = pFEAlist;
  701.   eaop.oError = 0;
  702.  
  703.   if ( DosQueryPathInfo(szName, FIL_QUERYEASFROMLIST,
  704.                         (PBYTE) &eaop, sizeof(eaop)) )
  705.   {
  706.     unalloc(pDENA);
  707.     unalloc(pGEAlist);
  708.     return;
  709.   }
  710.  
  711.   /* The maximum compressed size is (in case of STORE type) the
  712.      uncompressed size plus the size of the compression type field
  713.      plus the size of the CRC field. */
  714.  
  715.   ulAttributes = pFEAlist -> cbList;
  716.   ulMemoryBlock = ulAttributes + sizeof(USHORT) + sizeof(ULONG);
  717.   pEAblock = (PEAHEADER) malloc(sizeof(EAHEADER) + ulMemoryBlock);
  718.  
  719.   if ( pEAblock == NULL )
  720.   {
  721.     unalloc(pDENA);
  722.     unalloc(pGEAlist);
  723.     return;
  724.   }
  725.  
  726.   *bufptr = (char *) pEAblock;
  727.   *size = sizeof(EAHEADER);
  728.  
  729.   pEAblock -> nID = EAID;
  730.   pEAblock -> nSize = sizeof(pEAblock -> lSize);
  731.   pEAblock -> lSize = ulAttributes; /* uncompressed size */
  732.  
  733.   nLength = memcompress((char *) (pEAblock + 1), ulMemoryBlock,
  734.                         (char *) pFEAlist, ulAttributes);
  735.   *size += nLength;
  736.   pEAblock -> nSize += nLength;
  737.  
  738.   if ( (pEAblock = (PEAHEADER) malloc(sizeof(EAHEADER))) == NULL )
  739.   {
  740.     unalloc(pDENA);
  741.     unalloc(pGEAlist);
  742.     return;
  743.   }
  744.  
  745.   *cbufptr = (char *) pEAblock;
  746.   *csize = sizeof(EAHEADER);
  747.  
  748.   pEAblock -> nID = EAID;
  749.   pEAblock -> nSize = sizeof(pEAblock -> lSize);
  750.   pEAblock -> lSize = ulAttributes;
  751.  
  752.   if ( noisy )
  753.     printf(" (%ld bytes EA's)", ulAttributes);
  754.  
  755.   unalloc(pDENA);
  756.   unalloc(pGEAlist);
  757. }
  758.  
  759. #else /* !__32BIT__ */
  760.  
  761. typedef struct
  762. {
  763.   ULONG oNextEntryOffset;
  764.   BYTE fEA;
  765.   BYTE cbName;
  766.   USHORT cbValue;
  767.   CHAR szName[1];
  768. }
  769. FEA2, *PFEA2;
  770.  
  771. typedef struct
  772. {
  773.   ULONG cbList;
  774.   FEA2 list[1];
  775. }
  776. FEA2LIST, *PFEA2LIST;
  777.  
  778. void GetEAs(char *path, char **bufptr, size_t *size,
  779.                         char **cbufptr, size_t *csize)
  780. {
  781.   FILESTATUS2 fs;
  782.   PDENA1 pDENA, pFound;
  783.   EAOP eaop;
  784.   PGEALIST pGEAlist;
  785.   PGEA pGEA;
  786.   PFEALIST pFEAlist;
  787.   PFEA pFEA;
  788.   PFEA2LIST pFEA2list;
  789.   PFEA2 pFEA2;
  790.   EAHEADER *pEAblock;
  791.   ULONG ulAttributes;
  792.   USHORT nLength, nMaxSize;
  793.   char szName[CCHMAXPATH];
  794.  
  795.   *size = *csize = 0;
  796.  
  797.   if ( _osmode == DOS_MODE )
  798.     return;
  799.  
  800.   strcpy(szName, path);
  801.   nLength = strlen(szName);
  802.   if ( szName[nLength - 1] == '/' )
  803.     szName[nLength - 1] = 0;
  804.  
  805.   if ( DosQueryPathInfo(szName, FIL_QUERYEASIZE, (PBYTE) &fs, sizeof(fs))
  806.     || fs.cbList <= 2 * sizeof(ULONG) )
  807.     return;
  808.  
  809.   ulAttributes = -1;
  810.   nMaxSize = (USHORT) min(fs.cbList * 2, 65520L);
  811.  
  812.   if ( (pDENA = malloc((size_t) nMaxSize)) == NULL )
  813.     return;
  814.  
  815.   if ( DosEnumAttribute(ENUMEA_REFTYPE_PATH, szName, 1, pDENA, fs.cbList,
  816.                         &ulAttributes, ENUMEA_LEVEL_NO_VALUE)
  817.     || ulAttributes == 0
  818.     || (pGEAlist = malloc(nMaxSize)) == NULL )
  819.   {
  820.     free(pDENA);
  821.     return;
  822.   }
  823.  
  824.   pGEA = pGEAlist -> list;
  825.   pFound = pDENA;
  826.  
  827.   while ( ulAttributes-- )
  828.   {
  829.     nLength = strlen(pFound -> szName);
  830.  
  831.     if ( !(strcmp(pFound -> szName, ".LONGNAME") == 0 && use_longname_ea) )
  832.     {
  833.       pGEA -> cbName = pFound -> cbName;
  834.       strcpy(pGEA -> szName, pFound -> szName);
  835.  
  836.       pGEA = (PGEA) ((PCH) (pGEA++) + nLength);
  837.     }
  838.  
  839.     pFound = (PDENA1) ((PCH) (pFound++) + nLength);
  840.   }
  841.  
  842.   if ( pGEA == pGEAlist -> list )
  843.   {
  844.     free(pDENA);
  845.     free(pGEAlist);
  846.     return;
  847.   }
  848.  
  849.   pGEAlist -> cbList = (PCH) pGEA - (PCH) pGEAlist;
  850.  
  851.   pFEAlist = (PFEALIST) pDENA; /* reuse buffer */
  852.   pFEAlist -> cbList = fs.cbList;
  853.   pFEA = pFEAlist -> list;
  854.  
  855.   eaop.fpGEAList = pGEAlist;
  856.   eaop.fpFEAList = pFEAlist;
  857.   eaop.oError = 0;
  858.  
  859.   if ( DosQueryPathInfo(szName, FIL_QUERYEASFROMLIST,
  860.                     (PBYTE) &eaop, sizeof(eaop)) )
  861.   {
  862.     free(pDENA);
  863.     free(pGEAlist);
  864.     return;
  865.   }
  866.  
  867.   /* now convert into new OS/2 2.0 32-bit format */
  868.  
  869.   pFEA2list = (PFEA2LIST) pGEAlist;  /* reuse buffer */
  870.   pFEA2 = pFEA2list -> list;
  871.  
  872.   while ( (PCH) pFEA - (PCH) pFEAlist < pFEAlist -> cbList )
  873.   {
  874.     nLength = sizeof(FEA) + pFEA -> cbName + 1 + pFEA -> cbValue;
  875.     memcpy((PCH) pFEA2 + sizeof(pFEA2 -> oNextEntryOffset), pFEA, nLength);
  876.     memset((PCH) pFEA2 + sizeof(pFEA2 -> oNextEntryOffset) + nLength, 0, 3);
  877.     pFEA = (PFEA) ((PCH) pFEA + nLength);
  878.  
  879.     nLength = sizeof(FEA2) + pFEA2 -> cbName + 1 + pFEA2 -> cbValue;
  880.     nLength = ((nLength - 1) / sizeof(ULONG) + 1) * sizeof(ULONG);
  881.     /* rounded up to 4-byte boundary */
  882.     pFEA2 -> oNextEntryOffset =
  883.       ((PCH) pFEA - (PCH) pFEAlist < pFEAlist -> cbList) ? nLength : 0;
  884.     pFEA2 = (PFEA2) ((PCH) pFEA2 + nLength);
  885.   }
  886.  
  887.   pFEA2list -> cbList = (PCH) pFEA2 - (PCH) pFEA2list;
  888.   ulAttributes = pFEA2list -> cbList;
  889.  
  890.   pEAblock = (PEAHEADER) pDENA; /* reuse buffer */
  891.  
  892.   *bufptr = (char *) pEAblock;
  893.   *size = sizeof(EAHEADER);
  894.  
  895.   pEAblock -> nID = EAID;
  896.   pEAblock -> nSize = sizeof(pEAblock -> lSize);
  897.   pEAblock -> lSize = ulAttributes; /* uncompressed size */
  898.  
  899.   nLength = (USHORT) memcompress((char *) (pEAblock + 1),
  900.     nMaxSize - sizeof(EAHEADER), (char *) pFEA2list, ulAttributes);
  901.  
  902.   *size += nLength;
  903.   pEAblock -> nSize += nLength;
  904.  
  905.   pEAblock = (PEAHEADER) pGEAlist;
  906.  
  907.   *cbufptr = (char *) pEAblock;
  908.   *csize = sizeof(EAHEADER);
  909.  
  910.   pEAblock -> nID = EAID;
  911.   pEAblock -> nSize = sizeof(pEAblock -> lSize);
  912.   pEAblock -> lSize = ulAttributes;
  913.  
  914.   if ( noisy )
  915.     printf(" (%ld bytes EA's)", ulAttributes);
  916. }
  917.  
  918. #endif /* __32BIT__ */
  919.  
  920. int set_extra_field(struct zlist *z)
  921. {
  922.   GetEAs(z->name, &z->extra, &z->ext, &z->cextra, &z->cext);
  923.   /* store data in local header, and size only in central headers */
  924.   return 0;
  925. }
  926.  
  927. #endif /* UTIL */
  928.  
  929.  
  930. /* Initialize the table of uppercase characters including handling of
  931.    country dependent characters. */
  932.  
  933. void init_upper()
  934. {
  935.   COUNTRYCODE cc;
  936.   unsigned nCnt, nU;
  937.  
  938.   for ( nCnt = 0; nCnt < sizeof(upper); nCnt++ )
  939.     upper[nCnt] = lower[nCnt] = (unsigned char) nCnt;
  940.  
  941.   cc.country = cc.codepage = 0;
  942.   DosMapCase(sizeof(upper), &cc, (PCHAR) upper);
  943.  
  944.   for ( nCnt = 0; nCnt < 256; nCnt++ )
  945.   {
  946.     nU = upper[nCnt];
  947.     if (nU != nCnt && lower[nU] == (unsigned char) nU)
  948.       lower[nU] = (unsigned char) nCnt;
  949.   }
  950.  
  951.   for ( nCnt = 'A'; nCnt <= 'Z'; nCnt++ )
  952.     lower[nCnt] = (unsigned char) (nCnt - 'A' + 'a');
  953. }
  954.  
  955.  
  956. char *StringLower(char *szArg)
  957. {
  958.   unsigned char *szPtr;
  959.   for ( szPtr = szArg; *szPtr; szPtr++ )
  960.     *szPtr = lower[*szPtr];
  961.   return szArg;
  962. }
  963.  
  964.  
  965. #if defined(__IBMC__) && defined(__DEBUG_ALLOC__)
  966. void DebugMalloc(void)
  967. {
  968.   _dump_allocated(0); /* print out debug malloc memory statistics */
  969. }
  970. #endif
  971.  
  972.  
  973. #endif /* OS2 */
  974.