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

压缩解压

开发平台:

MultiPlatform

  1. /*---------------------------------------------------------------------------
  2.   unix.c
  3.   Unix-specific routines for use with Info-ZIP's UnZip 5.3 and later.
  4.   Contains:  readdir()
  5.              do_wild()           <-- generic enough to put in fileio.c?
  6.              mapattr()
  7.              mapname()
  8.              checkdir()
  9.              mkdir()
  10.              close_outfile()
  11.              set_direc_attribs()
  12.              stamp_file()
  13.              version()
  14.   ---------------------------------------------------------------------------*/
  15. #define UNZIP_INTERNAL
  16. #include "unzip.h"
  17. #ifdef SCO_XENIX
  18. #  define SYSNDIR
  19. #else  /* SCO Unix, AIX, DNIX, TI SysV, Coherent 4.x, ... */
  20. #  if defined(__convexc__) || defined(SYSV) || defined(CRAY) || defined(BSD4_4)
  21. #    define DIRENT
  22. #  endif
  23. #endif
  24. #if defined(_AIX)
  25. #  define DIRENT
  26. #endif
  27. #ifdef COHERENT
  28. #  if defined(_I386) || (defined(__COHERENT__) && (__COHERENT__ >= 0x420))
  29. #    define DIRENT
  30. #  endif
  31. #endif
  32. /* GRR:  may need to uncomment this: */
  33. #if 0
  34. #if defined(_POSIX_VERSION)
  35. #  define DIRENT
  36. #endif
  37. #endif
  38. #ifdef DIRENT
  39. #  include <dirent.h>
  40. #else
  41. #  ifdef SYSV
  42. #    ifdef SYSNDIR
  43. #      include <sys/ndir.h>
  44. #    else
  45. #      include <ndir.h>
  46. #    endif
  47. #  else /* !SYSV */
  48. #    ifndef NO_SYSDIR
  49. #      include <sys/dir.h>
  50. #    endif
  51. #  endif /* ?SYSV */
  52. #  ifndef dirent
  53. #    define dirent direct
  54. #  endif
  55. #endif /* ?DIRENT */
  56. #ifdef ACORN_FTYPE_NFS
  57. /* Acorn bits for NFS filetyping */
  58. typedef struct {
  59.   uch ID[2];
  60.   uch size[2];
  61.   uch ID_2[4];
  62.   uch loadaddr[4];
  63.   uch execaddr[4];
  64.   uch attr[4];
  65. } RO_extra_block;
  66. static int isRISCOSexfield OF((uch *extra_field));
  67. #endif /* ACORN_FTYPE_NFS */
  68. static int created_dir;        /* used in mapname(), checkdir() */
  69. static int renamed_fullpath;   /* ditto */
  70. #ifndef SFX
  71. #ifdef NO_DIR                  /* for AT&T 3B1 */
  72. #define opendir(path) fopen(path,"r")
  73. #define closedir(dir) fclose(dir)
  74. typedef FILE DIR;
  75. /*
  76.  *  Apparently originally by Rich Salz.
  77.  *  Cleaned up and modified by James W. Birdsall.
  78.  */
  79. struct dirent *readdir(dirp)
  80.     DIR *dirp;
  81. {
  82.     static struct dirent entry;
  83.     if (dirp == NULL)
  84.         return NULL;
  85.     for (;;)
  86.         if (fread(&entry, sizeof (struct dirent), 1, dirp) == 0)
  87.             return (struct dirent *)NULL;
  88.         else if (entry.d_ino)
  89.             return &entry;
  90. } /* end function readdir() */
  91. #endif /* NO_DIR */
  92. /**********************/
  93. /* Function do_wild() */   /* for porting:  dir separator; match(ignore_case) */
  94. /**********************/
  95. char *do_wild(__G__ wildspec)
  96.     __GDEF
  97.     char *wildspec;         /* only used first time on a given dir */
  98. {
  99.     static DIR *dir = (DIR *)NULL;
  100.     static char *dirname, *wildname, matchname[FILNAMSIZ];
  101.     static int firstcall=TRUE, have_dirname, dirnamelen;
  102.     struct dirent *file;
  103.     /* Even when we're just returning wildspec, we *always* do so in
  104.      * matchname[]--calling routine is allowed to append four characters
  105.      * to the returned string, and wildspec may be a pointer to argv[].
  106.      */
  107.     if (firstcall) {        /* first call:  must initialize everything */
  108.         firstcall = FALSE;
  109.         if (!iswild(wildspec)) {
  110.             strcpy(matchname, wildspec);
  111.             have_dirname = FALSE;
  112.             dir = NULL;
  113.             return matchname;
  114.         }
  115.         /* break the wildspec into a directory part and a wildcard filename */
  116.         if ((wildname = strrchr(wildspec, '/')) == (char *)NULL) {
  117.             dirname = ".";
  118.             dirnamelen = 1;
  119.             have_dirname = FALSE;
  120.             wildname = wildspec;
  121.         } else {
  122.             ++wildname;     /* point at character after '/' */
  123.             dirnamelen = wildname - wildspec;
  124.             if ((dirname = (char *)malloc(dirnamelen+1)) == (char *)NULL) {
  125.                 Info(slide, 0x201, ((char *)slide,
  126.                   "warning:  cannot allocate wildcard buffersn"));
  127.                 strcpy(matchname, wildspec);
  128.                 return matchname;   /* but maybe filespec was not a wildcard */
  129.             }
  130.             strncpy(dirname, wildspec, dirnamelen);
  131.             dirname[dirnamelen] = '';   /* terminate for strcpy below */
  132.             have_dirname = TRUE;
  133.         }
  134.         if ((dir = opendir(dirname)) != (DIR *)NULL) {
  135.             while ((file = readdir(dir)) != (struct dirent *)NULL) {
  136.                 Trace((stderr, "do_wild:  readdir returns %sn", file->d_name));
  137.                 if (file->d_name[0] == '.' && wildname[0] != '.')
  138.                     continue;  /* Unix:  '*' and '?' do not match leading dot */
  139.                 if (match(file->d_name, wildname, 0) &&  /* 0 == case sens. */
  140.                     /* skip "." and ".." directory entries */
  141.                     strcmp(file->d_name, ".") && strcmp(file->d_name, "..")) {
  142.                     Trace((stderr, "do_wild:  match() succeedsn"));
  143.                     if (have_dirname) {
  144.                         strcpy(matchname, dirname);
  145.                         strcpy(matchname+dirnamelen, file->d_name);
  146.                     } else
  147.                         strcpy(matchname, file->d_name);
  148.                     return matchname;
  149.                 }
  150.             }
  151.             /* if we get to here directory is exhausted, so close it */
  152.             closedir(dir);
  153.             dir = (DIR *)NULL;
  154.         }
  155.         /* return the raw wildspec in case that works (e.g., directory not
  156.          * searchable, but filespec was not wild and file is readable) */
  157.         strcpy(matchname, wildspec);
  158.         return matchname;
  159.     }
  160.     /* last time through, might have failed opendir but returned raw wildspec */
  161.     if (dir == (DIR *)NULL) {
  162.         firstcall = TRUE;  /* nothing left to try--reset for new wildspec */
  163.         if (have_dirname)
  164.             free(dirname);
  165.         return (char *)NULL;
  166.     }
  167.     /* If we've gotten this far, we've read and matched at least one entry
  168.      * successfully (in a previous call), so dirname has been copied into
  169.      * matchname already.
  170.      */
  171.     while ((file = readdir(dir)) != (struct dirent *)NULL) {
  172.         Trace((stderr, "do_wild:  readdir returns %sn", file->d_name));
  173.         if (file->d_name[0] == '.' && wildname[0] != '.')
  174.             continue;   /* Unix:  '*' and '?' do not match leading dot */
  175.         if (match(file->d_name, wildname, 0)) {   /* 0 == don't ignore case */
  176.             Trace((stderr, "do_wild:  match() succeedsn"));
  177.             if (have_dirname) {
  178.                 /* strcpy(matchname, dirname); */
  179.                 strcpy(matchname+dirnamelen, file->d_name);
  180.             } else
  181.                 strcpy(matchname, file->d_name);
  182.             return matchname;
  183.         }
  184.     }
  185.     closedir(dir);     /* have read at least one dir entry; nothing left */
  186.     dir = (DIR *)NULL;
  187.     firstcall = TRUE;  /* reset for new wildspec */
  188.     if (have_dirname)
  189.         free(dirname);
  190.     return (char *)NULL;
  191. } /* end function do_wild() */
  192. #endif /* !SFX */
  193. /**********************/
  194. /* Function mapattr() */
  195. /**********************/
  196. int mapattr(__G)
  197.     __GDEF
  198. {
  199.     ulg tmp = G.crec.external_file_attributes;
  200.     G.pInfo->file_attr = 0;
  201.     /* initialized to 0 for check in "default" branch below... */
  202.     switch (G.pInfo->hostnum) {
  203.         case AMIGA_:
  204.             tmp = (unsigned)(tmp>>17 & 7);   /* Amiga RWE bits */
  205.             G.pInfo->file_attr = (unsigned)(tmp<<6 | tmp<<3 | tmp);
  206.             break;
  207.         case UNIX_:
  208.         case VMS_:
  209.         case ACORN_:
  210.         case ATARI_:
  211.         case BEOS_:
  212.         case QDOS_:
  213.         case TANDEM_:
  214.             G.pInfo->file_attr = (unsigned)(tmp >> 16);
  215.             if (G.pInfo->file_attr != 0 || !G.extra_field) {
  216.                 return 0;
  217.             } else {
  218.                 /* Some (non-Info-ZIP) implementations of Zip for Unix and
  219.                  * VMS (and probably others ??) leave 0 in the upper 16-bit
  220.                  * part of the external_file_attributes field. Instead, they
  221.                  * store file permission attributes in some extra field.
  222.                  * As a work-around, we search for the presence of one of
  223.                  * these extra fields and fall back to the MSDOS compatible
  224.                  * part of external_file_attributes if one of the known
  225.                  * e.f. types has been detected.
  226.                  * Later, we might implement extraction of the permission
  227.                  * bits from the VMS extra field. But for now, the work-around
  228.                  * should be sufficient to provide "readable" extracted files.
  229.                  * (For ASI Unix e.f., an experimental remap from the e.f.
  230.                  * mode value IS already provided!)
  231.                  */
  232.                 ush ebID;
  233.                 unsigned ebLen;
  234.                 uch *ef = G.extra_field;
  235.                 unsigned ef_len = G.crec.extra_field_length;
  236.                 int r = FALSE;
  237.                 while (!r && ef_len >= EB_HEADSIZE) {
  238.                     ebID = makeword(ef);
  239.                     ebLen = (unsigned)makeword(ef+EB_LEN);
  240.                     if (ebLen > (ef_len - EB_HEADSIZE))
  241.                         /* discoverd some e.f. inconsistency! */
  242.                         break;
  243.                     switch (ebID) {
  244.                       case EF_ASIUNIX:
  245.                         if (ebLen >= (EB_ASI_MODE+2)) {
  246.                             G.pInfo->file_attr =
  247.                               (unsigned)makeword(ef+(EB_HEADSIZE+EB_ASI_MODE));
  248.                             /* force stop of loop: */
  249.                             ef_len = (ebLen + EB_HEADSIZE);
  250.                             break;
  251.                         }
  252.                         /* else: fall through! */
  253.                       case EF_PKVMS:
  254.                         /* "found nondecypherable e.f. with perm. attr" */
  255.                         r = TRUE;
  256.                       default:
  257.                         break;
  258.                     }
  259.                     ef_len -= (ebLen + EB_HEADSIZE);
  260.                     ef += (ebLen + EB_HEADSIZE);
  261.                 }
  262.                 if (!r)
  263.                     return 0;
  264.             }
  265.             /* fall through! */
  266.         /* all remaining cases:  expand MSDOS read-only bit into write perms */
  267.         case FS_FAT_:
  268.             /* PKWARE's PKZip for Unix marks entries as FS_FAT_, but stores the
  269.              * Unix attributes in the upper 16 bits of the external attributes
  270.              * field, just like Info-ZIP's Zip for Unix.  We try to use that
  271.              * value, after a check for consistency with the MSDOS attribute
  272.              * bits (see below).
  273.              */
  274.             G.pInfo->file_attr = (unsigned)(tmp >> 16);
  275.             /* fall through! */
  276.         case FS_HPFS_:
  277.         case FS_NTFS_:
  278.         case MAC_:
  279.         case TOPS20_:
  280.         default:
  281.             /* read-only bit --> write perms; subdir bit --> dir exec bit */
  282.             tmp = !(tmp & 1) << 1  |  (tmp & 0x10) >> 4;
  283.             if ((G.pInfo->file_attr & 0700) == (unsigned)(0400 | tmp<<6))
  284.                 /* keep previous G.pInfo->file_attr setting, when its "owner"
  285.                  * part appears to be consistent with DOS attribute flags!
  286.                  */
  287.                 return 0;
  288.             G.pInfo->file_attr = (unsigned)(0444 | tmp<<6 | tmp<<3 | tmp);
  289.             break;
  290.     } /* end switch (host-OS-created-by) */
  291.     /* for originating systems with no concept of "group," "other," "system": */
  292.     umask( (int)(tmp=umask(0)) );    /* apply mask to expanded r/w(/x) perms */
  293.     G.pInfo->file_attr &= ~tmp;
  294.     return 0;
  295. } /* end function mapattr() */
  296. /************************/
  297. /*  Function mapname()  */
  298. /************************/
  299.                              /* return 0 if no error, 1 if caution (filename */
  300. int mapname(__G__ renamed)   /*  truncated), 2 if warning (skip file because */
  301.     __GDEF                   /*  dir doesn't exist), 3 if error (skip file), */
  302.     int renamed;             /*  or 10 if out of memory (skip file) */
  303. {                            /*  [also IZ_VOL_LABEL, IZ_CREATED_DIR] */
  304.     char pathcomp[FILNAMSIZ];      /* path-component buffer */
  305.     char *pp, *cp=(char *)NULL;    /* character pointers */
  306.     char *lastsemi=(char *)NULL;   /* pointer to last semi-colon in pathcomp */
  307. #ifdef ACORN_FTYPE_NFS
  308.     char *lastcomma=(char *)NULL;  /* pointer to last comma in pathcomp */
  309. #endif
  310.     int quote = FALSE;             /* flags */
  311.     int error = 0;
  312.     register unsigned workch;      /* hold the character being tested */
  313. /*---------------------------------------------------------------------------
  314.     Initialize various pointers and counters and stuff.
  315.   ---------------------------------------------------------------------------*/
  316.     if (G.pInfo->vollabel)
  317.         return IZ_VOL_LABEL;    /* can't set disk volume labels in Unix */
  318.     /* can create path as long as not just freshening, or if user told us */
  319.     G.create_dirs = (!uO.fflag || renamed);
  320.     created_dir = FALSE;        /* not yet */
  321.     /* user gave full pathname:  don't prepend rootpath */
  322.     renamed_fullpath = (renamed && (*G.filename == '/'));
  323.     if (checkdir(__G__ (char *)NULL, INIT) == 10)
  324.         return 10;              /* initialize path buffer, unless no memory */
  325.     *pathcomp = '';           /* initialize translation buffer */
  326.     pp = pathcomp;              /* point to translation buffer */
  327.     if (uO.jflag)               /* junking directories */
  328.         cp = (char *)strrchr(G.filename, '/');
  329.     if (cp == (char *)NULL)     /* no '/' or not junking dirs */
  330.         cp = G.filename;        /* point to internal zipfile-member pathname */
  331.     else
  332.         ++cp;                   /* point to start of last component of path */
  333. /*---------------------------------------------------------------------------
  334.     Begin main loop through characters in filename.
  335.   ---------------------------------------------------------------------------*/
  336.     while ((workch = (uch)*cp++) != 0) {
  337.         if (quote) {                 /* if character quoted, */
  338.             *pp++ = (char)workch;    /*  include it literally */
  339.             quote = FALSE;
  340.         } else
  341.             switch (workch) {
  342.             case '/':             /* can assume -j flag not given */
  343.                 *pp = '';
  344.                 if ((error = checkdir(__G__ pathcomp, APPEND_DIR)) > 1)
  345.                     return error;
  346.                 pp = pathcomp;    /* reset conversion buffer for next piece */
  347.                 lastsemi = (char *)NULL; /* leave directory semi-colons alone */
  348.                 break;
  349.             case ';':             /* VMS version (or DEC-20 attrib?) */
  350.                 lastsemi = pp;
  351.                 *pp++ = ';';      /* keep for now; remove VMS ";##" */
  352.                 break;            /*  later, if requested */
  353. #ifdef ACORN_FTYPE_NFS
  354.             case ',':             /* NFS filetype extension */
  355.                 lastcomma = pp;
  356.                 *pp++ = ',';      /* keep for now; may need to remove */
  357.                 break;            /*  later, if requested */
  358. #endif
  359.             case '26':          /* control-V quote for special chars */
  360.                 quote = TRUE;     /* set flag for next character */
  361.                 break;
  362. #ifdef MTS
  363.             case ' ':             /* change spaces to underscore under */
  364.                 *pp++ = '_';      /*  MTS; leave as spaces under Unix */
  365.                 break;
  366. #endif
  367.             default:
  368.                 /* allow European characters in filenames: */
  369.                 if (isprint(workch) || (128 <= workch && workch <= 254))
  370.                     *pp++ = (char)workch;
  371.             } /* end switch */
  372.     } /* end while loop */
  373.     *pp = '';                   /* done with pathcomp:  terminate it */
  374.     /* if not saving them, remove VMS version numbers (appended ";###") */
  375.     if (!uO.V_flag && lastsemi) {
  376.         pp = lastsemi + 1;
  377.         while (isdigit((uch)(*pp)))
  378.             ++pp;
  379.         if (*pp == '')          /* only digits between ';' and end:  nuke */
  380.             *lastsemi = '';
  381.     }
  382. #ifdef ACORN_FTYPE_NFS
  383.     /* translate Acorn filetype information if asked to do so */
  384.     if (uO.acorn_nfs_ext && isRISCOSexfield(G.extra_field)) {
  385.         /* file *must* have a RISC OS extra field */
  386.         int ft = (int)makelong(((RO_extra_block *)G.extra_field)->loadaddr);
  387.         /*32-bit*/
  388.         if (lastcomma) {
  389.             pp = lastcomma + 1;
  390.             while (isxdigit((uch)(*pp))) ++pp;
  391.             if (pp == lastcomma+4 && *pp == '') *lastcomma=''; /* nuke */
  392.         }
  393.         if ((ft & 1<<31)==0) ft=0x000FFD00;
  394.         sprintf(pathcomp+strlen(pathcomp), ",%03x", ft>>8 & 0xFFF);
  395.     }
  396. #endif /* ACORN_FTYPE_NFS */
  397. /*---------------------------------------------------------------------------
  398.     Report if directory was created (and no file to create:  filename ended
  399.     in '/'), check name to be sure it exists, and combine path and name be-
  400.     fore exiting.
  401.   ---------------------------------------------------------------------------*/
  402.     if (G.filename[strlen(G.filename) - 1] == '/') {
  403.         checkdir(__G__ G.filename, GETPATH);
  404.         if (created_dir) {
  405.             if (QCOND2) {
  406.                 Info(slide, 0, ((char *)slide, "   creating: %sn",
  407.                   G.filename));
  408.             }
  409. #ifndef NO_CHMOD
  410.             /* set approx. dir perms (make sure can still read/write in dir) */
  411.             if (chmod(G.filename, (0xffff & G.pInfo->file_attr) | 0700))
  412.                 perror("chmod (directory attributes) error");
  413. #endif
  414.             return IZ_CREATED_DIR;   /* set dir time (note trailing '/') */
  415.         }
  416.         return 2;   /* dir existed already; don't look for data to extract */
  417.     }
  418.     if (*pathcomp == '') {
  419.         Info(slide, 1, ((char *)slide, "mapname:  conversion of %s failedn",
  420.           G.filename));
  421.         return 3;
  422.     }
  423.     checkdir(__G__ pathcomp, APPEND_NAME);  /* returns 1 if truncated: care? */
  424.     checkdir(__G__ G.filename, GETPATH);
  425.     return error;
  426. } /* end function mapname() */
  427. #if 0  /*========== NOTES ==========*/
  428.   extract-to dir:      a:path/
  429.   buildpath:           path1/path2/ ...   (NULL-terminated)
  430.   pathcomp:                filename
  431.   mapname():
  432.     loop over chars in zipfile member name
  433.       checkdir(path component, COMPONENT | CREATEDIR) --> map as required?
  434.         (d:/tmp/unzip/)                    (disk:[tmp.unzip.)
  435.         (d:/tmp/unzip/jj/)                 (disk:[tmp.unzip.jj.)
  436.         (d:/tmp/unzip/jj/temp/)            (disk:[tmp.unzip.jj.temp.)
  437.     finally add filename itself and check for existence? (could use with rename)
  438.         (d:/tmp/unzip/jj/temp/msg.outdir)  (disk:[tmp.unzip.jj.temp]msg.outdir)
  439.     checkdir(name, GETPATH)     -->  copy path to name and free space
  440. #endif /* 0 */
  441. /***********************/
  442. /* Function checkdir() */
  443. /***********************/
  444. int checkdir(__G__ pathcomp, flag)
  445.     __GDEF
  446.     char *pathcomp;
  447.     int flag;
  448. /*
  449.  * returns:  1 - (on APPEND_NAME) truncated filename
  450.  *           2 - path doesn't exist, not allowed to create
  451.  *           3 - path doesn't exist, tried to create and failed; or
  452.  *               path exists and is not a directory, but is supposed to be
  453.  *           4 - path is too long
  454.  *          10 - can't allocate memory for filename buffers
  455.  */
  456. {
  457.     static int rootlen = 0;   /* length of rootpath */
  458.     static char *rootpath;    /* user's "extract-to" directory */
  459.     static char *buildpath;   /* full path (so far) to extracted file */
  460.     static char *end;         /* pointer to end of buildpath ('') */
  461. #   define FN_MASK   7
  462. #   define FUNCTION  (flag & FN_MASK)
  463. /*---------------------------------------------------------------------------
  464.     APPEND_DIR:  append the path component to the path being built and check
  465.     for its existence.  If doesn't exist and we are creating directories, do
  466.     so for this one; else signal success or error as appropriate.
  467.   ---------------------------------------------------------------------------*/
  468.     if (FUNCTION == APPEND_DIR) {
  469.         int too_long = FALSE;
  470. #ifdef SHORT_NAMES
  471.         char *old_end = end;
  472. #endif
  473.         Trace((stderr, "appending dir segment [%s]n", pathcomp));
  474.         while ((*end = *pathcomp++) != '')
  475.             ++end;
  476. #ifdef SHORT_NAMES   /* path components restricted to 14 chars, typically */
  477.         if ((end-old_end) > FILENAME_MAX)  /* GRR:  proper constant? */
  478.             *(end = old_end + FILENAME_MAX) = '';
  479. #endif
  480.         /* GRR:  could do better check, see if overrunning buffer as we go:
  481.          * check end-buildpath after each append, set warning variable if
  482.          * within 20 of FILNAMSIZ; then if var set, do careful check when
  483.          * appending.  Clear variable when begin new path. */
  484.         if ((end-buildpath) > FILNAMSIZ-3)  /* need '/', one-char name, '' */
  485.             too_long = TRUE;                /* check if extracting directory? */
  486.         if (stat(buildpath, &G.statbuf)) {  /* path doesn't exist */
  487.             if (!G.create_dirs) { /* told not to create (freshening) */
  488.                 free(buildpath);
  489.                 return 2;         /* path doesn't exist:  nothing to do */
  490.             }
  491.             if (too_long) {
  492.                 Info(slide, 1, ((char *)slide,
  493.                   "checkdir error:  path too long: %sn", buildpath));
  494.                 free(buildpath);
  495.                 return 4;         /* no room for filenames:  fatal */
  496.             }
  497.             if (mkdir(buildpath, 0777) == -1) {   /* create the directory */
  498.                 Info(slide, 1, ((char *)slide,
  499.                   "checkdir error:  cannot create %sn
  500.                  unable to process %s.n", buildpath, G.filename));
  501.                 free(buildpath);
  502.                 return 3;      /* path didn't exist, tried to create, failed */
  503.             }
  504.             created_dir = TRUE;
  505.         } else if (!S_ISDIR(G.statbuf.st_mode)) {
  506.             Info(slide, 1, ((char *)slide,
  507.               "checkdir error:  %s exists but is not directoryn
  508.                  unable to process %s.n", buildpath, G.filename));
  509.             free(buildpath);
  510.             return 3;          /* path existed but wasn't dir */
  511.         }
  512.         if (too_long) {
  513.             Info(slide, 1, ((char *)slide,
  514.               "checkdir error:  path too long: %sn", buildpath));
  515.             free(buildpath);
  516.             return 4;         /* no room for filenames:  fatal */
  517.         }
  518.         *end++ = '/';
  519.         *end = '';
  520.         Trace((stderr, "buildpath now = [%s]n", buildpath));
  521.         return 0;
  522.     } /* end if (FUNCTION == APPEND_DIR) */
  523. /*---------------------------------------------------------------------------
  524.     GETPATH:  copy full path to the string pointed at by pathcomp, and free
  525.     buildpath.
  526.   ---------------------------------------------------------------------------*/
  527.     if (FUNCTION == GETPATH) {
  528.         strcpy(pathcomp, buildpath);
  529.         Trace((stderr, "getting and freeing path [%s]n", pathcomp));
  530.         free(buildpath);
  531.         buildpath = end = (char *)NULL;
  532.         return 0;
  533.     }
  534. /*---------------------------------------------------------------------------
  535.     APPEND_NAME:  assume the path component is the filename; append it and
  536.     return without checking for existence.
  537.   ---------------------------------------------------------------------------*/
  538.     if (FUNCTION == APPEND_NAME) {
  539. #ifdef SHORT_NAMES
  540.         char *old_end = end;
  541. #endif
  542.         Trace((stderr, "appending filename [%s]n", pathcomp));
  543.         while ((*end = *pathcomp++) != '') {
  544.             ++end;
  545. #ifdef SHORT_NAMES  /* truncate name at 14 characters, typically */
  546.             if ((end-old_end) > FILENAME_MAX)      /* GRR:  proper constant? */
  547.                 *(end = old_end + FILENAME_MAX) = '';
  548. #endif
  549.             if ((end-buildpath) >= FILNAMSIZ) {
  550.                 *--end = '';
  551.                 Info(slide, 0x201, ((char *)slide,
  552.                   "checkdir warning:  path too long; truncatingn
  553.                    %sn                -> %sn", G.filename, buildpath));
  554.                 return 1;   /* filename truncated */
  555.             }
  556.         }
  557.         Trace((stderr, "buildpath now = [%s]n", buildpath));
  558.         return 0;  /* could check for existence here, prompt for new name... */
  559.     }
  560. /*---------------------------------------------------------------------------
  561.     INIT:  allocate and initialize buffer space for the file currently being
  562.     extracted.  If file was renamed with an absolute path, don't prepend the
  563.     extract-to path.
  564.   ---------------------------------------------------------------------------*/
  565. /* GRR:  for VMS and TOPS-20, add up to 13 to strlen */
  566.     if (FUNCTION == INIT) {
  567.         Trace((stderr, "initializing buildpath to "));
  568. #ifdef ACORN_FTYPE_NFS
  569.         if ((buildpath = (char *)malloc(strlen(G.filename)+rootlen+
  570.                                         (uO.acorn_nfs_ext ? 5 : 1)))
  571. #else
  572.         if ((buildpath = (char *)malloc(strlen(G.filename)+rootlen+1))
  573. #endif
  574.             == (char *)NULL)
  575.             return 10;
  576.         if ((rootlen > 0) && !renamed_fullpath) {
  577.             strcpy(buildpath, rootpath);
  578.             end = buildpath + rootlen;
  579.         } else {
  580.             *buildpath = '';
  581.             end = buildpath;
  582.         }
  583.         Trace((stderr, "[%s]n", buildpath));
  584.         return 0;
  585.     }
  586. /*---------------------------------------------------------------------------
  587.     ROOT:  if appropriate, store the path in rootpath and create it if neces-
  588.     sary; else assume it's a zipfile member and return.  This path segment
  589.     gets used in extracting all members from every zipfile specified on the
  590.     command line.
  591.   ---------------------------------------------------------------------------*/
  592. #if (!defined(SFX) || defined(SFX_EXDIR))
  593.     if (FUNCTION == ROOT) {
  594.         Trace((stderr, "initializing root path to [%s]n", pathcomp));
  595.         if (pathcomp == (char *)NULL) {
  596.             rootlen = 0;
  597.             return 0;
  598.         }
  599.         if ((rootlen = strlen(pathcomp)) > 0) {
  600.             if (pathcomp[rootlen-1] == '/') {
  601.                 pathcomp[--rootlen] = '';
  602.             }
  603.             if (rootlen > 0 && (stat(pathcomp, &G.statbuf) ||
  604.                 !S_ISDIR(G.statbuf.st_mode)))       /* path does not exist */
  605.             {
  606.                 if (!G.create_dirs /* || iswild(pathcomp) */ ) {
  607.                     rootlen = 0;
  608.                     return 2;   /* skip (or treat as stored file) */
  609.                 }
  610.                 /* create the directory (could add loop here to scan pathcomp
  611.                  * and create more than one level, but why really necessary?) */
  612.                 if (mkdir(pathcomp, 0777) == -1) {
  613.                     Info(slide, 1, ((char *)slide,
  614.                       "checkdir:  cannot create extraction directory: %sn",
  615.                       pathcomp));
  616.                     rootlen = 0;   /* path didn't exist, tried to create, and */
  617.                     return 3;  /* failed:  file exists, or 2+ levels required */
  618.                 }
  619.             }
  620.             if ((rootpath = (char *)malloc(rootlen+2)) == (char *)NULL) {
  621.                 rootlen = 0;
  622.                 return 10;
  623.             }
  624.             strcpy(rootpath, pathcomp);
  625.             rootpath[rootlen++] = '/';
  626.             rootpath[rootlen] = '';
  627.             Trace((stderr, "rootpath now = [%s]n", rootpath));
  628.         }
  629.         return 0;
  630.     }
  631. #endif /* !SFX || SFX_EXDIR */
  632. /*---------------------------------------------------------------------------
  633.     END:  free rootpath, immediately prior to program exit.
  634.   ---------------------------------------------------------------------------*/
  635.     if (FUNCTION == END) {
  636.         Trace((stderr, "freeing rootpathn"));
  637.         if (rootlen > 0) {
  638.             free(rootpath);
  639.             rootlen = 0;
  640.         }
  641.         return 0;
  642.     }
  643.     return 99;  /* should never reach */
  644. } /* end function checkdir() */
  645. #ifdef NO_MKDIR
  646. /********************/
  647. /* Function mkdir() */
  648. /********************/
  649. int mkdir(path, mode)
  650.     char *path;
  651.     int mode;   /* ignored */
  652. /*
  653.  * returns:   0 - successful
  654.  *           -1 - failed (errno not set, however)
  655.  */
  656. {
  657.     char command[FILNAMSIZ+40]; /* buffer for system() call */
  658.     /* GRR 930416:  added single quotes around path to avoid bug with
  659.      * creating directories with ampersands in name; not yet tested */
  660.     sprintf(command, "IFS=" tn" /bin/mkdir '%s' 2>/dev/null", path);
  661.     if (system(command))
  662.         return -1;
  663.     return 0;
  664. }
  665. #endif /* NO_MKDIR */
  666. #if 0
  667. #ifdef MORE
  668. /**************************/
  669. /* Function screenlines() */
  670. /**************************/
  671. int screenlines()
  672. {
  673.     char *envptr, *getenv();
  674.     int n;
  675.     /* GRR:  this is overly simplistic; should use winsize struct and
  676.      * appropriate TIOCGWINSZ ioctl(), assuming exists on enough systems
  677.      */
  678.     envptr = getenv("LINES");
  679.     if (envptr == (char *)NULL || (n = atoi(envptr)) < 5)
  680.         return 24;   /* VT-100 assumed to be minimal hardware */
  681.     else
  682.         return n;
  683. }
  684. #endif /* MORE */
  685. #endif /* 0 */
  686. #ifndef MTS
  687. /****************************/
  688. /* Function close_outfile() */
  689. /****************************/
  690. void close_outfile(__G)    /* GRR: change to return PK-style warning level */
  691.     __GDEF
  692. {
  693.     iztimes zt;
  694.     ush z_uidgid[2];
  695.     unsigned eb_izux_flg;
  696. /*---------------------------------------------------------------------------
  697.     If symbolic links are supported, allocate a storage area, put the uncom-
  698.     pressed "data" in it, and create the link.  Since we know it's a symbolic
  699.     link to start with, we shouldn't have to worry about overflowing unsigned
  700.     ints with unsigned longs.
  701.   ---------------------------------------------------------------------------*/
  702. #ifdef SYMLINKS
  703.     if (G.symlnk) {
  704.         unsigned ucsize = (unsigned)G.lrec.ucsize;
  705.         char *linktarget = (char *)malloc((unsigned)G.lrec.ucsize+1);
  706.         fclose(G.outfile);                      /* close "data" file... */
  707.         G.outfile = fopen(G.filename, FOPR);    /* ...and reopen for reading */
  708.         if (!linktarget || fread(linktarget, 1, ucsize, G.outfile) !=
  709.                            (int)ucsize)
  710.         {
  711.             Info(slide, 0x201, ((char *)slide,
  712.               "warning:  symbolic link (%s) failedn", G.filename));
  713.             if (linktarget)
  714.                 free(linktarget);
  715.             fclose(G.outfile);
  716.             return;
  717.         }
  718.         fclose(G.outfile);                  /* close "data" file for good... */
  719.         unlink(G.filename);                 /* ...and delete it */
  720.         linktarget[ucsize] = '';
  721.         if (QCOND2)
  722.             Info(slide, 0, ((char *)slide, "-> %s ", linktarget));
  723.         if (symlink(linktarget, G.filename))  /* create the real link */
  724.             perror("symlink error");
  725.         free(linktarget);
  726.         return;                             /* can't set time on symlinks */
  727.     }
  728. #endif /* SYMLINKS */
  729.     fclose(G.outfile);
  730. #ifdef QLZIP
  731.     if (G.extra_field) {
  732.         static void qlfix OF((__GPRO__ uch *ef_ptr, unsigned ef_len));
  733.         qlfix(__G__ G.extra_field, G.lrec.extra_field_length);
  734.     }
  735. #endif
  736. /*---------------------------------------------------------------------------
  737.     Convert from MSDOS-format local time and date to Unix-format 32-bit GMT
  738.     time:  adjust base year from 1980 to 1970, do usual conversions from
  739.     yy/mm/dd hh:mm:ss to elapsed seconds, and account for timezone and day-
  740.     light savings time differences.  If we have a Unix extra field, however,
  741.     we're laughing:  both mtime and atime are ours.  On the other hand, we
  742.     then have to check for restoration of UID/GID.
  743.   ---------------------------------------------------------------------------*/
  744.     eb_izux_flg = (G.extra_field ? ef_scan_for_izux(G.extra_field,
  745.                    G.lrec.extra_field_length, 0, G.lrec.last_mod_dos_datetime,
  746. #ifdef IZ_CHECK_TZ
  747.                    (G.tz_is_valid ? &zt : NULL),
  748. #else
  749.                    &zt,
  750. #endif
  751.                    z_uidgid) : 0);
  752.     if (eb_izux_flg & EB_UT_FL_MTIME) {
  753.         TTrace((stderr, "nclose_outfile:  Unix e.f. modif. time = %ldn",
  754.           zt.mtime));
  755.     } else {
  756.         zt.mtime = dos_to_unix_time(G.lrec.last_mod_dos_datetime);
  757.     }
  758.     if (eb_izux_flg & EB_UT_FL_ATIME) {
  759.         TTrace((stderr, "close_outfile:  Unix e.f. access time = %ldn",
  760.           zt.atime));
  761.     } else {
  762.         zt.atime = zt.mtime;
  763.         TTrace((stderr, "nclose_outfile:  modification/access times = %ldn",
  764.           zt.mtime));
  765.     }
  766.     /* if -X option was specified and we have UID/GID info, restore it */
  767.     if (uO.X_flag && eb_izux_flg & EB_UX2_VALID) {
  768.         TTrace((stderr, "close_outfile:  restoring Unix UID/GID infon"));
  769.         if (chown(G.filename, (uid_t)z_uidgid[0], (gid_t)z_uidgid[1]))
  770.         {
  771.             if (uO.qflag)
  772.                 Info(slide, 0x201, ((char *)slide,
  773.                   "warning:  cannot set UID %d and/or GID %d for %sn",
  774.                   z_uidgid[0], z_uidgid[1], G.filename));
  775.             else
  776.                 Info(slide, 0x201, ((char *)slide,
  777.                   " (warning) cannot set UID %d and/or GID %d",
  778.                   z_uidgid[0], z_uidgid[1]));
  779.         }
  780.     }
  781.     /* set the file's access and modification times */
  782.     if (utime(G.filename, (ztimbuf *)&zt)) {
  783. #ifdef AOS_VS
  784.         if (uO.qflag)
  785.             Info(slide, 0x201, ((char *)slide, "... cannot set time for %sn",
  786.               G.filename));
  787.         else
  788.             Info(slide, 0x201, ((char *)slide, "... cannot set time"));
  789. #else
  790.         if (uO.qflag)
  791.             Info(slide, 0x201, ((char *)slide,
  792.               "warning:  cannot set times for %sn", G.filename));
  793.         else
  794.             Info(slide, 0x201, ((char *)slide,
  795.               " (warning) cannot set times"));
  796. #endif /* ?AOS_VS */
  797.     }
  798. /*---------------------------------------------------------------------------
  799.     Change the file permissions from default ones to those stored in the
  800.     zipfile.
  801.   ---------------------------------------------------------------------------*/
  802. #ifndef NO_CHMOD
  803.     if (chmod(G.filename, 0xffff & G.pInfo->file_attr))
  804.         perror("chmod (file attributes) error");
  805. #endif
  806. } /* end function close_outfile() */
  807. #endif /* !MTS */
  808. #ifdef SET_DIR_ATTRIB
  809. /* messages of code for setting directory attributes */
  810. static char Far DirlistUidGidFailed[] =
  811.   "warning:  cannot set UID %d and/or GID %d for %sn";
  812. static char Far DirlistUtimeFailed[] =
  813.   "warning:  cannot set modification, access times for %sn";
  814. #  ifndef NO_CHMOD
  815.   static char Far DirlistChmodFailed[] =
  816.     "warning:  cannot set permissions for %sn";
  817. #  endif
  818. int set_direc_attribs(__G__ d)
  819.     __GDEF
  820.     dirtime *d;
  821. {
  822.     int errval = PK_OK;
  823.     if (d->have_uidgid &&
  824.         chown(d->fn, (uid_t)d->uidgid[0], (gid_t)d->uidgid[1]))
  825.     {
  826.         Info(slide, 0x201, ((char *)slide,
  827.           LoadFarString(DirlistUidGidFailed),
  828.           d->uidgid[0], d->uidgid[1], d->fn));
  829.         if (!errval)
  830.             errval = PK_WARN;
  831.     }
  832.     if (utime(d->fn, &d->u.t2)) {
  833.         Info(slide, 0x201, ((char *)slide,
  834.           LoadFarString(DirlistUtimeFailed), d->fn));
  835.         if (!errval)
  836.             errval = PK_WARN;
  837.     }
  838. #ifndef NO_CHMOD
  839.     if (chmod(d->fn, 0xffff & d->perms)) {
  840.         Info(slide, 0x201, ((char *)slide,
  841.           LoadFarString(DirlistChmodFailed), d->fn));
  842.         /* perror("chmod (file attributes) error"); */
  843.         if (!errval)
  844.             errval = PK_WARN;
  845.     }
  846. #endif /* !NO_CHMOD */
  847.     return errval;
  848. } /* end function set_directory_attributes() */
  849. #endif /* SET_DIR_ATTRIB */
  850. #ifdef TIMESTAMP
  851. /***************************/
  852. /*  Function stamp_file()  */
  853. /***************************/
  854. int stamp_file(fname, modtime)
  855.     ZCONST char *fname;
  856.     time_t modtime;
  857. {
  858.     ztimbuf tp;
  859.     tp.modtime = tp.actime = modtime;
  860.     return (utime(fname, &tp));
  861. } /* end function stamp_file() */
  862. #endif /* TIMESTAMP */
  863. #ifndef SFX
  864. /************************/
  865. /*  Function version()  */
  866. /************************/
  867. void version(__G)
  868.     __GDEF
  869. {
  870. #if defined(CRAY) || defined(NX_CURRENT_COMPILER_RELEASE) || defined(NetBSD)
  871.     char buf1[40];
  872. #if defined(CRAY) || defined(NX_CURRENT_COMPILER_RELEASE)
  873.     char buf2[40];
  874. #endif
  875. #endif
  876.     /* Pyramid, NeXT have problems with huge macro expansion, too:  no Info() */
  877.     sprintf((char *)slide, LoadFarString(CompiledWith),
  878. #ifdef __GNUC__
  879. #  ifdef NX_CURRENT_COMPILER_RELEASE
  880.       (sprintf(buf1, "NeXT DevKit %d.%02d ", NX_CURRENT_COMPILER_RELEASE/100,
  881.         NX_CURRENT_COMPILER_RELEASE%100), buf1),
  882.       (strlen(__VERSION__) > 8)? "(gcc)" :
  883.         (sprintf(buf2, "(gcc %s)", __VERSION__), buf2),
  884. #  else
  885.       "gcc ", __VERSION__,
  886. #  endif
  887. #else
  888. #  if defined(CRAY) && defined(_RELEASE)
  889.       "cc ", (sprintf(buf1, "version %d", _RELEASE), buf1),
  890. #  else
  891. #  ifdef __VERSION__
  892.       "cc ", __VERSION__,
  893. #  else
  894.       "cc", "",
  895. #  endif
  896. #  endif
  897. #endif
  898.       "Unix",
  899. #if defined(sgi) || defined(__sgi)
  900.       " (Silicon Graphics IRIX)",
  901. #else
  902. #ifdef sun
  903. #  ifdef sparc
  904. #    ifdef __SVR4
  905.       " (Sun SPARC/Solaris)",
  906. #    else /* may or may not be SunOS */
  907.       " (Sun SPARC)",
  908. #    endif
  909. #  else
  910. #  if defined(sun386) || defined(i386)
  911.       " (Sun 386i)",
  912. #  else
  913. #  if defined(mc68020) || defined(__mc68020__)
  914.       " (Sun 3)",
  915. #  else /* mc68010 or mc68000:  Sun 2 or earlier */
  916.       " (Sun 2)",
  917. #  endif
  918. #  endif
  919. #  endif
  920. #else
  921. #ifdef __hpux
  922.       " (HP/UX)",
  923. #else
  924. #ifdef __osf__
  925.       " (DEC OSF/1)",
  926. #else
  927. #ifdef _AIX
  928.       " (IBM AIX)",
  929. #else
  930. #ifdef aiws
  931.       " (IBM RT/AIX)",
  932. #else
  933. #if defined(CRAY) || defined(cray)
  934. #  ifdef _UNICOS
  935.       (sprintf(buf2, " (Cray UNICOS release %d)", _UNICOS), buf2),
  936. #  else
  937.       " (Cray UNICOS)",
  938. #  endif
  939. #else
  940. #if defined(uts) || defined(UTS)
  941.       " (Amdahl UTS)",
  942. #else
  943. #ifdef NeXT
  944. #  ifdef mc68000
  945.       " (NeXTStep/black)",
  946. #  else
  947.       " (NeXTStep for Intel)",
  948. #  endif
  949. #else              /* the next dozen or so are somewhat order-dependent */
  950. #ifdef LINUX
  951. #  ifdef __ELF__
  952.       " (Linux ELF)",
  953. #  else
  954.       " (Linux a.out)",
  955. #  endif
  956. #else
  957. #ifdef MINIX
  958.       " (Minix)",
  959. #else
  960. #ifdef M_UNIX
  961.       " (SCO Unix)",
  962. #else
  963. #ifdef M_XENIX
  964.       " (SCO Xenix)",
  965. #else
  966. #ifdef __NetBSD__
  967. #  ifdef NetBSD0_8
  968.       (sprintf(buf1, " (NetBSD 0.8%c)", (char)(NetBSD0_8 - 1 + 'A')), buf1),
  969. #  else
  970. #  ifdef NetBSD0_9
  971.       (sprintf(buf1, " (NetBSD 0.9%c)", (char)(NetBSD0_9 - 1 + 'A')), buf1),
  972. #  else
  973. #  ifdef NetBSD1_0
  974.       (sprintf(buf1, " (NetBSD 1.0%c)", (char)(NetBSD1_0 - 1 + 'A')), buf1),
  975. #  else
  976.       (BSD4_4 == 0.5)? " (NetBSD before 0.9)" : " (NetBSD 1.1 or later)",
  977. #  endif
  978. #  endif
  979. #  endif
  980. #else
  981. #ifdef __FreeBSD__
  982.       (BSD4_4 == 0.5)? " (FreeBSD 1.x)" : " (FreeBSD 2.0 or later)",
  983. #else
  984. #ifdef __bsdi__
  985.       (BSD4_4 == 0.5)? " (BSD/386 1.0)" : " (BSD/386 1.1 or later)",
  986. #else
  987. #ifdef __386BSD__
  988.       (BSD4_4 == 1)? " (386BSD, post-4.4 release)" : " (386BSD)",
  989. #else
  990. #if defined(i486) || defined(__i486) || defined(__i486__)
  991.       " (Intel 486)",
  992. #else
  993. #if defined(i386) || defined(__i386) || defined(__i386__)
  994.       " (Intel 386)",
  995. #else
  996. #ifdef pyr
  997.       " (Pyramid)",
  998. #else
  999. #ifdef ultrix
  1000. #  ifdef mips
  1001.       " (DEC/MIPS)",
  1002. #  else
  1003. #  ifdef vax
  1004.       " (DEC/VAX)",
  1005. #  else /* __alpha? */
  1006.       " (DEC/Alpha)",
  1007. #  endif
  1008. #  endif
  1009. #else
  1010. #ifdef gould
  1011.       " (Gould)",
  1012. #else
  1013. #ifdef MTS
  1014.       " (MTS)",
  1015. #else
  1016. #ifdef __convexc__
  1017.       " (Convex)",
  1018. #else
  1019. #ifdef __QNX__
  1020.       " (QNX 4)",
  1021. #else
  1022. #ifdef __QNXNTO__
  1023.       " (QNX Neutrino)",
  1024. #else
  1025. #ifdef Lynx
  1026.       " (LynxOS)",
  1027. #else
  1028.       "",
  1029. #endif /* Lynx */
  1030. #endif /* QNX Neutrino */
  1031. #endif /* QNX 4 */
  1032. #endif /* Convex */
  1033. #endif /* MTS */
  1034. #endif /* Gould */
  1035. #endif /* DEC */
  1036. #endif /* Pyramid */
  1037. #endif /* 386 */
  1038. #endif /* 486 */
  1039. #endif /* 386BSD */
  1040. #endif /* BSDI BSD/386 */
  1041. #endif /* NetBSD */
  1042. #endif /* FreeBSD */
  1043. #endif /* SCO Xenix */
  1044. #endif /* SCO Unix */
  1045. #endif /* Minix */
  1046. #endif /* Linux */
  1047. #endif /* NeXT */
  1048. #endif /* Amdahl */
  1049. #endif /* Cray */
  1050. #endif /* RT/AIX */
  1051. #endif /* AIX */
  1052. #endif /* OSF/1 */
  1053. #endif /* HP/UX */
  1054. #endif /* Sun */
  1055. #endif /* SGI */
  1056. #ifdef __DATE__
  1057.       " on ", __DATE__
  1058. #else
  1059.       "", ""
  1060. #endif
  1061.     );
  1062.     (*G.message)((zvoid *)&G, slide, (ulg)strlen((char *)slide), 0);
  1063. } /* end function version() */
  1064. #endif /* !SFX */
  1065. #ifdef QLZIP
  1066. struct qdirect  {
  1067.     long            d_length __attribute__ ((packed));  /* file length */
  1068.     unsigned char   d_access __attribute__ ((packed));  /* file access type */
  1069.     unsigned char   d_type __attribute__ ((packed));    /* file type */
  1070.     long            d_datalen __attribute__ ((packed)); /* data length */
  1071.     long            d_reserved __attribute__ ((packed));/* Unused */
  1072.     short           d_szname __attribute__ ((packed));  /* size of name */
  1073.     char            d_name[36] __attribute__ ((packed));/* name area */
  1074.     long            d_update __attribute__ ((packed));  /* last update */
  1075.     long            d_refdate __attribute__ ((packed));
  1076.     long            d_backup __attribute__ ((packed));   /* EOD */
  1077. };
  1078. #define LONGID  "QDOS02"
  1079. #define EXTRALEN (sizeof(struct qdirect) + 8)
  1080. #define JBLONGID    "QZHD"
  1081. #define JBEXTRALEN  (sizeof(jbextra)  - 4 * sizeof(char))
  1082. typedef struct {
  1083.     char        eb_header[4] __attribute__ ((packed));  /* place_holder */
  1084.     char        longid[8] __attribute__ ((packed));
  1085.     struct      qdirect     header __attribute__ ((packed));
  1086. } qdosextra;
  1087. typedef struct {
  1088.     char        eb_header[4];                           /* place_holder */
  1089.     char        longid[4];
  1090.     struct      qdirect     header;
  1091. } jbextra;
  1092. /*  The following two functions SH() and LG() convert big-endian short
  1093.  *  and long numbers into native byte order.  They are some kind of
  1094.  *  counterpart to the generic UnZip's makeword() and makelong() functions.
  1095.  */
  1096. static ush SH(ush val)
  1097. {
  1098.     uch swapbuf[2];
  1099.     swapbuf[1] = (uch)(val & 0xff);
  1100.     swapbuf[0] = (uch)(val >> 8);
  1101.     return (*(ush *)swapbuf);
  1102. }
  1103. static ulg LG(ulg val)
  1104. {
  1105.     /*  convert the big-endian unsigned long number `val' to the machine
  1106.      *  dependant representation
  1107.      */
  1108.     ush swapbuf[2];
  1109.     swapbuf[1] = SH((ush)(val & 0xffff));
  1110.     swapbuf[0] = SH((ush)(val >> 16));
  1111.     return (*(ulg *)swapbuf);
  1112. }
  1113. static void qlfix(__G__ ef_ptr, ef_len)
  1114.     __GDEF
  1115.     uch *ef_ptr;
  1116.     unsigned ef_len;
  1117. {
  1118.     while (ef_len >= EB_HEADSIZE)
  1119.     {
  1120.         unsigned    eb_id  = makeword(EB_ID + ef_ptr);
  1121.         unsigned    eb_len = makeword(EB_LEN + ef_ptr);
  1122.         if (eb_len > (ef_len - EB_HEADSIZE)) {
  1123.             /* discovered some extra field inconsistency! */
  1124.             Trace((stderr,
  1125.               "qlfix: block length %u > rest ef_size %un", eb_len,
  1126.               ef_len - EB_HEADSIZE));
  1127.             break;
  1128.         }
  1129.         switch (eb_id) {
  1130.           case EF_QDOS:
  1131.           {
  1132.             struct _ntc_
  1133.             {
  1134.                 long id;
  1135.                 long dlen;
  1136.             } ntc;
  1137.             long dlen = 0;
  1138.             qdosextra   *extra = (qdosextra *)ef_ptr;
  1139.             jbextra     *jbp   = (jbextra   *)ef_ptr;
  1140.             if (!strncmp(extra->longid, LONGID, strlen(LONGID)))
  1141.             {
  1142.                 if (eb_len != EXTRALEN)
  1143.                     if (uO.qflag)
  1144.                         Info(slide, 0x201, ((char *)slide,
  1145.                           "warning:  invalid length in Qdos field for %sn",
  1146.                           G.filename));
  1147.                     else
  1148.                         Info(slide, 0x201, ((char *)slide,
  1149.                           "warning:  invalid length in Qdos field"));
  1150.                 if (extra->header.d_type)
  1151.                 {
  1152.                     dlen = extra->header.d_datalen;
  1153.                 }
  1154.             }
  1155.             if (!strncmp(jbp->longid, JBLONGID, strlen(JBLONGID)))
  1156.             {
  1157.                 if (eb_len != JBEXTRALEN)
  1158.                     if (uO.qflag)
  1159.                         Info(slide, 0x201, ((char *)slide,
  1160.                           "warning:  invalid length in QZ field for %sn",
  1161.                           G.filename));
  1162.                     else
  1163.                         Info(slide, 0x201, ((char *)slide,
  1164.                           "warning:  invalid length in QZ field"));
  1165.                 if(jbp->header.d_type)
  1166.                 {
  1167.                     dlen = jbp->header.d_datalen;
  1168.                 }
  1169.             }
  1170.             if ((long)LG(dlen) > 0)
  1171.             {
  1172.                 G.outfile = fopen(G.filename,"r+");
  1173.                 fseek(G.outfile, -8, SEEK_END);
  1174.                 fread(&ntc, 8, 1, G.outfile);
  1175.                 if(ntc.id != *(long *)"XTcc")
  1176.                 {
  1177.                     ntc.id = *(long *)"XTcc";
  1178.                     ntc.dlen = dlen;
  1179.                     fwrite (&ntc, 8, 1, G.outfile);
  1180.                 }
  1181.                 Info(slide, 0x201, ((char *)slide, "QData = %d", LG(dlen)));
  1182.                 fclose(G.outfile);
  1183.             }
  1184.             return;     /* finished, cancel further extra field scanning */
  1185.           }
  1186.           default:
  1187.             Trace((stderr,"qlfix: unknown extra field block, ID=%dn",
  1188.                eb_id));
  1189.         }
  1190.         /* Skip this extra field block */
  1191.         ef_ptr += (eb_len + EB_HEADSIZE);
  1192.         ef_len -= (eb_len + EB_HEADSIZE);
  1193.     }
  1194. }
  1195. #endif /* QLZIP */
  1196. #ifdef ACORN_FTYPE_NFS
  1197. /* Acorn bits for NFS filetyping */
  1198. static int isRISCOSexfield(uch *extra_field)
  1199. {
  1200.  if (extra_field != NULL) {
  1201.    RO_extra_block *block = (RO_extra_block *)extra_field;
  1202.    return (
  1203.      makeword(block->ID) == EF_SPARK &&
  1204.      (makeword(block->size) == 24 || makeword(block->size) == 20) &&
  1205.      makelong(block->ID_2) == 0x30435241 /* ARC0 */);
  1206.  }
  1207.  return FALSE;
  1208. }
  1209. #endif /* ACORN_FTYPE_NFS */