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

压缩解压

开发平台:

MultiPlatform

  1. /*---------------------------------------------------------------------------
  2.   aosvs.c
  3.   AOS/VS-specific routines for use with Info-ZIP's UnZip 5.2 and later.
  4. [GRR:  copied from unix.c -> undoubtedly has unnecessary stuff: delete at will]
  5.   Contains:  readdir()
  6.              do_wild()
  7.              open_outfile()
  8.              mapattr()
  9.              mapname()
  10.              checkdir()
  11.              screenlines()
  12.              close_outfile()
  13.              version()             <-- GRR:  needs work!  (Unix, not AOS/VS)
  14.              zvs_create()
  15.              zvs_credir()
  16.              ux_to_vs_name()
  17.              dgdate()
  18.   ---------------------------------------------------------------------------*/
  19. #define UNZIP_INTERNAL
  20. #include "unzip.h"
  21. #include "aosvs/aosvs.h"
  22. #include <packets/create.h>
  23. #include <sys_calls.h>
  24. #include <paru.h>
  25. #define symlink(resname,linkname) 
  26.   zvs_create(linkname,-1L,-1L,-1L,ux_to_vs_name(vs_resname,resname),$FLNK,-1,-1)
  27.                                              *  file type */
  28. #ifdef DIRENT
  29. #  include <dirent.h>
  30. #else
  31. #  ifdef SYSV
  32. #    ifdef SYSNDIR
  33. #      include <sys/ndir.h>
  34. #    else
  35. #      include <ndir.h>
  36. #    endif
  37. #  else /* !SYSV */
  38. #    ifndef NO_SYSDIR
  39. #      include <sys/dir.h>
  40. #    endif
  41. #  endif /* ?SYSV */
  42. #  ifndef dirent
  43. #    define dirent direct
  44. #  endif
  45. #endif /* ?DIRENT */
  46. static int            created_dir;          /* used in mapname(), checkdir() */
  47. static int            renamed_fullpath;     /* ditto */
  48. static ZEXTRAFLD      zzextrafld;           /* buffer for extra field containing
  49.                                              *  ?FSTAT packet & ACL buffer */
  50. static char           vs_resname[2*$MXPL];
  51. static char           vs_path[2*$MXPL];     /* buf for AOS/VS pathname */
  52. static char           Vs_path[512];         /* should be big enough [GRR: ?] */
  53. static P_CTIM         zztimeblock;          /* time block for file creation */
  54. static ZVSCREATE_STRU zzcreatepacket;       /* packet for sys_create(), any
  55. /***************************/
  56. /* Strings used in aosvs.c */
  57. /***************************/
  58. static ZCONST char Far CannotDeleteOldFile[] =
  59.   "error:  cannot delete old %sn";
  60. static ZCONST char Far CannotCreateFile[] = "error:  cannot create %sn";
  61. #ifndef SFX
  62. #ifdef NO_DIR                  /* for AT&T 3B1 */
  63. #define opendir(path) fopen(path,"r")
  64. #define closedir(dir) fclose(dir)
  65. typedef FILE DIR;
  66. /*
  67.  *  Apparently originally by Rich Salz.
  68.  *  Cleaned up and modified by James W. Birdsall.
  69.  */
  70. struct dirent *readdir(dirp)
  71.     DIR *dirp;
  72. {
  73.     static struct dirent entry;
  74.     if (dirp == NULL)
  75.         return NULL;
  76.     for (;;)
  77.         if (fread(&entry, sizeof (struct dirent), 1, dirp) == 0)
  78.             return (struct dirent *)NULL;
  79.         else if (entry.d_ino)
  80.             return &entry;
  81. } /* end function readdir() */
  82. #endif /* NO_DIR */
  83. /**********************/
  84. /* Function do_wild() */   /* for porting:  dir separator; match(ignore_case) */
  85. /**********************/
  86. char *do_wild(__G__ wildspec)
  87.     __GDEF
  88.     char *wildspec;         /* only used first time on a given dir */
  89. {
  90.     static DIR *dir = (DIR *)NULL;
  91.     static char *dirname, *wildname, matchname[FILNAMSIZ];
  92.     static int firstcall=TRUE, have_dirname, dirnamelen;
  93.     struct dirent *file;
  94.     /* Even when we're just returning wildspec, we *always* do so in
  95.      * matchname[]--calling routine is allowed to append four characters
  96.      * to the returned string, and wildspec may be a pointer to argv[].
  97.      */
  98.     if (firstcall) {        /* first call:  must initialize everything */
  99.         firstcall = FALSE;
  100.         if (!iswild(wildspec)) {
  101.             strcpy(matchname, wildspec);
  102.             have_dirname = FALSE;
  103.             dir = NULL;
  104.             return matchname;
  105.         }
  106.         /* break the wildspec into a directory part and a wildcard filename */
  107.         if ((wildname = strrchr(wildspec, '/')) == (char *)NULL) {
  108.             dirname = ".";
  109.             dirnamelen = 1;
  110.             have_dirname = FALSE;
  111.             wildname = wildspec;
  112.         } else {
  113.             ++wildname;     /* point at character after '/' */
  114.             dirnamelen = wildname - wildspec;
  115.             if ((dirname = (char *)malloc(dirnamelen+1)) == (char *)NULL) {
  116.                 Info(slide, 0x201, ((char *)slide,
  117.                   "warning:  cannot allocate wildcard buffersn"));
  118.                 strcpy(matchname, wildspec);
  119.                 return matchname;   /* but maybe filespec was not a wildcard */
  120.             }
  121.             strncpy(dirname, wildspec, dirnamelen);
  122.             dirname[dirnamelen] = '';   /* terminate for strcpy below */
  123.             have_dirname = TRUE;
  124.         }
  125.         if ((dir = opendir(dirname)) != (DIR *)NULL) {
  126.             while ((file = readdir(dir)) != (struct dirent *)NULL) {
  127.                 Trace((stderr, "do_wild:  readdir returns %sn", file->d_name));
  128.                 if (file->d_name[0] == '.' && wildname[0] != '.')
  129.                     continue;  /* Unix:  '*' and '?' do not match leading dot */
  130.                 if (match(file->d_name, wildname, 0) &&  /* 0 == case sens. */
  131.                     /* skip "." and ".." directory entries */
  132.                     strcmp(file->d_name, ".") && strcmp(file->d_name, "..")) {
  133.                     Trace((stderr, "do_wild:  match() succeedsn"));
  134.                     if (have_dirname) {
  135.                         strcpy(matchname, dirname);
  136.                         strcpy(matchname+dirnamelen, file->d_name);
  137.                     } else
  138.                         strcpy(matchname, file->d_name);
  139.                     return matchname;
  140.                 }
  141.             }
  142.             /* if we get to here directory is exhausted, so close it */
  143.             closedir(dir);
  144.             dir = (DIR *)NULL;
  145.         }
  146.         /* return the raw wildspec in case that works (e.g., directory not
  147.          * searchable, but filespec was not wild and file is readable) */
  148.         strcpy(matchname, wildspec);
  149.         return matchname;
  150.     }
  151.     /* last time through, might have failed opendir but returned raw wildspec */
  152.     if (dir == (DIR *)NULL) {
  153.         firstcall = TRUE;  /* nothing left to try--reset for new wildspec */
  154.         if (have_dirname)
  155.             free(dirname);
  156.         return (char *)NULL;
  157.     }
  158.     /* If we've gotten this far, we've read and matched at least one entry
  159.      * successfully (in a previous call), so dirname has been copied into
  160.      * matchname already.
  161.      */
  162.     while ((file = readdir(dir)) != (struct dirent *)NULL) {
  163.         Trace((stderr, "do_wild:  readdir returns %sn", file->d_name));
  164.         if (file->d_name[0] == '.' && wildname[0] != '.')
  165.             continue;   /* Unix:  '*' and '?' do not match leading dot */
  166.         if (match(file->d_name, wildname, 0)) {   /* 0 == don't ignore case */
  167.             Trace((stderr, "do_wild:  match() succeedsn"));
  168.             if (have_dirname) {
  169.                 /* strcpy(matchname, dirname); */
  170.                 strcpy(matchname+dirnamelen, file->d_name);
  171.             } else
  172.                 strcpy(matchname, file->d_name);
  173.             return matchname;
  174.         }
  175.     }
  176.     closedir(dir);     /* have read at least one dir entry; nothing left */
  177.     dir = (DIR *)NULL;
  178.     firstcall = TRUE;  /* reset for new wildspec */
  179.     if (have_dirname)
  180.         free(dirname);
  181.     return (char *)NULL;
  182. } /* end function do_wild() */
  183. #endif /* !SFX */
  184. /***************************/
  185. /* Function open_outfile() */
  186. /***************************/
  187. int open_outfile(__G)         /* return 1 if fail */
  188.     __GDEF
  189. {
  190.     int errc = 1;    /* init to show no success with AOS/VS info */
  191.     long dmm, ddd, dyy, dhh, dmin, dss;
  192. #ifdef DLL
  193.     if (G.redirect_data)
  194.         return redirect_outfile(__G)==FALSE;
  195. #endif
  196.     if (stat(G.filename, &G.statbuf) == 0 && unlink(G.filename) < 0) {
  197.         Info(slide, 0x401, ((char *)slide, LoadFarString(CannotDeleteOldFile),
  198.           G.filename));
  199.         return 1;
  200.     }
  201. /*---------------------------------------------------------------------------
  202.     If the file didn't already exist, we created it earlier.  But we just
  203.     deleted it, which we still had to do in case we are overwriting an exis-
  204.     ting file.  So we must create it now, again, to set the creation time
  205.     properly.  (The creation time is the best functional approximation of
  206.     the Unix mtime.  Really!)
  207.     If we stored this with an AOS/VS Zip that set the extra field to contain
  208.     the ?FSTAT packet and the ACL, we should use info from the ?FSTAT call
  209.     now.  Otherwise (or if that fails), we should create anyway as best we
  210.     can from the normal Zip info.
  211.     In theory, we should look through an entire series of extra fields that
  212.     might exist for the same file, but we're not going to bother.  If we set
  213.     up other types of extra fields, or if other environments we run into may
  214.     add their own stuff to existing entries in Zip files, we'll have to.
  215.     Note that all the packet types for sys_fstat() are the same size & mostly
  216.     have the same structure, with some fields being unused, etc.  Ditto for
  217.     sys_create().  Thus, we assume a normal one here, not a dir/cpd or device
  218.     or IPC file, & make little adjustments as necessary.  We will set ACLs
  219.     later (to reduce the chance of lacking access to what we create now); note
  220.     that for links the resolution name should be stored in the ACL field (once
  221.     we get Zip recognizing links OK).
  222.   ---------------------------------------------------------------------------*/
  223.     if (G.extra_field != NULL) {
  224.         memcpy((char *) &zzextrafld, G.extra_field, sizeof(zzextrafld));
  225.         if (!memcmp(ZEXTRA_HEADID, zzextrafld.extra_header_id,
  226.                     sizeof(zzextrafld.extra_header_id))  &&
  227.             !memcmp(ZEXTRA_SENTINEL, zzextrafld.extra_sentinel),
  228.                     sizeof(zzextrafld.extra_sentinel))
  229.         {
  230.             zzcreatepacket.norm_create_packet.cftyp_format =
  231.               zzextrafld.fstat_packet.norm_fstat_packet.styp_format;
  232.             zzcreatepacket.norm_create_packet.cftyp_entry =
  233.               zzextrafld.fstat_packet.norm_fstat_packet.styp_type;
  234.             /* for DIRS/CPDs, the next one will give the hash frame size; for
  235.              * IPCs it will give the port number */
  236.             zzcreatepacket.norm_create_packet.ccps =
  237.               zzextrafld.fstat_packet.norm_fstat_packet.scps;
  238.             zzcreatepacket.norm_create_packet.ctim = &zztimeblock;
  239.             zztimeblock.tcth = zzextrafld.fstat_packet.norm_fstat_packet.stch;
  240.             /* access & modification times default to current */
  241.             zztimeblock.tath.long_time = zztimeblock.tmth.long_time = -1;
  242.             /* give it current process's ACL unless link; then give it
  243.              * resolution name */
  244.             zzcreatepacket.norm_create_packet.cacp = (char *)(-1);
  245.             if (zzcreatepacket.norm_create_packet.cftyp_entry == $FLNK)
  246.                 zzcreatepacket.norm_create_packet.cacp = zzextrafld.aclbuf;
  247.             zzcreatepacket.dir_create_packet.cmsh =
  248.               zzextrafld.fstat_packet.dir_fstat_packet.scsh;
  249.             if (zzcreatepacket.norm_create_packet.cftyp_entry != $FCPD) {
  250.                 /* element size for normal files */
  251.                 zzcreatepacket.norm_create_packet.cdel =
  252.                   zzextrafld.fstat_packet.norm_fstat_packet.sdeh;
  253.             }
  254.             zzcreatepacket.norm_create_packet.cmil =
  255.               zzextrafld.fstat_packet.norm_fstat_packet.smil;
  256.             if ((errc = sys_create(ux_to_vs_name(vs_path, G.filename),
  257.                  &zzcreatepacket)) != 0)
  258.                 Info(slide, 0x201, ((char *)slide,
  259.                   "error creating %s with AOS/VS info -n
  260.                   will try again with ordinary Zip infon", G.filename));
  261.         }
  262.     }
  263.     /* do it the hard way if no AOS/VS info was stored or if we had problems */
  264.     if (errc) {
  265.         dyy = (G.lrec.last_mod_dos_datetime >> 25) + 1980;
  266.         dmm = (G.lrec.last_mod_dos_datetime >> 21) & 0x0f;
  267.         ddd = (G.lrec.last_mod_dos_datetime >> 16) & 0x1f;
  268.         dhh = (G.lrec.last_mod_dos_datetime >> 11) & 0x1f;
  269.         dmin = (G.lrec.last_mod_dos_datetime >> 5) & 0x3f;
  270.         dss = (G.lrec.last_mod_dos_datetime << 1) & 0x3e;
  271.         if (zvs_create(G.filename, (((ulg)dgdate(dmm, ddd, dyy)) << 16) |
  272.             (dhh*1800L + dmin*30L + dss/2L), -1L, -1L, (char *) -1, -1, -1, -1))
  273.         {
  274.             Info(slide, 0x201, ((char *)slide, "error: %s: cannot createn",
  275.               G.filename));
  276.             return 1;
  277.         }
  278.     }
  279.     Trace((stderr, "open_outfile:  doing fopen(%s) for writingn", G.filename));
  280.     if ((G.outfile = fopen(G.filename, FOPW)) == (FILE *)NULL) {
  281.         Info(slide, 0x401, ((char *)slide, LoadFarString(CannotCreateFile),
  282.           G.filename));
  283.         return 1;
  284.     }
  285.     Trace((stderr, "open_outfile:  fopen(%s) for writing succeededn",
  286.       G.filename));
  287. #ifdef USE_FWRITE
  288. #ifdef _IOFBF  /* make output fully buffered (works just about like write()) */
  289.     setvbuf(G.outfile, (char *)slide, _IOFBF, WSIZE);
  290. #else
  291.     setbuf(G.outfile, (char *)slide);
  292. #endif
  293. #endif /* USE_FWRITE */
  294.     return 0;
  295. } /* end function open_outfile() */
  296. /**********************/
  297. /* Function mapattr() */
  298. /**********************/
  299. int mapattr(__G)
  300.     __GDEF
  301. {
  302.     ulg tmp = G.crec.external_file_attributes;
  303.     switch (G.pInfo->hostnum) {
  304.         case UNIX_:
  305.         case VMS_:
  306.         case ACORN_:
  307.         case ATARI_:
  308.         case BEOS_:
  309.         case QDOS_:
  310.             G.pInfo->file_attr = (unsigned)(tmp >> 16);
  311.             return 0;
  312.         case AMIGA_:
  313.             tmp = (unsigned)(tmp>>17 & 7);   /* Amiga RWE bits */
  314.             G.pInfo->file_attr = (unsigned)(tmp<<6 | tmp<<3 | tmp);
  315.             break;
  316.         /* all remaining cases:  expand MSDOS read-only bit into write perms */
  317.         case FS_FAT_:
  318.         case FS_HPFS_:
  319.         case FS_NTFS_:
  320.         case MAC_:
  321.         case TOPS20_:
  322.         default:
  323.             tmp = !(tmp & 1) << 1;   /* read-only bit --> write perms bits */
  324.             G.pInfo->file_attr = (unsigned)(0444 | tmp<<6 | tmp<<3 | tmp);
  325.             break;
  326.     } /* end switch (host-OS-created-by) */
  327.     /* for originating systems with no concept of "group," "other," "system": */
  328.     umask( (int)(tmp=umask(0)) );    /* apply mask to expanded r/w(/x) perms */
  329.     G.pInfo->file_attr &= ~tmp;
  330.     return 0;
  331. } /* end function mapattr() */
  332. /************************/
  333. /*  Function mapname()  */
  334. /************************/
  335.                              /* return 0 if no error, 1 if caution (filename */
  336. int mapname(__G__ renamed)   /*  truncated), 2 if warning (skip file because */
  337.     __GDEF                   /*  dir doesn't exist), 3 if error (skip file), */
  338.     int renamed;             /*  or 10 if out of memory (skip file) */
  339. {                            /*  [also IZ_VOL_LABEL, IZ_CREATED_DIR] */
  340.     char pathcomp[FILNAMSIZ];    /* path-component buffer */
  341.     char *pp, *cp=(char *)NULL;  /* character pointers */
  342.     char *lastsemi=(char *)NULL; /* pointer to last semi-colon in pathcomp */
  343.     int quote = FALSE;           /* flags */
  344.     int error = 0;
  345.     register unsigned workch;    /* hold the character being tested */
  346. /*---------------------------------------------------------------------------
  347.     Initialize various pointers and counters and stuff.
  348.   ---------------------------------------------------------------------------*/
  349.     if (G.pInfo->vollabel)
  350.         return IZ_VOL_LABEL;    /* can't set disk volume labels in Unix */
  351.     /* can create path as long as not just freshening, or if user told us */
  352.     G.create_dirs = (!uO.fflag || renamed);
  353.     created_dir = FALSE;        /* not yet */
  354.     /* user gave full pathname:  don't prepend rootpath */
  355.     renamed_fullpath = (renamed && (*G.filename == '/'));
  356.     if (checkdir(__G__ (char *)NULL, INIT) == 10)
  357.         return 10;              /* initialize path buffer, unless no memory */
  358.     *pathcomp = '';           /* initialize translation buffer */
  359.     pp = pathcomp;              /* point to translation buffer */
  360.     if (uO.jflag)               /* junking directories */
  361.         cp = (char *)strrchr(G.filename, '/');
  362.     if (cp == (char *)NULL)     /* no '/' or not junking dirs */
  363.         cp = G.filename;        /* point to internal zipfile-member pathname */
  364.     else
  365.         ++cp;                   /* point to start of last component of path */
  366. /*---------------------------------------------------------------------------
  367.     Begin main loop through characters in filename.
  368.   ---------------------------------------------------------------------------*/
  369.     while ((workch = (uch)*cp++) != 0) {
  370.         if (quote) {                 /* if character quoted, */
  371.             *pp++ = (char)workch;    /*  include it literally */
  372.             quote = FALSE;
  373.         } else
  374.             switch (workch) {
  375.             case '/':             /* can assume -j flag not given */
  376.                 *pp = '';
  377.                 if ((error = checkdir(__G__ pathcomp, APPEND_DIR)) > 1)
  378.                     return error;
  379.                 pp = pathcomp;    /* reset conversion buffer for next piece */
  380.                 lastsemi = (char *)NULL; /* leave directory semi-colons alone */
  381.                 break;
  382.             case ';':             /* VMS version (or DEC-20 attrib?) */
  383.                 lastsemi = pp;
  384.                 *pp++ = ';';      /* keep for now; remove VMS ";##" */
  385.                 break;            /*  later, if requested */
  386.             case '26':          /* control-V quote for special chars */
  387.                 quote = TRUE;     /* set flag for next character */
  388.                 break;
  389. #ifdef MTS
  390.             case ' ':             /* change spaces to underscore under */
  391.                 *pp++ = '_';      /*  MTS; leave as spaces under Unix */
  392.                 break;
  393. #endif
  394.             default:
  395.                 /* allow European characters in filenames: */
  396.                 if (isprint(workch) || (128 <= workch && workch <= 254))
  397.                     *pp++ = (char)workch;
  398.             } /* end switch */
  399.     } /* end while loop */
  400.     *pp = '';                   /* done with pathcomp:  terminate it */
  401.     /* if not saving them, remove VMS version numbers (appended ";###") */
  402.     if (!uO.V_flag && lastsemi) {
  403.         pp = lastsemi + 1;
  404.         while (isdigit((uch)(*pp)))
  405.             ++pp;
  406.         if (*pp == '')          /* only digits between ';' and end:  nuke */
  407.             *lastsemi = '';
  408.     }
  409. /*---------------------------------------------------------------------------
  410.     Report if directory was created (and no file to create:  filename ended
  411.     in '/'), check name to be sure it exists, and combine path and name be-
  412.     fore exiting.
  413.   ---------------------------------------------------------------------------*/
  414.     if (G.filename[strlen(G.filename) - 1] == '/') {
  415.         checkdir(__G__ G.filename, GETPATH);
  416.         if (created_dir) {
  417.             if (QCOND2) {
  418.                 Info(slide, 0, ((char *)slide, "   creating: %sn",
  419.                   G.filename));
  420.             }
  421.             return IZ_CREATED_DIR;   /* set dir time (note trailing '/') */
  422.         }
  423.         return 2;   /* dir existed already; don't look for data to extract */
  424.     }
  425.     if (*pathcomp == '') {
  426.         Info(slide, 1, ((char *)slide, "mapname:  conversion of %s failedn",
  427.           G.filename));
  428.         return 3;
  429.     }
  430.     checkdir(__G__ pathcomp, APPEND_NAME);  /* returns 1 if truncated: care? */
  431.     checkdir(__G__ G.filename, GETPATH);
  432.     return error;
  433. } /* end function mapname() */
  434. #if 0  /*========== NOTES ==========*/
  435.   extract-to dir:      a:path/
  436.   buildpath:           path1/path2/ ...   (NULL-terminated)
  437.   pathcomp:                filename
  438.   mapname():
  439.     loop over chars in zipfile member name
  440.       checkdir(path component, COMPONENT | CREATEDIR) --> map as required?
  441.         (d:/tmp/unzip/)                    (disk:[tmp.unzip.)
  442.         (d:/tmp/unzip/jj/)                 (disk:[tmp.unzip.jj.)
  443.         (d:/tmp/unzip/jj/temp/)            (disk:[tmp.unzip.jj.temp.)
  444.     finally add filename itself and check for existence? (could use with rename)
  445.         (d:/tmp/unzip/jj/temp/msg.outdir)  (disk:[tmp.unzip.jj.temp]msg.outdir)
  446.     checkdir(name, GETPATH)     -->  copy path to name and free space
  447. #endif /* 0 */
  448. /***********************/
  449. /* Function checkdir() */
  450. /***********************/
  451. int checkdir(__G__ pathcomp, flag)
  452.     __GDEF
  453.     char *pathcomp;
  454.     int flag;
  455. /*
  456.  * returns:  1 - (on APPEND_NAME) truncated filename
  457.  *           2 - path doesn't exist, not allowed to create
  458.  *           3 - path doesn't exist, tried to create and failed; or
  459.  *               path exists and is not a directory, but is supposed to be
  460.  *           4 - path is too long
  461.  *          10 - can't allocate memory for filename buffers
  462.  */
  463. {
  464.     static int rootlen = 0;   /* length of rootpath */
  465.     static char *rootpath;    /* user's "extract-to" directory */
  466.     static char *buildpath;   /* full path (so far) to extracted file */
  467.     static char *end;         /* pointer to end of buildpath ('') */
  468. #   define FN_MASK   7
  469. #   define FUNCTION  (flag & FN_MASK)
  470. /*---------------------------------------------------------------------------
  471.     APPEND_DIR:  append the path component to the path being built and check
  472.     for its existence.  If doesn't exist and we are creating directories, do
  473.     so for this one; else signal success or error as appropriate.
  474.   ---------------------------------------------------------------------------*/
  475.     if (FUNCTION == APPEND_DIR) {
  476.         int too_long = FALSE;
  477. #ifdef SHORT_NAMES
  478.         char *old_end = end;
  479. #endif
  480.         Trace((stderr, "appending dir segment [%s]n", pathcomp));
  481.         while ((*end = *pathcomp++) != '')
  482.             ++end;
  483. #ifdef SHORT_NAMES   /* path components restricted to 14 chars, typically */
  484.         if ((end-old_end) > FILENAME_MAX)  /* GRR:  proper constant? */
  485.             *(end = old_end + FILENAME_MAX) = '';
  486. #endif
  487.         /* GRR:  could do better check, see if overrunning buffer as we go:
  488.          * check end-buildpath after each append, set warning variable if
  489.          * within 20 of FILNAMSIZ; then if var set, do careful check when
  490.          * appending.  Clear variable when begin new path. */
  491.         if ((end-buildpath) > FILNAMSIZ-3)  /* need '/', one-char name, '' */
  492.             too_long = TRUE;                /* check if extracting directory? */
  493.         /* for AOS/VS, try to create so as to not use searchlist: */
  494.         if ( /*stat(buildpath, &G.statbuf)*/ 1) {
  495.             if (!G.create_dirs) { /* told not to create (freshening) */
  496.                 free(buildpath);
  497.                 return 2;         /* path doesn't exist:  nothing to do */
  498.             }
  499.             if (too_long) {
  500.                 Info(slide, 1, ((char *)slide,
  501.                   "checkdir error:  path too long: %sn", buildpath));
  502.                 free(buildpath);
  503.                 return 4;         /* no room for filenames:  fatal */
  504.             }
  505.             /* create the directory */
  506.             if (zvs_credir(buildpath,-1L,-1L,-1L,(char *) -1,-1,0L,-1,-1) == -1)
  507.             {
  508.                 Info(slide, 1, ((char *)slide,
  509.                   "checkdir error:  cannot create %sn
  510.                  unable to process %s.n", buildpath, G.filename));
  511.                 free(buildpath);
  512.                 return 3;      /* path didn't exist, tried to create, failed */
  513.             }
  514.             created_dir = TRUE;
  515.         } else if (!S_ISDIR(G.statbuf.st_mode)) {
  516.             Info(slide, 1, ((char *)slide, "checkdir error:  %s exists but is not directoryn
  517.                  unable to process %s.n", buildpath, G.filename));
  518.             free(buildpath);
  519.             return 3;          /* path existed but wasn't dir */
  520.         }
  521.         if (too_long) {
  522.             Info(slide, 1, ((char *)slide,
  523.               "checkdir error:  path too long: %sn", buildpath));
  524.             free(buildpath);
  525.             return 4;         /* no room for filenames:  fatal */
  526.         }
  527.         *end++ = '/';
  528.         *end = '';
  529.         Trace((stderr, "buildpath now = [%s]n", buildpath));
  530.         return 0;
  531.     } /* end if (FUNCTION == APPEND_DIR) */
  532. /*---------------------------------------------------------------------------
  533.     GETPATH:  copy full path to the string pointed at by pathcomp, and free
  534.     buildpath.
  535.   ---------------------------------------------------------------------------*/
  536.     if (FUNCTION == GETPATH) {
  537.         strcpy(pathcomp, buildpath);
  538.         Trace((stderr, "getting and freeing path [%s]n", pathcomp));
  539.         free(buildpath);
  540.         buildpath = end = (char *)NULL;
  541.         return 0;
  542.     }
  543. /*---------------------------------------------------------------------------
  544.     APPEND_NAME:  assume the path component is the filename; append it and
  545.     return without checking for existence.
  546.   ---------------------------------------------------------------------------*/
  547.     if (FUNCTION == APPEND_NAME) {
  548. #ifdef SHORT_NAMES
  549.         char *old_end = end;
  550. #endif
  551.         Trace((stderr, "appending filename [%s]n", pathcomp));
  552.         while ((*end = *pathcomp++) != '') {
  553.             ++end;
  554. #ifdef SHORT_NAMES  /* truncate name at 14 characters, typically */
  555.             if ((end-old_end) > FILENAME_MAX)      /* GRR:  proper constant? */
  556.                 *(end = old_end + FILENAME_MAX) = '';
  557. #endif
  558.             if ((end-buildpath) >= FILNAMSIZ) {
  559.                 *--end = '';
  560.                 Info(slide, 1, ((char *)slide,
  561.                   "checkdir warning:  path too long; truncatingn
  562.                    %sn                -> %sn", G.filename, buildpath));
  563.                 return 1;   /* filename truncated */
  564.             }
  565.         }
  566.         Trace((stderr, "buildpath now = [%s]n", buildpath));
  567.         return 0;  /* could check for existence here, prompt for new name... */
  568.     }
  569. /*---------------------------------------------------------------------------
  570.     INIT:  allocate and initialize buffer space for the file currently being
  571.     extracted.  If file was renamed with an absolute path, don't prepend the
  572.     extract-to path.
  573.   ---------------------------------------------------------------------------*/
  574. /* GRR:  for VMS and TOPS-20, add up to 13 to strlen */
  575.     if (FUNCTION == INIT) {
  576.         Trace((stderr, "initializing buildpath to "));
  577.         if ((buildpath = (char *)malloc(strlen(G.filename)+rootlen+1)) ==
  578.             (char *)NULL)
  579.             return 10;
  580.         if ((rootlen > 0) && !renamed_fullpath) {
  581.             strcpy(buildpath, rootpath);
  582.             end = buildpath + rootlen;
  583.         } else {
  584.             *buildpath = '';
  585.             end = buildpath;
  586.         }
  587.         Trace((stderr, "[%s]n", buildpath));
  588.         return 0;
  589.     }
  590. /*---------------------------------------------------------------------------
  591.     ROOT:  if appropriate, store the path in rootpath and create it if neces-
  592.     sary; else assume it's a zipfile member and return.  This path segment
  593.     gets used in extracting all members from every zipfile specified on the
  594.     command line.
  595.   ---------------------------------------------------------------------------*/
  596. #if (!defined(SFX) || defined(SFX_EXDIR))
  597.     if (FUNCTION == ROOT) {
  598.         Trace((stderr, "initializing root path to [%s]n", pathcomp));
  599.         if (pathcomp == (char *)NULL) {
  600.             rootlen = 0;
  601.             return 0;
  602.         }
  603.         if ((rootlen = strlen(pathcomp)) > 0) {
  604.             if (pathcomp[rootlen-1] == '/') {
  605.                 pathcomp[--rootlen] = '';
  606.             }
  607.             if (rootlen > 0 && (stat(pathcomp, &G.statbuf) ||
  608.                 !S_ISDIR(G.statbuf.st_mode)))       /* path does not exist */
  609.             {
  610.                 if (!G.create_dirs /* || iswild(pathcomp) */ ) {
  611.                     rootlen = 0;
  612.                     return 2;   /* skip (or treat as stored file) */
  613.                 }
  614.                 /* create the directory (could add loop here to scan pathcomp
  615.                  * and create more than one level, but why really necessary?) */
  616.                 if (zvs_credir(pathcomp,-1L,-1L,-1L,(char *) -1,-1,0L,-1,-1)
  617.                     == -1)
  618.                 {
  619.                     Info(slide, 1, ((char *)slide,
  620.                       "checkdir:  cannot create extraction directory: %sn",
  621.                       pathcomp));
  622.                     rootlen = 0;   /* path didn't exist, tried to create, and */
  623.                     return 3;  /* failed:  file exists, or 2+ levels required */
  624.                 }
  625.             }
  626.             if ((rootpath = (char *)malloc(rootlen+2)) == (char *)NULL) {
  627.                 rootlen = 0;
  628.                 return 10;
  629.             }
  630.             strcpy(rootpath, pathcomp);
  631.             rootpath[rootlen++] = '/';
  632.             rootpath[rootlen] = '';
  633.             Trace((stderr, "rootpath now = [%s]n", rootpath));
  634.         }
  635.         return 0;
  636.     }
  637. #endif /* !SFX || SFX_EXDIR */
  638. /*---------------------------------------------------------------------------
  639.     END:  free rootpath, immediately prior to program exit.
  640.   ---------------------------------------------------------------------------*/
  641.     if (FUNCTION == END) {
  642.         Trace((stderr, "freeing rootpathn"));
  643.         if (rootlen > 0) {
  644.             free(rootpath);
  645.             rootlen = 0;
  646.         }
  647.         return 0;
  648.     }
  649.     return 99;  /* should never reach */
  650. } /* end function checkdir() */
  651. #ifdef MORE
  652. /**************************/
  653. /* Function screenlines() */
  654. /**************************/
  655. int screenlines()
  656. {
  657.     char *envptr, *getenv();
  658.     int n;
  659.     /* GRR:  this is overly simplistic; should use winsize struct and
  660.      * appropriate TIOCGWINSZ ioctl(), assuming exists on enough systems
  661.      */
  662.     envptr = getenv("LINES");
  663.     if (envptr == (char *)NULL || (n = atoi(envptr)) < 5)
  664.         return 24;   /* VT-100 assumed to be minimal hardware */
  665.     else
  666.         return n;
  667. }
  668. #endif /* MORE */
  669. /****************************/
  670. /* Function close_outfile() */
  671. /****************************/
  672. void close_outfile(__G)    /* GRR: change to return PK-style warning level */
  673.     __GDEF
  674. {
  675. /*---------------------------------------------------------------------------
  676.     If symbolic links are supported, allocate a storage area, put the uncom-
  677.     pressed "data" in it, and create the link.  Since we know it's a symbolic
  678.     link to start with, we shouldn't have to worry about overflowing unsigned
  679.     ints with unsigned longs.
  680.   ---------------------------------------------------------------------------*/
  681. #ifdef SYMLINKS
  682.     if (G.symlnk) {
  683.         unsigned ucsize = (unsigned)G.lrec.ucsize;
  684.         char *linktarget = (char *)malloc((unsigned)G.lrec.ucsize+1);
  685.         fclose(G.outfile);                      /* close "data" file... */
  686.         G.outfile = fopen(G.filename, FOPR);    /* ...and reopen for reading */
  687.         if (!linktarget || fread(linktarget, 1, ucsize, G.outfile) !=
  688.                            (int)ucsize)
  689.         {
  690.             Info(slide, 0x201, ((char *)slide,
  691.               "warning:  symbolic link (%s) failedn", G.filename));
  692.             if (linktarget)
  693.                 free(linktarget);
  694.             fclose(G.outfile);
  695.             return;
  696.         }
  697.         fclose(G.outfile);                  /* close "data" file for good... */
  698.         unlink(G.filename);                 /* ...and delete it */
  699.         linktarget[ucsize] = '';
  700.         if (QCOND2)
  701.             Info(slide, 0, ((char *)slide, "-> %s ", linktarget));
  702.         if (symlink(linktarget, G.filename))  /* create the real link */
  703.             perror("symlink error");
  704.         free(linktarget);
  705.         return;                             /* can't set time on symlinks */
  706.     }
  707. #endif /* SYMLINKS */
  708.     fclose(G.outfile);
  709. /*---------------------------------------------------------------------------
  710.     Change the file permissions from default ones to those stored in the
  711.     zipfile.
  712.   ---------------------------------------------------------------------------*/
  713. #ifndef NO_CHMOD
  714.     if (chmod(G.filename, 0xffff & G.pInfo->file_attr))
  715.         perror("chmod (file attributes) error");
  716. #endif
  717. /*---------------------------------------------------------------------------
  718.     AOS/VS only allows setting file times at creation but has its own permis-
  719.     sions scheme which is better invoked here if the necessary information
  720.     was in fact stored.  In theory, we should look through an entire series
  721.     of extra fields that might exist for the same file, but we're not going
  722.     to bother.  If we set up other types of extra fields, or if we run into
  723.     other environments that add their own stuff to existing entries in ZIP
  724.     files, we'll have to.  NOTE:  already copied extra-field stuff into
  725.     zzextrafld structure when file was created.
  726.   ---------------------------------------------------------------------------*/
  727.     if (G.extra_field != NULL) {
  728.         if (!memcmp(ZEXTRA_HEADID, zzextrafld.extra_header_id,
  729.                     sizeof(zzextrafld.extra_header_id))  &&
  730.             !memcmp(ZEXTRA_SENTINEL, zzextrafld.extra_sentinel,
  731.                     sizeof(zzextrafld.extra_sentinel))  &&
  732.             zzextrafld.fstat_packet.norm_fstat_packet.styp_type != $FLNK)
  733.             /* (AOS/VS links don't have ACLs) */
  734.         {
  735.             /* vs_path was set (in this case) when we created the file */
  736.             if (sys_sacl(vs_path, zzextrafld.aclbuf)) {
  737.                 Info(slide, 0x201, ((char *)slide,
  738.                   "error: cannot set ACL for %sn", G.filename));
  739.                 perror("sys_sacl()");
  740.             }
  741.         }
  742.     }
  743. } /* end function close_outfile() */
  744. #ifndef SFX
  745. /************************/
  746. /*  Function version()  */
  747. /************************/
  748. void version(__G)
  749.     __GDEF
  750. {
  751. #if defined(CRAY) || defined(NX_CURRENT_COMPILER_RELEASE) || defined(NetBSD)
  752.     char buf1[40];
  753. #if defined(CRAY) || defined(NX_CURRENT_COMPILER_RELEASE)
  754.     char buf2[40];
  755. #endif
  756. #endif
  757.     /* Pyramid, NeXT have problems with huge macro expansion, too:  no Info() */
  758.     sprintf((char *)slide, LoadFarString(CompiledWith),
  759. #ifdef __GNUC__
  760. #  ifdef NX_CURRENT_COMPILER_RELEASE
  761.       (sprintf(buf1, "NeXT DevKit %d.%02d ", NX_CURRENT_COMPILER_RELEASE/100,
  762.         NX_CURRENT_COMPILER_RELEASE%100), buf1),
  763.       (strlen(__VERSION__) > 8)? "(gcc)" :
  764.         (sprintf(buf2, "(gcc %s)", __VERSION__), buf2),
  765. #  else
  766.       "gcc ", __VERSION__,
  767. #  endif
  768. #else
  769. #  if defined(CRAY) && defined(_RELEASE)
  770.       "cc ", (sprintf(buf1, "version %d", _RELEASE), buf1),
  771. #  else
  772. #  ifdef __VERSION__
  773.       "cc ", __VERSION__,
  774. #  else
  775.       "cc", "",
  776. #  endif
  777. #  endif
  778. #endif
  779.       "Unix",
  780. #if defined(sgi) || defined(__sgi)
  781.       " (Silicon Graphics IRIX)",
  782. #else
  783. #ifdef sun
  784. #  ifdef sparc
  785. #    ifdef __SVR4
  786.       " (Sun Sparc/Solaris)",
  787. #    else /* may or may not be SunOS */
  788.       " (Sun Sparc)",
  789. #    endif
  790. #  else
  791. #  if defined(sun386) || defined(i386)
  792.       " (Sun 386i)",
  793. #  else
  794. #  if defined(mc68020) || defined(__mc68020__)
  795.       " (Sun 3)",
  796. #  else /* mc68010 or mc68000:  Sun 2 or earlier */
  797.       " (Sun 2)",
  798. #  endif
  799. #  endif
  800. #  endif
  801. #else
  802. #ifdef __hpux
  803.       " (HP/UX)",
  804. #else
  805. #ifdef __osf__
  806.       " (DEC OSF/1)",
  807. #else
  808. #ifdef _AIX
  809.       " (IBM AIX)",
  810. #else
  811. #ifdef aiws
  812.       " (IBM RT/AIX)",
  813. #else
  814. #if defined(CRAY) || defined(cray)
  815. #  ifdef _UNICOS
  816.       (sprintf(buf2, " (Cray UNICOS release %d)", _UNICOS), buf2),
  817. #  else
  818.       " (Cray UNICOS)",
  819. #  endif
  820. #else
  821. #if defined(uts) || defined(UTS)
  822.       " (Amdahl UTS)",
  823. #else
  824. #ifdef NeXT
  825. #  ifdef mc68000
  826.       " (NeXTStep/black)",
  827. #  else
  828.       " (NeXTStep for Intel)",
  829. #  endif
  830. #else              /* the next dozen or so are somewhat order-dependent */
  831. #ifdef LINUX
  832. #  ifdef __ELF__
  833.       " (Linux ELF)",
  834. #  else
  835.       " (Linux a.out)",
  836. #  endif
  837. #else
  838. #ifdef MINIX
  839.       " (Minix)",
  840. #else
  841. #ifdef M_UNIX
  842.       " (SCO Unix)",
  843. #else
  844. #ifdef M_XENIX
  845.       " (SCO Xenix)",
  846. #else
  847. #ifdef __NetBSD__
  848. #  ifdef NetBSD0_8
  849.       (sprintf(buf1, " (NetBSD 0.8%c)", (char)(NetBSD0_8 - 1 + 'A')), buf1),
  850. #  else
  851. #  ifdef NetBSD0_9
  852.       (sprintf(buf1, " (NetBSD 0.9%c)", (char)(NetBSD0_9 - 1 + 'A')), buf1),
  853. #  else
  854. #  ifdef NetBSD1_0
  855.       (sprintf(buf1, " (NetBSD 1.0%c)", (char)(NetBSD1_0 - 1 + 'A')), buf1),
  856. #  else
  857.       (BSD4_4 == 0.5)? " (NetBSD before 0.9)" : " (NetBSD 1.1 or later)",
  858. #  endif
  859. #  endif
  860. #  endif
  861. #else
  862. #ifdef __FreeBSD__
  863.       (BSD4_4 == 0.5)? " (FreeBSD 1.x)" : " (FreeBSD 2.0 or later)",
  864. #else
  865. #ifdef __bsdi__
  866.       (BSD4_4 == 0.5)? " (BSD/386 1.0)" : " (BSD/386 1.1 or later)",
  867. #else
  868. #ifdef __386BSD__
  869.       (BSD4_4 == 1)? " (386BSD, post-4.4 release)" : " (386BSD)",
  870. #else
  871. #if defined(i486) || defined(__i486) || defined(__i486__)
  872.       " (Intel 486)",
  873. #else
  874. #if defined(i386) || defined(__i386) || defined(__i386__)
  875.       " (Intel 386)",
  876. #else
  877. #ifdef pyr
  878.       " (Pyramid)",
  879. #else
  880. #ifdef ultrix
  881. #  ifdef mips
  882.       " (DEC/MIPS)",
  883. #  else
  884. #  ifdef vax
  885.       " (DEC/VAX)",
  886. #  else /* __alpha? */
  887.       " (DEC/Alpha)",
  888. #  endif
  889. #  endif
  890. #else
  891. #ifdef gould
  892.       " (Gould)",
  893. #else
  894. #ifdef MTS
  895.       " (MTS)",
  896. #else
  897. #ifdef __convexc__
  898.       " (Convex)",
  899. #else
  900.       "",
  901. #endif /* Convex */
  902. #endif /* MTS */
  903. #endif /* Gould */
  904. #endif /* DEC */
  905. #endif /* Pyramid */
  906. #endif /* 386 */
  907. #endif /* 486 */
  908. #endif /* 386BSD */
  909. #endif /* BSDI BSD/386 */
  910. #endif /* NetBSD */
  911. #endif /* FreeBSD */
  912. #endif /* SCO Xenix */
  913. #endif /* SCO Unix */
  914. #endif /* Minix */
  915. #endif /* Linux */
  916. #endif /* NeXT */
  917. #endif /* Amdahl */
  918. #endif /* Cray */
  919. #endif /* RT/AIX */
  920. #endif /* AIX */
  921. #endif /* OSF/1 */
  922. #endif /* HP/UX */
  923. #endif /* Sun */
  924. #endif /* SGI */
  925. #ifdef __DATE__
  926.       " on ", __DATE__
  927. #else
  928.       "", ""
  929. #endif
  930.     );
  931.     (*G.message)((zvoid *)&G, slide, (ulg)strlen((char *)slide), 0);
  932. } /* end function version() */
  933. #endif /* !SFX */
  934. /* ===================================================================
  935.  * ZVS_CREATE()
  936.  * Function to create a file with specified times.  The times should be sent
  937.  * as long ints in DG time format; use -1 to set to the current times.  You
  938.  * may also specify a pointer to the ACL, the file type (see PARU.H, and do
  939.  * not specify dirs or links), the element size, and the max index level.
  940.  * For all of these parameters you may use -1 to specify the default.
  941.  *
  942.  * Returns 0 if no error, or the error code returned by ?CREATE.
  943.  *
  944.  *    HISTORY:
  945.  *        15-dec-93 dbl
  946.  *        31-may-94 dbl: added call to convert pathname to AOS/VS
  947.  *
  948.  *
  949.  */
  950. int zvs_create(ZCONST char *fname, long cretim, long modtim, long acctim,
  951.                char *pacl, int ftyp, int eltsize, int maxindlev)
  952. {
  953.     P_CREATE    pcr_stru;
  954.     P_CTIM      pct_stru;
  955.     pcr_stru.cftyp_format = 0;           /* unspecified record format */
  956.     if (ftyp == -1)                      /* default file type to UNX */
  957.         pcr_stru.cftyp_entry = $FUNX;
  958.     else
  959.         pcr_stru.cftyp_entry = ftyp;
  960.     pcr_stru.ctim = &pct_stru;
  961.     pcr_stru.cacp = pacl;
  962.     pcr_stru.cdel = eltsize;
  963.     pcr_stru.cmil = maxindlev;
  964.     pct_stru.tcth.long_time = cretim;
  965.     pct_stru.tath.long_time = acctim;
  966.     pct_stru.tmth.long_time = modtim;
  967.     return (sys_create(ux_to_vs_name(Vs_path, fname), &pcr_stru));
  968. } /* end zvs_create() */
  969. /* ===================================================================
  970.  * ZVS_CREDIR()
  971.  * Function to create a dir as specified.  The times should be sent
  972.  * as long ints in DG time format; use -1 to set to the current times.  You
  973.  * may also specify a pointer to the ACL, the file type (either $FDIR or $FCPD; see PARU.H),
  974.  * the max # blocks (if a CPD), the hash frame size, and the max index level.
  975.  * For all of these parameters (except for the CPD's maximum blocks),
  976.  * you may use -1 to specify the default.
  977.  *
  978.  * (The System Call Dictionary says both that you may specify a
  979.  * maximum-index-level value up to the maximum, with 0 for a contiguous
  980.  * directory, and that 3 is always used for this whatever you specify.)
  981.  *
  982.  * If you specify anything other than CPD for the file type, DIR will
  983.  * be used.
  984.  *
  985.  * Returns 0 if no error, or the error code returned by ?CREATE.
  986.  *
  987.  *    HISTORY:
  988.  *        1-jun-94 dbl
  989.  *
  990.  *
  991.  */
  992. int zvs_credir(ZCONST char *dname, long cretim, long modtim, long acctim,
  993.                char *pacl, int ftyp, long maxblocks, int hashfsize,
  994.                int maxindlev)
  995. {
  996.     P_CREATE_DIR    pcr_stru;
  997.     P_CTIM          pct_stru;
  998.     if (ftyp != $FCPD)                      /* default file type to UNX */
  999.         pcr_stru.cftyp_entry = $FDIR;
  1000.     else
  1001.     {
  1002.         pcr_stru.cftyp_entry = ftyp;
  1003.         pcr_stru.cmsh = maxblocks;
  1004.     }
  1005.     pcr_stru.ctim = &pct_stru;
  1006.     pcr_stru.cacp = pacl;
  1007.     pcr_stru.chfs = hashfsize;
  1008.     pcr_stru.cmil = maxindlev;
  1009.     pct_stru.tcth.long_time = cretim;
  1010.     pct_stru.tath.long_time = acctim;
  1011.     pct_stru.tmth.long_time = modtim;
  1012.     return (sys_create(ux_to_vs_name(Vs_path, dname), &pcr_stru));
  1013. } /* end zvs_credir() */
  1014. /* ===================================================================
  1015.  * UX_TO_VS_NAME() - makes a somewhat dumb pass at converting a Unix
  1016.  *           filename to an AOS/VS filename.  This should
  1017.  *           be just about adequate to handle the results
  1018.  *           of similarly-simple AOS/VS-to-Unix conversions
  1019.  *           in the ZIP program.  It does not guarantee a
  1020.  *           legal AOS/VS filename for every Unix filename;
  1021.  *           conspicuous examples would be names with
  1022.  *           embedded ./ and ../ (which will receive no
  1023.  *           special treatment).
  1024.  *
  1025.  *       RETURNS: pointer to the result (which is an input parameter)
  1026.  *
  1027.  *       NOTE: calling code is responsible for making sure
  1028.  *           the output buffer is big enough!
  1029.  *
  1030.  *       HISTORY:
  1031.  *           31-may-94 dbl
  1032.  *
  1033.  */
  1034. char *ux_to_vs_name(char *outname, ZCONST char *inname)
  1035. {
  1036.     ZCONST char *ip=inname, *op=outname;
  1037.     if (ip[0] == '.') {
  1038.         if (ip[1] == '/') {
  1039.             *(op++) = '=';
  1040.             ip += 2;
  1041.         } else if (ip[1] == '.'  &&  ip[2] == '/') {
  1042.             *(op++) = '^';
  1043.             ip += 3;
  1044.         }
  1045.     }
  1046.     do {
  1047.         if (*ip == '/')
  1048.             *(op++) = ':';
  1049.         else if (strchr(
  1050.            "0123456789_$?.abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",
  1051.            *ip) != NULL)
  1052.         {
  1053.             *(op++) = *ip;
  1054.         } else
  1055.             *(op++) = '?';
  1056.     } while (*(ip++) != '');
  1057.     return outname;
  1058. } /* end ux_to_vs_name() */
  1059. /* =================================================================== */
  1060. /* DGDATE
  1061.    Two functions do encode/decode dates in DG system format.
  1062.    Usage:
  1063.     long value,year,month,day;
  1064.     value=dgdate(month,day,year);
  1065.     undgdate(value,&month,&day,&year);   [GRR:  not used in UnZip: removed]
  1066.    Notes:
  1067.    1. DG date functions only work on dates within the range
  1068.       Jan 1, 1968 through Dec 31, 2099.  I have tested these
  1069.       functions through the same range with exact agreement.
  1070.       For dates outside of that range, the DG system calls
  1071.       may return different values than these functions.
  1072.    2. dgundate() accepts values between 0 and 48213 inclusive.
  1073.       These correspond to 12/31/1967 and 12/31/2099.
  1074.    3. Both functions assume the data is in the native OS byte
  1075.       order.  So if you're reading or writing these fields from
  1076.       a file that has been passed between AOS/VS and PC-DOS you
  1077.       will need to swap byte order.
  1078.    4. With reference to byte order, the entire range of values
  1079.       supported by these functions will fit into an unsigned
  1080.       short int.  In most cases the input or output will be
  1081.       in that variable type.  You are better off casting the
  1082.       value to/from unsigned short so you only need to concern
  1083.       yourself with swapping two bytes instead of four.
  1084.   Written by: Stanley J. Gula
  1085.               US&T, Inc.
  1086.               529 Main Street, Suite 1
  1087.               Indian Orchard, MA 01151
  1088.               (413)-543-3672
  1089.               Copyright (c) 1990 US&T, Inc.
  1090.               All rights reserved.
  1091.               I hereby release these functions into the public
  1092.               domain.  You may use these routines freely as long
  1093.               as the US&T copyright remains intact in the source
  1094.               code.
  1095.               Stanley J. Gula     July 24, 1990
  1096. */
  1097. long motable[13]={0,31,59,90,120,151,181,212,243,273,304,334,365};
  1098. long yrtable[132]={
  1099.       366,  731, 1096, 1461, 1827, 2192, 2557, 2922, 3288, 3653,
  1100.      4018, 4383, 4749, 5114, 5479, 5844, 6210, 6575, 6940, 7305,
  1101.      7671, 8036, 8401, 8766, 9132, 9497, 9862,10227,10593,10958,
  1102.     11323,11688,12054,12419,12784,13149,13515,13880,14245,14610,
  1103.     14976,15341,15706,16071,16437,16802,17167,17532,17898,18263,
  1104.     18628,18993,19359,19724,20089,20454,20820,21185,21550,21915,
  1105.     22281,22646,23011,23376,23742,24107,24472,24837,25203,25568,
  1106.     25933,26298,26664,27029,27394,27759,28125,28490,28855,29220,
  1107.     29586,29951,30316,30681,31047,31412,31777,32142,32508,32873,
  1108.     33238,33603,33969,34334,34699,35064,35430,35795,36160,36525,
  1109.     36891,37256,37621,37986,38352,38717,39082,39447,39813,40178,
  1110.     40543,40908,41274,41639,42004,42369,42735,43100,43465,43830,
  1111.     44196,44561,44926,45291,45657,46022,46387,46752,47118,47483,
  1112.     47848,48213};
  1113. /* Given y,m,d return # of days since 12/31/67 */
  1114. long int dgdate(short mm, short dd, short yy)
  1115. {
  1116.     long int temp;
  1117.     short ytmp;
  1118.     if (mm<1 || mm>12 || dd<1 || dd>31 || yy<1968 || yy>2099)
  1119.         return 0L;
  1120.     /* Figure in whole years since 1968 + whole months plus days */
  1121.     temp=365L*(long)(yy-1968) + motable[mm-1] + (long)dd;
  1122.     /* Adjust for leap years - note we don't account for skipped leap
  1123.        year in years divisible by 1000 but not by 4000.  We're correct
  1124.        through the year 2099 */
  1125.     temp+=(yy-1965)/4;
  1126.     /* Correct for this year */
  1127.     /* In leap years, if date is 3/1 or later, bump */
  1128.     if ((yy%4==0) && (mm>2))
  1129.         temp++;
  1130.     return temp;
  1131. }