home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 9 Archive / 09-Archive.zip / unzip531.zip / msdos / msdos.c < prev    next >
C/C++ Source or Header  |  1997-05-09  |  63KB  |  1,806 lines

  1. /*---------------------------------------------------------------------------
  2.  
  3.   msdos.c
  4.  
  5.   MSDOS-specific routines for use with Info-ZIP's UnZip 5.3 and later.
  6.  
  7.   Contains:  Opendir()                      (from zip)
  8.              Readdir()                      (from zip)
  9.              do_wild()
  10.              mapattr()
  11.              mapname()
  12.              map2fat()
  13.              checkdir()
  14.              isfloppy()
  15.              volumelabel()                  (non-djgpp, non-emx)
  16.              close_outfile()
  17.              dateformat()
  18.              version()
  19.              _dos_getcountryinfo()          (djgpp, emx)
  20.             [_dos_getftime()                (djgpp, emx)   to be added]
  21.              _dos_setftime()                (djgpp, emx)
  22.              _dos_setfileattr()             (djgpp, emx)
  23.              _dos_getdrive()                (djgpp, emx)
  24.              _dos_creat()                   (djgpp, emx)
  25.              _dos_close()                   (djgpp, emx)
  26.              volumelabel()                  (djgpp, emx)
  27.              __crt0_glob_function()         (djgpp 2.x)
  28.              __crt_load_environment_file()  (djgpp 2.x)
  29.              int86x_realmode()              (Watcom 32-bit)
  30.              stat_bandaid()                 (Watcom)
  31.  
  32.   ---------------------------------------------------------------------------*/
  33.  
  34.  
  35.  
  36. #define UNZIP_INTERNAL
  37. #include "unzip.h"
  38.  
  39. #ifdef MAYBE_PLAIN_FAT
  40.    static void map2fat OF((char *pathcomp, char *last_dot));
  41. #endif
  42. static int isfloppy OF((int nDrive));
  43. static int volumelabel OF((char *newlabel));
  44.  
  45. static int created_dir;        /* used by mapname(), checkdir() */
  46. static int renamed_fullpath;   /* ditto */
  47. static unsigned nLabelDrive;   /* ditto, plus volumelabel() */
  48.  
  49.  
  50.  
  51. /*****************************/
  52. /*  Strings used in msdos.c  */
  53. /*****************************/
  54.  
  55. #ifndef SFX
  56.   static char Far CantAllocateWildcard[] =
  57.     "warning:  can't allocate wildcard buffers\n";
  58. #endif
  59. static char Far Creating[] = "   creating: %s\n";
  60. static char Far ConversionFailed[] = "mapname:  conversion of %s failed\n";
  61. static char Far Labelling[] = "labelling %c: %-22s\n";
  62. static char Far ErrSetVolLabel[] = "mapname:  error setting volume label\n";
  63. static char Far PathTooLong[] = "checkdir error:  path too long: %s\n";
  64. static char Far CantCreateDir[] = "checkdir error:  can't create %s\n\
  65.                  unable to process %s.\n";
  66. static char Far DirIsntDirectory[] =
  67.   "checkdir error:  %s exists but is not directory\n\
  68.                  unable to process %s.\n";
  69. static char Far PathTooLongTrunc[] =
  70.   "checkdir warning:  path too long; truncating\n                   %s\n\
  71.                 -> %s\n";
  72. #if (!defined(SFX) || defined(SFX_EXDIR))
  73.    static char Far CantCreateExtractDir[] =
  74.      "checkdir:  can't create extraction directory: %s\n";
  75. #endif
  76. #ifdef __TURBOC__
  77.    static char Far AttribsMayBeWrong[] =
  78.      "\nwarning:  file attributes may not be correct\n";
  79. #endif
  80.  
  81.  
  82.  
  83. /****************************/
  84. /*  Macros used in msdos.c  */
  85. /****************************/
  86.  
  87. #ifdef WATCOMC_386
  88. #  define WREGS(v,r) (v##.w.##r)
  89. #  define int86x int386x
  90.    static int int86x_realmode(int inter_no, union REGS *in,
  91.                               union REGS *out, struct SREGS *seg);
  92. #  define F_intdosx(ir,or,sr) int86x_realmode(0x21, ir, or, sr)
  93. #  define XXX__MK_FP_IS_BROKEN
  94. #else
  95. #  define WREGS(v,r) (v##.x.##r)
  96. #  define F_intdosx(ir,or,sr) intdosx(ir, or, sr)
  97. #endif
  98.  
  99. #if (defined(__GO32__) || defined(__EMX__))
  100. #  include <dirent.h>        /* use readdir() */
  101. #  define MKDIR(path,mode)   mkdir(path,mode)
  102. #  define Opendir  opendir
  103. #  define Readdir  readdir
  104. #  define Closedir closedir
  105. #  define zdirent  dirent
  106. #  define zDIR     DIR
  107. #  ifdef __EMX__
  108. #    include <dos.h>
  109. #    define GETDRIVE(d)      d = _getdrive()
  110. #    define FA_LABEL         A_LABEL
  111. #  else
  112. #    define GETDRIVE(d)      _dos_getdrive(&d)
  113. #  endif
  114. #else /* !(__GO32__ || __EMX__) */
  115. #  define MKDIR(path,mode)   mkdir(path)
  116. #  ifdef __TURBOC__
  117. #    define FATTR            FA_HIDDEN+FA_SYSTEM+FA_DIREC
  118. #    define FVOLID           FA_VOLID
  119. #    define FFIRST(n,d,a)    findfirst(n,(struct ffblk *)d,a)
  120. #    define FNEXT(d)         findnext((struct ffblk *)d)
  121. #    define GETDRIVE(d)      d=getdisk()+1
  122. #    include <dir.h>
  123. #  else /* !__TURBOC__ */
  124. #    define FATTR            _A_HIDDEN+_A_SYSTEM+_A_SUBDIR
  125. #    define FVOLID           _A_VOLID
  126. #    define FFIRST(n,d,a)    _dos_findfirst(n,a,(struct find_t *)d)
  127. #    define FNEXT(d)         _dos_findnext((struct find_t *)d)
  128. #    define GETDRIVE(d)      _dos_getdrive(&d)
  129. #    include <direct.h>
  130. #  endif /* ?__TURBOC__ */
  131.    typedef struct zdirent {
  132.        char d_reserved[30];
  133.        char d_name[13];
  134.        int d_first;
  135.    } zDIR;
  136.    zDIR *Opendir OF((const char *));
  137.    struct zdirent *Readdir OF((zDIR *));
  138. #  define Closedir free
  139.  
  140.  
  141.  
  142.  
  143. #ifndef SFX
  144.  
  145. /**********************/   /* Borland C++ 3.x has its own opendir/readdir */
  146. /* Function Opendir() */   /*  library routines, but earlier versions don't, */
  147. /**********************/   /*  so use ours regardless */
  148.  
  149. zDIR *Opendir(name)
  150.     const char *name;        /* name of directory to open */
  151. {
  152.     zDIR *dirp;              /* malloc'd return value */
  153.     char *nbuf;              /* malloc'd temporary string */
  154.     int len = strlen(name);  /* path length to avoid strlens and strcats */
  155.  
  156.  
  157.     if ((dirp = (zDIR *)malloc(sizeof(zDIR))) == (zDIR *)NULL)
  158.         return (zDIR *)NULL;
  159.     if ((nbuf = malloc(len + 5)) == (char *)NULL) {
  160.         free(dirp);
  161.         return (zDIR *)NULL;
  162.     }
  163.     strcpy(nbuf, name);
  164.     if (nbuf[len-1] == ':') {
  165.         nbuf[len++] = '.';
  166.     } else if (nbuf[len-1] == '/' || nbuf[len-1] == '\\')
  167.         --len;
  168.     strcpy(nbuf+len, "/*.*");
  169.     Trace((stderr, "Opendir:  nbuf = [%s]\n", nbuf));
  170.  
  171.     if (FFIRST(nbuf, dirp, FATTR)) {
  172.         free((zvoid *)nbuf);
  173.         return (zDIR *)NULL;
  174.     }
  175.     free((zvoid *)nbuf);
  176.     dirp->d_first = 1;
  177.     return dirp;
  178. }
  179.  
  180.  
  181.  
  182.  
  183.  
  184. /**********************/
  185. /* Function Readdir() */
  186. /**********************/
  187.  
  188. struct zdirent *Readdir(d)
  189.     zDIR *d;        /* directory stream from which to read */
  190. {
  191.     /* Return pointer to first or next directory entry, or NULL if end. */
  192.  
  193.     if (d->d_first)
  194.         d->d_first = 0;
  195.     else
  196.         if (FNEXT(d))
  197.             return (struct zdirent *)NULL;
  198.     return (struct zdirent *)d;
  199. }
  200.  
  201. #endif /* !SFX */
  202. #endif /* ?(__GO32__ || __EMX__) */
  203.  
  204.  
  205.  
  206.  
  207.  
  208. #ifndef SFX
  209.  
  210. /************************/
  211. /*  Function do_wild()  */   /* identical to OS/2 version */
  212. /************************/
  213.  
  214. char *do_wild(__G__ wildspec)
  215.     __GDEF
  216.     char *wildspec;          /* only used first time on a given dir */
  217. {
  218.     static zDIR *dir = (zDIR *)NULL;
  219.     static char *dirname, *wildname, matchname[FILNAMSIZ];
  220.     static int firstcall=TRUE, have_dirname, dirnamelen;
  221.     struct zdirent *file;
  222.  
  223.  
  224.     /* Even when we're just returning wildspec, we *always* do so in
  225.      * matchname[]--calling routine is allowed to append four characters
  226.      * to the returned string, and wildspec may be a pointer to argv[].
  227.      */
  228.     if (firstcall) {        /* first call:  must initialize everything */
  229.         firstcall = FALSE;
  230.  
  231.         if (!iswild(wildspec)) {
  232.             strcpy(matchname, wildspec);
  233.             have_dirname = FALSE;
  234.             dir = NULL;
  235.             return matchname;
  236.         }
  237.  
  238.         /* break the wildspec into a directory part and a wildcard filename */
  239.         if ((wildname = strrchr(wildspec, '/')) == (char *)NULL &&
  240.             (wildname = strrchr(wildspec, ':')) == (char *)NULL) {
  241.             dirname = ".";
  242.             dirnamelen = 1;
  243.             have_dirname = FALSE;
  244.             wildname = wildspec;
  245.         } else {
  246.             ++wildname;     /* point at character after '/' or ':' */
  247.             dirnamelen = (int)(wildname - wildspec);
  248.             if ((dirname = (char *)malloc(dirnamelen+1)) == (char *)NULL) {
  249.                 Info(slide, 1, ((char *)slide,
  250.                   LoadFarString(CantAllocateWildcard)));
  251.                 strcpy(matchname, wildspec);
  252.                 return matchname;   /* but maybe filespec was not a wildcard */
  253.             }
  254. /* GRR:  can't strip trailing char for opendir since might be "d:/" or "d:"
  255.  *       (would have to check for "./" at end--let opendir handle it instead) */
  256.             strncpy(dirname, wildspec, dirnamelen);
  257.             dirname[dirnamelen] = '\0';       /* terminate for strcpy below */
  258.             have_dirname = TRUE;
  259.         }
  260.         Trace((stderr, "do_wild:  dirname = [%s]\n", dirname));
  261.  
  262.         if ((dir = Opendir(dirname)) != (zDIR *)NULL) {
  263.             while ((file = Readdir(dir)) != (struct zdirent *)NULL) {
  264.                 Trace((stderr, "do_wild:  readdir returns %s\n", file->d_name));
  265.                 if (match(file->d_name, wildname, 1)) {  /* 1 == ignore case */
  266.                     Trace((stderr, "do_wild:  match() succeeds\n"));
  267.                     if (have_dirname) {
  268.                         strcpy(matchname, dirname);
  269.                         strcpy(matchname+dirnamelen, file->d_name);
  270.                     } else
  271.                         strcpy(matchname, file->d_name);
  272.                     return matchname;
  273.                 }
  274.             }
  275.             /* if we get to here directory is exhausted, so close it */
  276.             Closedir(dir);
  277.             dir = (zDIR *)NULL;
  278.         }
  279.         Trace((stderr, "do_wild:  Opendir(%s) returns NULL\n", dirname));
  280.  
  281.         /* return the raw wildspec in case that works (e.g., directory not
  282.          * searchable, but filespec was not wild and file is readable) */
  283.         strcpy(matchname, wildspec);
  284.         return matchname;
  285.     }
  286.  
  287.     /* last time through, might have failed opendir but returned raw wildspec */
  288.     if (dir == (zDIR *)NULL) {
  289.         firstcall = TRUE;  /* nothing left to try--reset for new wildspec */
  290.         if (have_dirname)
  291.             free(dirname);
  292.         return (char *)NULL;
  293.     }
  294.  
  295.     /* If we've gotten this far, we've read and matched at least one entry
  296.      * successfully (in a previous call), so dirname has been copied into
  297.      * matchname already.
  298.      */
  299.     while ((file = Readdir(dir)) != (struct zdirent *)NULL)
  300.         if (match(file->d_name, wildname, 1)) {   /* 1 == ignore case */
  301.             if (have_dirname) {
  302.                 /* strcpy(matchname, dirname); */
  303.                 strcpy(matchname+dirnamelen, file->d_name);
  304.             } else
  305.                 strcpy(matchname, file->d_name);
  306.             return matchname;
  307.         }
  308.  
  309.     Closedir(dir);     /* have read at least one dir entry; nothing left */
  310.     dir = (zDIR *)NULL;
  311.     firstcall = TRUE;  /* reset for new wildspec */
  312.     if (have_dirname)
  313.         free(dirname);
  314.     return (char *)NULL;
  315.  
  316. } /* end function do_wild() */
  317.  
  318. #endif /* !SFX */
  319.  
  320.  
  321.  
  322.  
  323.  
  324. /**********************/
  325. /* Function mapattr() */
  326. /**********************/
  327.  
  328. int mapattr(__G)
  329.     __GDEF
  330. {
  331.     /* set archive bit (file is not backed up): */
  332.     G.pInfo->file_attr = (unsigned)(G.crec.external_file_attributes | 32) &
  333.       0xff;
  334.     return 0;
  335.  
  336. } /* end function mapattr() */
  337.  
  338.  
  339.  
  340.  
  341.  
  342. /************************/
  343. /*  Function mapname()  */
  344. /************************/
  345.                              /* return 0 if no error, 1 if caution (filename */
  346. int mapname(__G__ renamed)   /*  truncated), 2 if warning (skip file because */
  347.     __GDEF                   /*  dir doesn't exist), 3 if error (skip file), */
  348.     int renamed;             /*  or 10 if out of memory (skip file) */
  349. {                            /*  [also IZ_VOL_LABEL, IZ_CREATED_DIR] */
  350.     char pathcomp[FILNAMSIZ];      /* path-component buffer */
  351.     char *pp, *cp=(char *)NULL;    /* character pointers */
  352.     char *lastsemi=(char *)NULL;   /* pointer to last semi-colon in pathcomp */
  353. #ifdef MAYBE_PLAIN_FAT
  354.     char *last_dot=(char *)NULL;   /* last dot not converted to underscore */
  355.     int dotname = FALSE;           /* path component begins with dot? */
  356. # ifdef USE_LFN
  357.     int use_lfn = USE_LFN;         /* file system supports long filenames? */
  358. # endif
  359. #endif
  360.     int error = 0;
  361.     register unsigned workch;      /* hold the character being tested */
  362.  
  363.  
  364. /*---------------------------------------------------------------------------
  365.     Initialize various pointers and counters and stuff.
  366.   ---------------------------------------------------------------------------*/
  367.  
  368.     /* can create path as long as not just freshening, or if user told us */
  369.     G.create_dirs = (!G.fflag || renamed);
  370.  
  371.     created_dir = FALSE;        /* not yet */
  372.     renamed_fullpath = FALSE;
  373.  
  374.     if (renamed) {
  375.         cp = G.filename - 1;    /* point to beginning of renamed name... */
  376.         while (*++cp)
  377.             if (*cp == '\\')    /* convert backslashes to forward */
  378.                 *cp = '/';
  379.         cp = G.filename;
  380.         /* use temporary rootpath if user gave full pathname */
  381.         if (G.filename[0] == '/') {
  382.             renamed_fullpath = TRUE;
  383.             pathcomp[0] = '/';  /* copy the '/' and terminate */
  384.             pathcomp[1] = '\0';
  385.             ++cp;
  386.         } else if (isalpha(G.filename[0]) && G.filename[1] == ':') {
  387.             renamed_fullpath = TRUE;
  388.             pp = pathcomp;
  389.             *pp++ = *cp++;      /* copy the "d:" (+ '/', possibly) */
  390.             *pp++ = *cp++;
  391.             if (*cp == '/')
  392.                 *pp++ = *cp++;  /* otherwise add "./"? */
  393.             *pp = '\0';
  394.         }
  395.     }
  396.  
  397.     /* pathcomp is ignored unless renamed_fullpath is TRUE: */
  398.     if ((error = checkdir(__G__ pathcomp, INIT)) != 0) /* initialize path buf */
  399.         return error;           /* ...unless no mem or vol label on hard disk */
  400.  
  401.     *pathcomp = '\0';           /* initialize translation buffer */
  402.     pp = pathcomp;              /* point to translation buffer */
  403.     if (!renamed) {             /* cp already set if renamed */
  404.         if (G.jflag)            /* junking directories */
  405.             cp = (char *)strrchr(G.filename, '/');
  406.         if (cp == (char *)NULL) /* no '/' or not junking dirs */
  407.             cp = G.filename;    /* point to internal zipfile-member pathname */
  408.         else
  409.             ++cp;               /* point to start of last component of path */
  410.     }
  411.  
  412. /*---------------------------------------------------------------------------
  413.     Begin main loop through characters in filename.
  414.   ---------------------------------------------------------------------------*/
  415.  
  416.     while ((workch = (uch)*cp++) != 0) {
  417.  
  418.         switch (workch) {
  419.             case '/':             /* can assume -j flag not given */
  420.                 *pp = '\0';
  421. #ifdef MAYBE_PLAIN_FAT
  422. # ifdef USE_LFN
  423.                 if (!use_lfn)
  424. # endif
  425.                 {
  426.                     map2fat(pathcomp, last_dot);   /* 8.3 trunc. (in place) */
  427.                     last_dot = (char *)NULL;
  428.                 }
  429. #endif
  430.                 if ((error = checkdir(__G__ pathcomp, APPEND_DIR)) > 1)
  431.                     return error;
  432.                 pp = pathcomp;    /* reset conversion buffer for next piece */
  433.                 lastsemi = (char *)NULL; /* leave directory semi-colons alone */
  434.                 break;
  435.  
  436.             /* drive names are not stored in zipfile, so no colons allowed;
  437.              *  no brackets or most other punctuation either (all of which
  438.              *  can appear in Unix-created archives; backslash is particularly
  439.              *  bad unless all necessary directories exist) */
  440. #ifdef MAYBE_PLAIN_FAT
  441.             case '[':          /* these punctuation characters forbidden */
  442.             case ']':          /*  only on plain FAT file systems */
  443.             case '+':
  444.             case ',':
  445.             case '=':
  446. # ifdef USE_LFN
  447.                 if (use_lfn)
  448.                     *pp++ = (char)workch;
  449.                 else
  450.                     *pp++ = '_';
  451.                 break;
  452. # endif
  453. #endif
  454.             case ':':           /* special shell characters of command.com */
  455.             case '\\':          /*  (device and directory limiters, wildcard */
  456.             case '"':           /*  characters, stdin/stdout redirection and */
  457.             case '<':           /*  pipe indicators and the quote sign) are */
  458.             case '>':           /*  never allowed in filenames on (V)FAT */
  459.             case '|':
  460.             case '*':
  461.             case '?':
  462.                 *pp++ = '_';
  463.                 break;
  464.  
  465. #ifdef MAYBE_PLAIN_FAT
  466.             case '.':
  467. # ifdef USE_LFN
  468.                 if (use_lfn) {
  469.                     *pp++ = (char)workch;
  470.                     break;
  471.                 }
  472. # endif
  473.                 if (pp == pathcomp) {     /* nothing appended yet... */
  474.                     if (*cp == '/') {     /* don't bother appending a "./" */
  475.                         ++cp;             /*  component to the path:  skip */
  476.                         break;            /*  to next char after the '/' */
  477.                     } else if (*cp == '.' && cp[1] == '/') {   /* "../" */
  478.                         *pp++ = '.';      /* add first dot, unchanged... */
  479.                         ++cp;             /* skip second dot, since it will */
  480.                     } else {              /*  be "added" at end of if-block */
  481.                         *pp++ = '_';      /* FAT doesn't allow null filename */
  482.                         dotname = TRUE;   /*  bodies, so map .exrc -> _.exrc */
  483.                     }                     /*  (extra '_' now, "dot" below) */
  484.                 } else if (dotname) {     /* found a second dot, but still */
  485.                     dotname = FALSE;      /*  have extra leading underscore: */
  486.                     *pp = '\0';           /*  remove it by shifting chars */
  487.                     pp = pathcomp + 1;    /*  left one space (e.g., .p1.p2: */
  488.                     while (pp[1]) {       /*  __p1 -> _p1_p2 -> _p1.p2 when */
  489.                         *pp = pp[1];      /*  finished) [opt.:  since first */
  490.                         ++pp;             /*  two chars are same, can start */
  491.                     }                     /*  shifting at second position] */
  492.                 }
  493.                 last_dot = pp;    /* point at last dot so far... */
  494.                 *pp++ = '_';      /* convert dot to underscore for now */
  495.                 break;
  496. #endif /* MAYBE_PLAIN_FAT */
  497.  
  498.             case ';':             /* start of VMS version? */
  499.                 lastsemi = pp;
  500. #ifdef MAYBE_PLAIN_FAT
  501. # ifdef USE_LFN
  502.                 if (use_lfn)
  503.                     *pp++ = ';';  /* keep for now; remove VMS ";##" later */
  504. # endif
  505. #else
  506.                 *pp++ = ';';      /* keep for now; remove VMS ";##" later */
  507. #endif
  508.                 break;
  509.  
  510. #ifdef MAYBE_PLAIN_FAT
  511.             case ' ':                      /* change spaces to underscores */
  512. # ifdef USE_LFN
  513.                 if (!use_lfn && G.sflag)   /*  only if requested and NO lfn! */
  514. # else
  515.                 if (G.sflag)               /*  only if requested */
  516. # endif
  517.                     *pp++ = '_';
  518.                 else
  519.                     *pp++ = (char)workch;
  520.                 break;
  521. #endif /* MAYBE_PLAIN_FAT */
  522.  
  523.             default:
  524.                 /* allow ASCII 255 and European characters in filenames: */
  525.                 if (isprint(workch) || workch >= 127)
  526.                     *pp++ = (char)workch;
  527.  
  528.         } /* end switch */
  529.     } /* end while loop */
  530.  
  531.     *pp = '\0';                   /* done with pathcomp:  terminate it */
  532.  
  533.     /* if not saving them, remove VMS version numbers (appended ";###") */
  534.     if (!G.V_flag && lastsemi) {
  535. #ifndef MAYBE_PLAIN_FAT
  536.         pp = lastsemi + 1;
  537. #else
  538. # ifdef USE_LFN
  539.         if (use_lfn)
  540.             pp = lastsemi + 1;
  541.         else
  542.             pp = lastsemi;        /* semi-colon was omitted:  expect all #'s */
  543. # else
  544.         pp = lastsemi;            /* semi-colon was omitted:  expect all #'s */
  545. # endif
  546. #endif
  547.         while (isdigit((uch)(*pp)))
  548.             ++pp;
  549.         if (*pp == '\0')          /* only digits between ';' and end:  nuke */
  550.             *lastsemi = '\0';
  551.     }
  552.  
  553.     if (G.pInfo->vollabel) {
  554.         if (strlen(pathcomp) > 11)
  555.             pathcomp[11] = '\0';
  556.     }
  557.  
  558. #ifdef MAYBE_PLAIN_FAT
  559. # ifdef USE_LFN
  560.     if (!use_lfn)
  561.         map2fat(pathcomp, last_dot);  /* 8.3 truncation (in place) */
  562. # else
  563.     map2fat(pathcomp, last_dot);  /* 8.3 truncation (in place) */
  564. # endif
  565. #endif
  566.  
  567. /*---------------------------------------------------------------------------
  568.     Report if directory was created (and no file to create:  filename ended
  569.     in '/'), check name to be sure it exists, and combine path and name be-
  570.     fore exiting.
  571.   ---------------------------------------------------------------------------*/
  572.  
  573.     if (G.filename[strlen(G.filename) - 1] == '/') {
  574.         checkdir(__G__ G.filename, GETPATH);
  575.         if (created_dir) {
  576.             if (QCOND2) {
  577.                 Info(slide, 0, ((char *)slide, LoadFarString(Creating),
  578.                   FnFilter1(G.filename)));
  579.             }
  580.             return IZ_CREATED_DIR;   /* set dir time (note trailing '/') */
  581.         }
  582.         return 2;   /* dir existed already; don't look for data to extract */
  583.     }
  584.  
  585.     if (*pathcomp == '\0') {
  586.         Info(slide, 1, ((char *)slide, LoadFarString(ConversionFailed),
  587.           FnFilter1(G.filename)));
  588.         return 3;
  589.     }
  590.  
  591.     checkdir(__G__ pathcomp, APPEND_NAME);  /* returns 1 if truncated: care? */
  592.     checkdir(__G__ G.filename, GETPATH);
  593.  
  594.     if (G.pInfo->vollabel) {    /* set the volume label now */
  595.         if (QCOND2)
  596.             Info(slide, 0, ((char *)slide, LoadFarString(Labelling),
  597.               (nLabelDrive + 'a' - 1),
  598.               FnFilter1(G.filename)));
  599.         if (volumelabel(G.filename)) {
  600.             Info(slide, 1, ((char *)slide, LoadFarString(ErrSetVolLabel)));
  601.             return 3;
  602.         }
  603.         return 2;   /* success:  skip the "extraction" quietly */
  604.     }
  605.  
  606.     return error;
  607.  
  608. } /* end function mapname() */
  609.  
  610.  
  611.  
  612.  
  613.  
  614. #ifdef MAYBE_PLAIN_FAT
  615.  
  616. /**********************/
  617. /* Function map2fat() */
  618. /**********************/
  619.  
  620. static void map2fat(pathcomp, last_dot)
  621.     char *pathcomp, *last_dot;
  622. {
  623.     char *pEnd = pathcomp + strlen(pathcomp);
  624.  
  625. /*---------------------------------------------------------------------------
  626.     Case 1:  filename has no dot, so figure out if we should add one.  Note
  627.     that the algorithm does not try to get too fancy:  if there are no dots
  628.     already, the name either gets truncated at 8 characters or the last un-
  629.     derscore is converted to a dot (only if more characters are saved that
  630.     way).  In no case is a dot inserted between existing characters.
  631.  
  632.               GRR:  have problem if filename is volume label??
  633.  
  634.   ---------------------------------------------------------------------------*/
  635.  
  636.     /* pEnd = pathcomp + strlen(pathcomp); */
  637.     if (last_dot == (char *)NULL) {   /* no dots:  check for underscores... */
  638.         char *plu = strrchr(pathcomp, '_');   /* pointer to last underscore */
  639.  
  640.         if (plu == (char *)NULL) {  /* no dots, no underscores:  truncate at */
  641.             if (pEnd > pathcomp+8)  /* 8 chars (could insert '.' and keep 11) */
  642.                 *(pEnd = pathcomp+8) = '\0';
  643.         } else if (MIN(plu - pathcomp, 8) + MIN(pEnd - plu - 1, 3) > 8) {
  644.             last_dot = plu;       /* be lazy:  drop through to next if-block */
  645.         } else if ((pEnd - pathcomp) > 8)    /* more fits into just basename */
  646.             pathcomp[8] = '\0';    /* than if convert last underscore to dot */
  647.         /* else whole thing fits into 8 chars or less:  no change */
  648.     }
  649.  
  650. /*---------------------------------------------------------------------------
  651.     Case 2:  filename has dot in it, so truncate first half at 8 chars (shift
  652.     extension if necessary) and second half at three.
  653.   ---------------------------------------------------------------------------*/
  654.  
  655.     if (last_dot != (char *)NULL) {   /* one dot (or two, in the case of */
  656.         *last_dot = '.';              /*  "..") is OK:  put it back in */
  657.  
  658.         if ((last_dot - pathcomp) > 8) {
  659.             char *p=last_dot, *q=pathcomp+8;
  660.             int i;
  661.  
  662.             for (i = 0;  (i < 4) && *p;  ++i)  /* too many chars in basename: */
  663.                 *q++ = *p++;                   /*  shift extension left and */
  664.             *q = '\0';                         /*  truncate/terminate it */
  665.         } else if ((pEnd - last_dot) > 4)
  666.             last_dot[4] = '\0';                /* too many chars in extension */
  667.         /* else filename is fine as is:  no change */
  668.     }
  669. } /* end function map2fat() */
  670.  
  671. #endif /* MAYBE_PLAIN_FAT */
  672.  
  673.  
  674.  
  675.  
  676.  
  677. /***********************/
  678. /* Function checkdir() */
  679. /***********************/
  680.  
  681. int checkdir(__G__ pathcomp, flag)
  682.     __GDEF
  683.     char *pathcomp;
  684.     int flag;
  685. /*
  686.  * returns:  1 - (on APPEND_NAME) truncated filename
  687.  *           2 - path doesn't exist, not allowed to create
  688.  *           3 - path doesn't exist, tried to create and failed; or
  689.  *               path exists and is not a directory, but is supposed to be
  690.  *           4 - path is too long
  691.  *          10 - can't allocate memory for filename buffers
  692.  */
  693. {
  694.     static int rootlen = 0;   /* length of rootpath */
  695.     static char *rootpath;    /* user's "extract-to" directory */
  696.     static char *buildpath;   /* full path (so far) to extracted file */
  697.     static char *end;         /* pointer to end of buildpath ('\0') */
  698. #ifdef MSC
  699.     int attrs;                /* work around MSC stat() bug */
  700. #endif
  701.  
  702. #   define FN_MASK   7
  703. #   define FUNCTION  (flag & FN_MASK)
  704.  
  705.  
  706.  
  707. /*---------------------------------------------------------------------------
  708.     APPEND_DIR:  append the path component to the path being built and check
  709.     for its existence.  If doesn't exist and we are creating directories, do
  710.     so for this one; else signal success or error as appropriate.
  711.   ---------------------------------------------------------------------------*/
  712.  
  713.     if (FUNCTION == APPEND_DIR) {
  714.         int too_long = FALSE;
  715.  
  716.         Trace((stderr, "appending dir segment [%s]\n", pathcomp));
  717.         while ((*end = *pathcomp++) != '\0')
  718.             ++end;
  719.  
  720.         /* GRR:  could do better check, see if overrunning buffer as we go:
  721.          * check end-buildpath after each append, set warning variable if
  722.          * within 20 of FILNAMSIZ; then if var set, do careful check when
  723.          * appending.  Clear variable when begin new path. */
  724.  
  725.         if ((end-buildpath) > FILNAMSIZ-3)  /* need '/', one-char name, '\0' */
  726.             too_long = TRUE;                /* check if extracting directory? */
  727. #ifdef MSC /* MSC 6.00 bug:  stat(non-existent-dir) == 0 [exists!] */
  728.         if (_dos_getfileattr(buildpath, &attrs) || stat(buildpath, &G.statbuf))
  729. #else
  730.         if (SSTAT(buildpath, &G.statbuf))    /* path doesn't exist */
  731. #endif
  732.         {
  733.             if (!G.create_dirs) { /* told not to create (freshening) */
  734.                 free(buildpath);
  735.                 return 2;         /* path doesn't exist:  nothing to do */
  736.             }
  737.             if (too_long) {
  738.                 Info(slide, 1, ((char *)slide, LoadFarString(PathTooLong),
  739.                   FnFilter1(buildpath)));
  740.                 free(buildpath);
  741.                 return 4;         /* no room for filenames:  fatal */
  742.             }
  743.             if (MKDIR(buildpath, 0777) == -1) {   /* create the directory */
  744.                 Info(slide, 1, ((char *)slide, LoadFarString(CantCreateDir),
  745.                   FnFilter2(buildpath), FnFilter1(G.filename)));
  746.                 free(buildpath);
  747.                 return 3;      /* path didn't exist, tried to create, failed */
  748.             }
  749.             created_dir = TRUE;
  750.         } else if (!S_ISDIR(G.statbuf.st_mode)) {
  751.             Info(slide, 1, ((char *)slide, LoadFarString(DirIsntDirectory),
  752.               FnFilter2(buildpath), FnFilter1(G.filename)));
  753.             free(buildpath);
  754.             return 3;          /* path existed but wasn't dir */
  755.         }
  756.         if (too_long) {
  757.             Info(slide, 1, ((char *)slide, LoadFarString(PathTooLong),
  758.               FnFilter1(buildpath)));
  759.             free(buildpath);
  760.             return 4;         /* no room for filenames:  fatal */
  761.         }
  762.         *end++ = '/';
  763.         *end = '\0';
  764.         Trace((stderr, "buildpath now = [%s]\n", FnFilter1(buildpath)));
  765.         return 0;
  766.  
  767.     } /* end if (FUNCTION == APPEND_DIR) */
  768.  
  769. /*---------------------------------------------------------------------------
  770.     GETPATH:  copy full path to the string pointed at by pathcomp, and free
  771.     buildpath.
  772.   ---------------------------------------------------------------------------*/
  773.  
  774.     if (FUNCTION == GETPATH) {
  775.         strcpy(pathcomp, buildpath);
  776.         Trace((stderr, "getting and freeing path [%s]\n",
  777.           FnFilter1(pathcomp)));
  778.         free(buildpath);
  779.         buildpath = end = (char *)NULL;
  780.         return 0;
  781.     }
  782.  
  783. /*---------------------------------------------------------------------------
  784.     APPEND_NAME:  assume the path component is the filename; append it and
  785.     return without checking for existence.
  786.   ---------------------------------------------------------------------------*/
  787.  
  788.     if (FUNCTION == APPEND_NAME) {
  789. #ifdef NOVELL_BUG_WORKAROUND
  790.         if (end == buildpath && !G.pInfo->vollabel) {
  791.             /* work-around for Novell's "overwriting executables" bug:
  792.                prepend "./" to name when no path component is specified */
  793.             *end++ = '.';
  794.             *end++ = '/';
  795.         }
  796. #endif /* NOVELL_BUG_WORKAROUND */
  797.         Trace((stderr, "appending filename [%s]\n", FnFilter1(pathcomp)));
  798.         while ((*end = *pathcomp++) != '\0') {
  799.             ++end;
  800.             if ((end-buildpath) >= FILNAMSIZ) {
  801.                 *--end = '\0';
  802.                 Info(slide, 1, ((char *)slide, LoadFarString(PathTooLongTrunc),
  803.                   FnFilter1(G.filename), FnFilter2(buildpath)));
  804.                 return 1;   /* filename truncated */
  805.             }
  806.         }
  807.         Trace((stderr, "buildpath now = [%s]\n", FnFilter1(buildpath)));
  808.         return 0;  /* could check for existence here, prompt for new name... */
  809.     }
  810.  
  811. /*---------------------------------------------------------------------------
  812.     INIT:  allocate and initialize buffer space for the file currently being
  813.     extracted.  If file was renamed with an absolute path, don't prepend the
  814.     extract-to path.
  815.   ---------------------------------------------------------------------------*/
  816.  
  817.     if (FUNCTION == INIT) {
  818.         Trace((stderr, "initializing buildpath to "));
  819.         /* allocate space for full filename, root path, and maybe "./" */
  820.         if ((buildpath = (char *)malloc(strlen(G.filename)+rootlen+3)) ==
  821.             (char *)NULL)
  822.             return 10;
  823.         if (G.pInfo->vollabel) {
  824. /* GRR:  for network drives, do strchr() and return IZ_VOL_LABEL if not [1] */
  825.             if (renamed_fullpath && pathcomp[1] == ':')
  826.                 *buildpath = (char)ToLower(*pathcomp);
  827.             else if (!renamed_fullpath && rootlen > 1 && rootpath[1] == ':')
  828.                 *buildpath = (char)ToLower(*rootpath);
  829.             else {
  830.                 GETDRIVE(nLabelDrive);   /* assumed that a == 1, b == 2, etc. */
  831.                 *buildpath = (char)(nLabelDrive - 1 + 'a');
  832.             }
  833.             nLabelDrive = *buildpath - 'a' + 1;        /* save for mapname() */
  834.             if (G.volflag == 0 || *buildpath < 'a' ||  /* no label/bogus disk */
  835.                (G.volflag == 1 && !isfloppy(nLabelDrive)))  /* -$:  no fixed */
  836.             {
  837.                 free(buildpath);
  838.                 return IZ_VOL_LABEL;     /* skipping with message */
  839.             }
  840.             *buildpath = '\0';
  841.             end = buildpath;
  842.         } else if (renamed_fullpath) {   /* pathcomp = valid data */
  843.             end = buildpath;
  844.             while ((*end = *pathcomp++) != '\0')
  845.                 ++end;
  846.         } else if (rootlen > 0) {
  847.             strcpy(buildpath, rootpath);
  848.             end = buildpath + rootlen;
  849.         } else {
  850.             *buildpath = '\0';
  851.             end = buildpath;
  852.         }
  853.         Trace((stderr, "[%s]\n", FnFilter1(buildpath)));
  854.         return 0;
  855.     }
  856.  
  857. /*---------------------------------------------------------------------------
  858.     ROOT:  if appropriate, store the path in rootpath and create it if neces-
  859.     sary; else assume it's a zipfile member and return.  This path segment
  860.     gets used in extracting all members from every zipfile specified on the
  861.     command line.  Note that under OS/2 and MS-DOS, if a candidate extract-to
  862.     directory specification includes a drive letter (leading "x:"), it is
  863.     treated just as if it had a trailing '/'--that is, one directory level
  864.     will be created if the path doesn't exist, unless this is otherwise pro-
  865.     hibited (e.g., freshening).
  866.   ---------------------------------------------------------------------------*/
  867.  
  868. #if (!defined(SFX) || defined(SFX_EXDIR))
  869.     if (FUNCTION == ROOT) {
  870.         Trace((stderr, "initializing root path to [%s]\n",
  871.           FnFilter1(pathcomp)));
  872.         if (pathcomp == (char *)NULL) {
  873.             rootlen = 0;
  874.             return 0;
  875.         }
  876.         if ((rootlen = strlen(pathcomp)) > 0) {
  877.             int had_trailing_pathsep=FALSE, has_drive=FALSE, xtra=2;
  878.  
  879.             if (isalpha(pathcomp[0]) && pathcomp[1] == ':')
  880.                 has_drive = TRUE;   /* drive designator */
  881.             if (pathcomp[rootlen-1] == '/' || pathcomp[rootlen-1] == '\\') {
  882.                 pathcomp[--rootlen] = '\0';
  883.                 had_trailing_pathsep = TRUE;
  884.             }
  885.             if (has_drive && (rootlen == 2)) {
  886.                 if (!had_trailing_pathsep)   /* i.e., original wasn't "x:/" */
  887.                     xtra = 3;      /* room for '.' + '/' + 0 at end of "x:" */
  888.             } else if (rootlen > 0) {     /* need not check "x:." and "x:/" */
  889. #ifdef MSC
  890.                 /* MSC 6.00 bug:  stat(non-existent-dir) == 0 [exists!] */
  891.                 if (_dos_getfileattr(pathcomp, &attrs) ||
  892.                     SSTAT(pathcomp,&G.statbuf) || !S_ISDIR(G.statbuf.st_mode))
  893. #else
  894.                 if (SSTAT(pathcomp,&G.statbuf) || !S_ISDIR(G.statbuf.st_mode))
  895. #endif
  896.                 {
  897.                     /* path does not exist */
  898.                     if (!G.create_dirs /* || iswild(pathcomp) */ ) {
  899.                         rootlen = 0;
  900.                         return 2;   /* treat as stored file */
  901.                     }
  902. /* GRR:  scan for wildcard characters?  OS-dependent...  if find any, return 2:
  903.  * treat as stored file(s) */
  904.                     /* create directory (could add loop here to scan pathcomp
  905.                      * and create more than one level, but really necessary?) */
  906.                     if (MKDIR(pathcomp, 0777) == -1) {
  907.                         Info(slide, 1, ((char *)slide,
  908.                           LoadFarString(CantCreateExtractDir),
  909.                           FnFilter1(pathcomp)));
  910.                         rootlen = 0;   /* path didn't exist, tried to create, */
  911.                         return 3;  /* failed:  file exists, or need 2+ levels */
  912.                     }
  913.                 }
  914.             }
  915.             if ((rootpath = (char *)malloc(rootlen+xtra)) == (char *)NULL) {
  916.                 rootlen = 0;
  917.                 return 10;
  918.             }
  919.             strcpy(rootpath, pathcomp);
  920.             if (xtra == 3)                  /* had just "x:", make "x:." */
  921.                 rootpath[rootlen++] = '.';
  922.             rootpath[rootlen++] = '/';
  923.             rootpath[rootlen] = '\0';
  924.             Trace((stderr, "rootpath now = [%s]\n", FnFilter1(rootpath)));
  925.         }
  926.         return 0;
  927.     }
  928. #endif /* !SFX || SFX_EXDIR */
  929.  
  930. /*---------------------------------------------------------------------------
  931.     END:  free rootpath, immediately prior to program exit.
  932.   ---------------------------------------------------------------------------*/
  933.  
  934.     if (FUNCTION == END) {
  935.         Trace((stderr, "freeing rootpath\n"));
  936.         if (rootlen > 0)
  937.             free(rootpath);
  938.         return 0;
  939.     }
  940.  
  941.     return 99;  /* should never reach */
  942.  
  943. } /* end function checkdir() */
  944.  
  945.  
  946.  
  947.  
  948.  
  949.  
  950. /***********************/
  951. /* Function isfloppy() */
  952. /***********************/
  953.  
  954. static int isfloppy(nDrive)  /* more precisely, is it removable? */
  955.     int nDrive;
  956. {
  957.     union REGS regs;
  958.  
  959.     regs.h.ah = 0x44;
  960.     regs.h.al = 0x08;
  961.     regs.h.bl = (uch)nDrive;
  962. #ifdef __EMX__
  963.     _int86(0x21, ®s, ®s);
  964.     if (WREGS(regs,flags) & 1)
  965. #else
  966.     intdos(®s, ®s);
  967.     if (WREGS(regs,cflag))        /* error:  do default a/b check instead */
  968. #endif
  969.     {
  970.         Trace((stderr,
  971.           "error in DOS function 0x44 (AX = 0x%04x):  guessing instead...\n",
  972.           WREGS(regs,ax)));
  973.         return (nDrive == 1 || nDrive == 2)? TRUE : FALSE;
  974.     } else
  975.         return WREGS(regs,ax)? FALSE : TRUE;
  976. }
  977.  
  978.  
  979.  
  980.  
  981. #if (!defined(__GO32__) && !defined(__EMX__))
  982.  
  983. typedef struct dosfcb {
  984.     uch  flag;        /* ff to indicate extended FCB */
  985.     char res[5];      /* reserved */
  986.     uch  vattr;       /* attribute */
  987.     uch  drive;       /* drive (1=A, 2=B, ...) */
  988.     uch  vn[11];      /* file or volume name */
  989.     char dmmy[5];
  990.     uch  nn[11];      /* holds new name if renaming (else reserved) */
  991.     char dmmy2[9];
  992. } dos_fcb;
  993.  
  994. /**************************/
  995. /* Function volumelabel() */
  996. /**************************/
  997.  
  998. static int volumelabel(newlabel)
  999.     char *newlabel;
  1000. {
  1001. #ifdef DEBUG
  1002.     char *p;
  1003. #endif
  1004.     int len = strlen(newlabel);
  1005.     int fcbseg, dtaseg, fcboff, dtaoff, retv;
  1006.     dos_fcb  fcb, dta, far *pfcb=&fcb, far *pdta=&dta;
  1007.     struct SREGS sregs;
  1008.     union REGS regs;
  1009.  
  1010.  
  1011. /*---------------------------------------------------------------------------
  1012.     Label the diskette specified by nLabelDrive using FCB calls.  (Old ver-
  1013.     sions of MS-DOS and OS/2 DOS boxes can't use DOS function 3Ch to create
  1014.     labels.)  Must use far pointers for MSC FP_* macros to work; must pad
  1015.     FCB filenames with spaces; and cannot include dot in 8th position.  May
  1016.     or may not need to zero out FCBs before using; do so just in case.
  1017.   ---------------------------------------------------------------------------*/
  1018.  
  1019. #ifdef WATCOMC_386
  1020.     int truseg;
  1021.  
  1022.     memset(&sregs, 0, sizeof(sregs));
  1023.     memset(®s, 0, sizeof(regs));
  1024.     /* PMODE/W does not support extended versions of any dos FCB functions, */
  1025.     /* so we have to use brute force, allocating real mode memory for them. */
  1026.     regs.w.ax = 0x0100;
  1027.     regs.w.bx = (2 * sizeof(dos_fcb) + 15) >> 4;   /* size in paragraphs */
  1028.     int386(0x31, ®s, ®s);            /* DPMI allocate DOS memory */
  1029.     if (regs.w.cflag)
  1030.         return DF_MDY;                     /* no memory, return default */
  1031.     truseg = regs.w.dx;                    /* protected mode selector */
  1032.     dtaseg = regs.w.ax;                    /* real mode paragraph */
  1033.     fcboff = 0;
  1034.     dtaoff = sizeof(dos_fcb);
  1035. #ifdef XXX__MK_FP_IS_BROKEN
  1036.     /* XXX  This code may not be trustworthy in general, though it is   */
  1037.     /* valid with DOS/4GW and PMODE/w, which is all we support for now. */
  1038.     regs.w.ax = 6;
  1039.     regs.w.bx = truseg;
  1040.     int386(0x31, ®s, ®s);            /* convert seg to linear address */
  1041.     pfcb = (dos_fcb far *) (((ulg) regs.w.cx << 16) | regs.w.dx);
  1042.     /* pfcb = (dos_fcb far *) ((ulg) dtaseg << 4); */
  1043.     pdta = pfcb + 1;
  1044. #else
  1045.     pfcb = MK_FP(truseg, fcboff);
  1046.     pdta = MK_FP(truseg, dtaoff);
  1047. #endif
  1048.     _fmemset((char far *)pfcb, 0, 2 * sizeof(dos_fcb));
  1049.     /* we pass the REAL MODE paragraph to the dos interrupts: */
  1050.     fcbseg = dtaseg;
  1051.  
  1052. #else /* !WATCOMC_386 */
  1053.  
  1054.     memset((char *)&dta, 0, sizeof(dos_fcb));
  1055.     memset((char *)&fcb, 0, sizeof(dos_fcb));
  1056.     fcbseg = FP_SEG(pfcb);
  1057.     fcboff = FP_OFF(pfcb);
  1058.     dtaseg = FP_SEG(pdta);
  1059.     dtaoff = FP_OFF(pdta);
  1060. #endif /* ?WATCOMC_386 */
  1061.  
  1062. #ifdef DEBUG
  1063.     for (p = (char *)&dta; (p - (char *)&dta) < sizeof(dos_fcb); ++p)
  1064.         if (*p)
  1065.             fprintf(stderr, "error:  dta[%d] = %x\n", (p - (char *)&dta), *p);
  1066.     for (p = (char *)&fcb; (p - (char *)&fcb) < sizeof(dos_fcb); ++p)
  1067.         if (*p)
  1068.             fprintf(stderr, "error:  fcb[%d] = %x\n", (p - (char *)&fcb), *p);
  1069.     printf("testing pointer macros:\n");
  1070.     segread(&sregs);
  1071.     printf("cs = %x, ds = %x, es = %x, ss = %x\n", sregs.cs, sregs.ds, sregs.es,
  1072.       sregs.ss);
  1073. #endif /* DEBUG */
  1074.  
  1075. #if 0
  1076. #ifdef __TURBOC__
  1077.     bdosptr(0x1a, dta, DO_NOT_CARE);
  1078. #else
  1079.     (intdosx method below)
  1080. #endif
  1081. #endif /* 0 */
  1082.  
  1083.     /* set the disk transfer address for subsequent FCB calls */
  1084.     sregs.ds = dtaseg;
  1085.     WREGS(regs,dx) = dtaoff;
  1086.     Trace((stderr, "segment:offset of pdta = %x:%x\n", dtaseg, dtaoff));
  1087.     Trace((stderr, "&dta = %lx, pdta = %lx\n", (ulg)&dta, (ulg)pdta));
  1088.     regs.h.ah = 0x1a;
  1089.     F_intdosx(®s, ®s, &sregs);
  1090.  
  1091.     /* fill in the FCB */
  1092.     sregs.ds = fcbseg;
  1093.     WREGS(regs,dx) = fcboff;
  1094.     pfcb->flag = 0xff;          /* extended FCB */
  1095.     pfcb->vattr = 0x08;         /* attribute:  disk volume label */
  1096.     pfcb->drive = (uch)nLabelDrive;
  1097.  
  1098. #ifdef DEBUG
  1099.     Trace((stderr, "segment:offset of pfcb = %x:%x\n", sregs.ds, WREGS(regs,dx)));
  1100.     Trace((stderr, "&fcb = %lx, pfcb = %lx\n", (ulg)&fcb, (ulg)pfcb));
  1101.     Trace((stderr, "(2nd check:  labelling drive %c:)\n", pfcb->drive-1+'A'));
  1102.     if (pfcb->flag != fcb.flag)
  1103.         fprintf(stderr, "error:  pfcb->flag = %d, fcb.flag = %d\n",
  1104.           pfcb->flag, fcb.flag);
  1105.     if (pfcb->drive != fcb.drive)
  1106.         fprintf(stderr, "error:  pfcb->drive = %d, fcb.drive = %d\n",
  1107.           pfcb->drive, fcb.drive);
  1108.     if (pfcb->vattr != fcb.vattr)
  1109.         fprintf(stderr, "error:  pfcb->vattr = %d, fcb.vattr = %d\n",
  1110.           pfcb->vattr, fcb.vattr);
  1111. #endif /* DEBUG */
  1112.  
  1113.     /* check for existing label */
  1114.     Trace((stderr, "searching for existing label via FCBs\n"));
  1115.     regs.h.ah = 0x11;      /* FCB find first */
  1116. #ifdef WATCOMC_386
  1117.     _fstrncpy((char far *)&pfcb->vn, "???????????", 11);
  1118. #else
  1119. # if 0  /* THIS STRNCPY FAILS (MSC bug?): */
  1120.     strncpy(pfcb->vn, "???????????", 11);   /* i.e., "*.*" */
  1121.     Trace((stderr, "pfcb->vn = %lx\n", (ulg)pfcb->vn));
  1122.     Trace((stderr, "flag = %x, drive = %d, vattr = %x, vn = %s = %s.\n",
  1123.       fcb.flag, fcb.drive, fcb.vattr, fcb.vn, pfcb->vn));
  1124. # endif
  1125.     strncpy((char *)fcb.vn, "???????????", 11);   /* i.e., "*.*" */
  1126. #endif /* ?WATCOMC_386 */
  1127.     Trace((stderr, "fcb.vn = %lx\n", (ulg)fcb.vn));
  1128.     Trace((stderr, "regs.h.ah = %x, regs.x.dx = %04x, sregs.ds = %04x\n",
  1129.       regs.h.ah, WREGS(regs,dx), sregs.ds));
  1130.     Trace((stderr, "flag = %x, drive = %d, vattr = %x, vn = %s = %s.\n",
  1131.       fcb.flag, fcb.drive, fcb.vattr, fcb.vn, pfcb->vn));
  1132.     F_intdosx(®s, ®s, &sregs);
  1133.  
  1134. /*---------------------------------------------------------------------------
  1135.     If not previously labelled, write a new label.  Otherwise just rename,
  1136.     since MS-DOS 2.x has a bug that damages the FAT when the old label is
  1137.     deleted.
  1138.   ---------------------------------------------------------------------------*/
  1139.  
  1140.     if (regs.h.al) {
  1141.         Trace((stderr, "no label found\n\n"));
  1142.         regs.h.ah = 0x16;                 /* FCB create file */
  1143. #ifdef WATCOMC_386
  1144.         _fstrncpy((char far *)pfcb->vn, newlabel, len);
  1145.         if (len < 11)
  1146.             _fstrncpy((char far *)(pfcb->vn+len), "           ", 11-len);
  1147. #else
  1148.         strncpy((char *)fcb.vn, newlabel, len);
  1149.         if (len < 11)   /* fill with spaces */
  1150.             strncpy((char *)(fcb.vn+len), "           ", 11-len);
  1151. #endif
  1152.         Trace((stderr, "fcb.vn = %lx  pfcb->vn = %lx\n", (ulg)fcb.vn,
  1153.           (ulg)pfcb->vn));
  1154.         Trace((stderr, "flag = %x, drive = %d, vattr = %x\n", fcb.flag,
  1155.           fcb.drive, fcb.vattr));
  1156.         Trace((stderr, "vn = %s = %s.\n", fcb.vn, pfcb->vn));
  1157.         F_intdosx(®s, ®s, &sregs);
  1158.         regs.h.ah = 0x10;                 /* FCB close file */
  1159.         if (regs.h.al) {
  1160.             Trace((stderr, "unable to write volume name (AL = %x)\n",
  1161.               regs.h.al));
  1162.             F_intdosx(®s, ®s, &sregs);
  1163.             retv = 1;
  1164.         } else {
  1165.             F_intdosx(®s, ®s, &sregs);
  1166.             Trace((stderr, "new volume label [%s] written\n", newlabel));
  1167.             retv = 0;
  1168.         }
  1169.     } else {
  1170.         Trace((stderr, "found old label [%s]\n\n", dta.vn));  /* not term. */
  1171.         regs.h.ah = 0x17;                 /* FCB rename */
  1172. #ifdef WATCOMC_386
  1173.         _fstrncpy((char far *)pfcb->vn, (char far *)pdta->vn, 11);
  1174.         _fstrncpy((char far *)pfcb->nn, newlabel, len);
  1175.         if (len < 11)
  1176.             _fstrncpy((char far *)(pfcb->nn+len), "           ", 11-len);
  1177. #else
  1178.         strncpy((char *)fcb.vn, (char *)dta.vn, 11);
  1179.         strncpy((char *)fcb.nn, newlabel, len);
  1180.         if (len < 11)                     /* fill with spaces */
  1181.             strncpy((char *)(fcb.nn+len), "           ", 11-len);
  1182. #endif
  1183.         Trace((stderr, "fcb.vn = %lx  pfcb->vn = %lx\n", (ulg)fcb.vn,
  1184.           (ulg)pfcb->vn));
  1185.         Trace((stderr, "fcb.nn = %lx  pfcb->nn = %lx\n", (ulg)fcb.nn,
  1186.           (ulg)pfcb->nn));
  1187.         Trace((stderr, "flag = %x, drive = %d, vattr = %x\n", fcb.flag,
  1188.           fcb.drive, fcb.vattr));
  1189.         Trace((stderr, "vn = %s = %s.\n", fcb.vn, pfcb->vn));
  1190.         Trace((stderr, "nn = %s = %s.\n", fcb.nn, pfcb->nn));
  1191.         F_intdosx(®s, ®s, &sregs);
  1192.         if (regs.h.al) {
  1193.             Trace((stderr, "Unable to change volume name (AL = %x)\n",
  1194.               regs.h.al));
  1195.             retv = 1;
  1196.         } else {
  1197.             Trace((stderr, "volume label changed to [%s]\n", newlabel));
  1198.             retv = 0;
  1199.         }
  1200.     }
  1201. #ifdef WATCOMC_386
  1202.     regs.w.ax = 0x0101;                    /* free dos memory */
  1203.     regs.w.dx = truseg;
  1204.     int386(0x31, ®s, ®s);
  1205. #endif
  1206.     return retv;
  1207.  
  1208. } /* end function volumelabel() */
  1209.  
  1210. #endif /* !__GO32__ && !__EMX__ */
  1211.  
  1212.  
  1213.  
  1214.  
  1215.  
  1216. /****************************/
  1217. /* Function close_outfile() */
  1218. /****************************/
  1219.  
  1220. void close_outfile(__G)
  1221.     __GDEF
  1222.  /*
  1223.   * MS-DOS VERSION
  1224.   *
  1225.   * Set the output file date/time stamp according to information from the
  1226.   * zipfile directory record for this member, then close the file and set
  1227.   * its permissions (archive, hidden, read-only, system).  Aside from closing
  1228.   * the file, this routine is optional (but most compilers support it).
  1229.   */
  1230. {
  1231. #ifdef USE_EF_UT_TIME
  1232.     iztimes z_utime;
  1233.  
  1234.     /* The following DOS date/time structure is machine-dependent as it
  1235.      * assumes "little endian" byte order.  For MSDOS specific code, which
  1236.      * is run on x86 CPUs (or emulators), this assumption is valid; but
  1237.      * care should be taken when using this code as template for other ports.
  1238.      */
  1239.     union {
  1240.         ulg z_dostime;
  1241. # ifdef __TURBOC__
  1242.         struct ftime ft;        /* system file time record */
  1243. # endif
  1244.         struct {                /* date and time words */
  1245.             union {             /* DOS file modification time word */
  1246.                 ush ztime;
  1247.                 struct {
  1248.                     unsigned zt_se : 5;
  1249.                     unsigned zt_mi : 6;
  1250.                     unsigned zt_hr : 5;
  1251.                 } _tf;
  1252.             } _t;
  1253.             union {             /* DOS file modification date word */
  1254.                 ush zdate;
  1255.                 struct {
  1256.                     unsigned zd_dy : 5;
  1257.                     unsigned zd_mo : 4;
  1258.                     unsigned zd_yr : 7;
  1259.                 } _df;
  1260.             } _d;
  1261.         } zt;
  1262.     } dos_dt;
  1263. #else /* !USE_EF_UT_TIME */
  1264. # ifdef __TURBOC__
  1265.     union {
  1266.         struct ftime ft;        /* system file time record */
  1267.         struct {
  1268.             ush ztime;          /* date and time words */
  1269.             ush zdate;          /* .. same format as in .ZIP file */
  1270.         } zt;
  1271.     } dos_dt;
  1272. # endif
  1273. #endif /* ?USE_EF_UT_TIME */
  1274.  
  1275.  
  1276. /*---------------------------------------------------------------------------
  1277.     Copy and/or convert time and date variables, if necessary; then set the
  1278.     file time/date.  WEIRD BORLAND "BUG":  if output is buffered, and if run
  1279.     under at least some versions of DOS (e.g., 6.0), and if files are smaller
  1280.     than DOS physical block size (i.e., 512 bytes) (?), then files MAY NOT
  1281.     get timestamped correctly--apparently setftime() occurs before any data
  1282.     are written to the file, and when file is closed and buffers are flushed,
  1283.     timestamp is overwritten with current time.  Even with a 32K buffer, this
  1284.     does not seem to occur with larger files.  UnZip output is now unbuffered,
  1285.     but if it were not, could still avoid problem by adding "fflush(outfile)"
  1286.     just before setftime() call.  Weird, huh?
  1287.   ---------------------------------------------------------------------------*/
  1288.  
  1289. #ifdef USE_EF_UT_TIME
  1290.     if (G.extra_field && (ef_scan_for_izux(G.extra_field,
  1291.         G.lrec.extra_field_length, 0, &z_utime, NULL) & EB_UT_FL_MTIME))
  1292.     {
  1293.         struct tm *t;
  1294.  
  1295.         TTrace((stderr, "close_outfile:  Unix e.f. modif. time = %ld\n",
  1296.           z_utime.mtime));
  1297.         /* round up to even seconds */
  1298.         z_utime.mtime = (z_utime.mtime + 1) & (~1);
  1299.         TIMET_TO_NATIVE(z_utime.mtime)   /* NOP unless MSC 7.0 or Macintosh */
  1300.         t = localtime(&(z_utime.mtime));
  1301.         if (t->tm_year < 80) {
  1302.             dos_dt.zt._t._tf.zt_se = 0;
  1303.             dos_dt.zt._t._tf.zt_mi = 0;
  1304.             dos_dt.zt._t._tf.zt_hr = 0;
  1305.             dos_dt.zt._d._df.zd_dy = 1;
  1306.             dos_dt.zt._d._df.zd_mo = 1;
  1307.             dos_dt.zt._d._df.zd_yr = 0;
  1308.         } else {
  1309.             dos_dt.zt._t._tf.zt_se = t->tm_sec >> 1;
  1310.             dos_dt.zt._t._tf.zt_mi = t->tm_min;
  1311.             dos_dt.zt._t._tf.zt_hr = t->tm_hour;
  1312.             dos_dt.zt._d._df.zd_dy = t->tm_mday;
  1313.             dos_dt.zt._d._df.zd_mo = t->tm_mon + 1;
  1314.             dos_dt.zt._d._df.zd_yr = t->tm_year - 80;
  1315.         }
  1316.     } else {
  1317.         dos_dt.zt._t.ztime = G.lrec.last_mod_file_time;
  1318.         dos_dt.zt._d.zdate = G.lrec.last_mod_file_date;
  1319.     }
  1320. # ifdef __TURBOC__
  1321.     setftime(fileno(G.outfile), &dos_dt.ft);
  1322. # else
  1323.     _dos_setftime(fileno(G.outfile), dos_dt.zt._d.zdate, dos_dt.zt._t.ztime);
  1324. # endif
  1325. #else /* !USE_EF_UT_TIME */
  1326. # ifdef __TURBOC__
  1327.     dos_dt.zt.ztime = G.lrec.last_mod_file_time;
  1328.     dos_dt.zt.zdate = G.lrec.last_mod_file_date;
  1329.     setftime(fileno(G.outfile), &dos_dt.ft);
  1330. # else
  1331.     _dos_setftime(fileno(G.outfile), G.lrec.last_mod_file_date,
  1332.                                      G.lrec.last_mod_file_time);
  1333. # endif
  1334. #endif /* ?USE_EF_UT_TIME */
  1335.  
  1336. /*---------------------------------------------------------------------------
  1337.     And finally we can close the file...at least everybody agrees on how to
  1338.     do *this*.  I think...  Also change the mode according to the stored file
  1339.     attributes, since we didn't do that when we opened the dude.
  1340.   ---------------------------------------------------------------------------*/
  1341.  
  1342.     fclose(G.outfile);
  1343.  
  1344. #ifdef __TURBOC__
  1345. #   if (defined(__BORLANDC__) && (__BORLANDC__ >= 0x0452))
  1346. #     define Chmod  _rtl_chmod
  1347. #   else
  1348. #     define Chmod  _chmod
  1349. #   endif
  1350.     if (Chmod(G.filename, 1, G.pInfo->file_attr) != G.pInfo->file_attr)
  1351.         Info(slide, 1, ((char *)slide, LoadFarString(AttribsMayBeWrong)));
  1352. #else /* !__TURBOC__ */
  1353.     _dos_setfileattr(G.filename, G.pInfo->file_attr);
  1354. #endif /* ?__TURBOC__ */
  1355.  
  1356. } /* end function close_outfile() */
  1357.  
  1358.  
  1359.  
  1360.  
  1361.  
  1362. #ifndef SFX
  1363.  
  1364. /*************************/
  1365. /* Function dateformat() */
  1366. /*************************/
  1367.  
  1368. int dateformat()
  1369. {
  1370.  
  1371. /*---------------------------------------------------------------------------
  1372.     For those operating systems that support it, this function returns a
  1373.     value that tells how national convention says that numeric dates are
  1374.     displayed.  Return values are DF_YMD, DF_DMY and DF_MDY (the meanings
  1375.     should be fairly obvious).
  1376.   ---------------------------------------------------------------------------*/
  1377.  
  1378. #ifndef WINDLL
  1379.     ush CountryInfo[18];
  1380. #if (!defined(__GO32__) && !defined(__EMX__))
  1381.     ush far *_CountryInfo = CountryInfo;
  1382.     struct SREGS sregs;
  1383.     union REGS regs;
  1384. #ifdef WATCOMC_386
  1385.     ush seg, para;
  1386.  
  1387.     memset(&sregs, 0, sizeof(sregs));
  1388.     memset(®s, 0, sizeof(regs));
  1389.     /* PMODE/W does not support an extended version of dos function 38,   */
  1390.     /* so we have to use brute force, allocating real mode memory for it. */
  1391.     regs.w.ax = 0x0100;
  1392.     regs.w.bx = 3;                         /* 36 bytes rounds up to 48 */
  1393.     int386(0x31, ®s, ®s);            /* DPMI allocate DOS memory */
  1394.     if (regs.w.cflag)
  1395.         return DF_MDY;                     /* no memory, return default */
  1396.     seg = regs.w.dx;
  1397.     para = regs.w.ax;
  1398.  
  1399. #ifdef XXX__MK_FP_IS_BROKEN
  1400.     /* XXX  This code may not be trustworthy in general, though it is
  1401.      * valid with DOS/4GW and PMODE/w, which is all we support for now. */
  1402.  /* _CountryInfo = (ush far *) (para << 4); */ /* works for some extenders */
  1403.     regs.w.ax = 6;
  1404.     regs.w.bx = seg;
  1405.     int386(0x31, ®s, ®s);            /* convert seg to linear address */
  1406.     _CountryInfo = (ush far *) (((ulg) regs.w.cx << 16) | regs.w.dx);
  1407. #else
  1408.     _CountryInfo = (ush far *) MK_FP(seg, 0);
  1409. #endif
  1410.  
  1411.     sregs.ds = para;                       /* real mode paragraph */
  1412.     regs.w.dx = 0;                         /* no offset from segment */
  1413.     regs.w.ax = 0x3800;
  1414.     int86x_realmode(0x21, ®s, ®s, &sregs);
  1415.     CountryInfo[0] = regs.w.cflag ? 0 : _CountryInfo[0];
  1416.     regs.w.ax = 0x0101;
  1417.     regs.w.dx = seg;
  1418.     int386(0x31, ®s, ®s);              /* DPMI free DOS memory */
  1419.  
  1420. #else /* !WATCOMC_386 */
  1421.  
  1422.     sregs.ds  = FP_SEG(_CountryInfo);
  1423.     regs.x.dx = FP_OFF(_CountryInfo);
  1424.     regs.x.ax = 0x3800;
  1425.     intdosx(®s, ®s, &sregs);
  1426. #endif /* ?WATCOMC_386 */
  1427.  
  1428. #else /* __GO32__ || __EMX__ */
  1429.     _dos_getcountryinfo(CountryInfo);
  1430. #endif /* ?(__GO32__ || __EMX__) */
  1431.  
  1432.     switch(CountryInfo[0]) {
  1433.         case 0:
  1434.             return DF_MDY;
  1435.         case 1:
  1436.             return DF_DMY;
  1437.         case 2:
  1438.             return DF_YMD;
  1439.     }
  1440. #endif /* !WINDLL && !WATCOMC_386 */
  1441.  
  1442.     return DF_MDY;   /* default for systems without locale info */
  1443.  
  1444. } /* end function dateformat() */
  1445.  
  1446.  
  1447.  
  1448.  
  1449. #ifndef WINDLL
  1450.  
  1451. /************************/
  1452. /*  Function version()  */
  1453. /************************/
  1454.  
  1455. void version(__G)
  1456.     __GDEF
  1457. {
  1458.     int len;
  1459. #if defined(__DJGPP__) || defined(__WATCOMC__) || \
  1460.     (defined(_MSC_VER) && (_MSC_VER != 800))
  1461.     char buf[80];
  1462. #endif
  1463.  
  1464.     len = sprintf((char *)slide, LoadFarString(CompiledWith),
  1465.  
  1466. #ifdef __GNUC__
  1467. #  ifdef __DJGPP__
  1468.       (sprintf(buf, "djgpp v%d.%02d / gcc ", __DJGPP__, __DJGPP_MINOR__), buf),
  1469. #  elif __GO32__                  /* __GO32__ is defined as "1" only (sigh) */
  1470.       "djgpp v1.x / gcc ",
  1471. #  elif defined(__EMX__)          /* ...so is __EMX__ (double sigh) */
  1472.       "emx+gcc ",
  1473. #  else
  1474.       "gcc ",
  1475. #  endif
  1476.       __VERSION__,
  1477. #elif defined(__WATCOMC__)
  1478. #  if (__WATCOMC__ % 10 != 0)
  1479.       "Watcom C/C++", (sprintf(buf, " %d.%02d", __WATCOMC__ / 100,
  1480.                                __WATCOMC__ % 100), buf),
  1481. #  else
  1482.       "Watcom C/C++", (sprintf(buf, " %d.%d", __WATCOMC__ / 100,
  1483.                                (__WATCOMC__ % 100) / 10), buf),
  1484. #  endif
  1485. #elif defined(__TURBOC__)
  1486. #  ifdef __BORLANDC__
  1487.       "Borland C++",
  1488. #    if (__BORLANDC__ < 0x0200)
  1489.         " 1.0",
  1490. #    elif (__BORLANDC__ == 0x0200)   /* James:  __TURBOC__ = 0x0297 */
  1491.         " 2.0",
  1492. #    elif (__BORLANDC__ == 0x0400)
  1493.         " 3.0",
  1494. #    elif (__BORLANDC__ == 0x0410)   /* __BCPLUSPLUS__ = 0x0310 */
  1495.         " 3.1",
  1496. #    elif (__BORLANDC__ == 0x0452)   /* __BCPLUSPLUS__ = 0x0320 */
  1497.         " 4.0 or 4.02",
  1498. #    elif (__BORLANDC__ == 0x0460)   /* __BCPLUSPLUS__ = 0x0340 */
  1499.         " 4.5",
  1500. #    elif (__BORLANDC__ == 0x0500)
  1501.         " 5.0",
  1502. #    else
  1503.         " later than 5.0",
  1504. #    endif
  1505. #  else
  1506.       "Turbo C",
  1507. #    if (__TURBOC__ > 0x0500)
  1508.         "++ later than 5.0",
  1509. #    elif (__TURBOC__ == 0x0500)     /* Mike W:  5.0 -> 0x0500 */
  1510.         "++ 5.0",
  1511. #    elif (__TURBOC__ >= 0x0400)     /* Kevin:  3.0 -> 0x0401 */
  1512.         "++ 3.0 or 4.x",
  1513. #    elif (__TURBOC__ == 0x0295)     /* [661] vfy'd by Kevin */
  1514.         "++ 1.0",
  1515. #    elif ((__TURBOC__ >= 0x018d) && (__TURBOC__ <= 0x0200)) /* James: 0x0200 */
  1516.         " 2.0",
  1517. #    elif (__TURBOC__ > 0x0100)
  1518.         " 1.5",                      /* James:  0x0105? */
  1519. #    else
  1520.         " 1.0",                      /* James:  0x0100 */
  1521. #    endif
  1522. #  endif
  1523. #elif defined(MSC)
  1524.       "Microsoft C ",
  1525. #  ifdef _MSC_VER
  1526. #    if (_MSC_VER == 800)
  1527.         "8.0/8.0c (Visual C++ 1.0/1.5)",
  1528. #    else
  1529.         (sprintf(buf, "%d.%02d", _MSC_VER/100, _MSC_VER%100), buf),
  1530. #    endif
  1531. #  else
  1532.       "5.1 or earlier",
  1533. #  endif
  1534. #else
  1535.       "unknown compiler", "",
  1536. #endif /* ?compilers */
  1537.  
  1538.       "MS-DOS",
  1539.  
  1540. #if (defined(__GNUC__) || defined(WATCOMC_386))
  1541.       " (32-bit)",
  1542. #else
  1543. #  if defined(M_I86HM) || defined(__HUGE__)
  1544.       " (16-bit, huge)",
  1545. #  elif defined(M_I86LM) || defined(__LARGE__)
  1546.       " (16-bit, large)",
  1547. #  elif defined(M_I86MM) || defined(__MEDIUM__)
  1548.       " (16-bit, medium)",
  1549. #  elif defined(M_I86CM) || defined(__COMPACT__)
  1550.       " (16-bit, compact)",
  1551. #  elif defined(M_I86SM) || defined(__SMALL__)
  1552.       " (16-bit, small)",
  1553. #  elif defined(M_I86TM) || defined(__TINY__)
  1554.       " (16-bit, tiny)",
  1555. #  else
  1556.       " (16-bit)",
  1557. #  endif
  1558. #endif
  1559.  
  1560. #ifdef __DATE__
  1561.       " on ", __DATE__
  1562. #else
  1563.       "", ""
  1564. #endif
  1565.     );
  1566.  
  1567.     (*G.message)((zvoid *)&G, slide, (ulg)len, 0);
  1568.                                 /* MSC can't handle huge macro expansion */
  1569.  
  1570.     /* temporary debugging code for Borland compilers only */
  1571. #if (defined(__TURBOC__) && defined(DEBUG))
  1572.     Info(slide, 0, ((char *)slide, "\tdebug(__TURBOC__ = 0x%04x = %d)\n",
  1573.       __TURBOC__, __TURBOC__));
  1574. #ifdef __BORLANDC__
  1575.     Info(slide, 0, ((char *)slide, "\tdebug(__BORLANDC__ = 0x%04x)\n",
  1576.       __BORLANDC__));
  1577. #else
  1578.     Info(slide, 0, ((char *)slide, "\tdebug(__BORLANDC__ not defined)\n"));
  1579. #endif
  1580. #ifdef __TCPLUSPLUS__
  1581.     Info(slide, 0, ((char *)slide, "\tdebug(__TCPLUSPLUS__ = 0x%04x)\n",
  1582.       __TCPLUSPLUS__));
  1583. #else
  1584.     Info(slide, 0, ((char *)slide, "\tdebug(__TCPLUSPLUS__ not defined)\n"));
  1585. #endif
  1586. #ifdef __BCPLUSPLUS__
  1587.     Info(slide, 0, ((char *)slide, "\tdebug(__BCPLUSPLUS__ = 0x%04x)\n\n",
  1588.       __BCPLUSPLUS__));
  1589. #else
  1590.     Info(slide, 0, ((char *)slide, "\tdebug(__BCPLUSPLUS__ not defined)\n\n"));
  1591. #endif
  1592. #endif /* __TURBOC__ && DEBUG */
  1593.  
  1594. } /* end function version() */
  1595.  
  1596. #endif /* !WINDLL */
  1597. #endif /* !SFX */
  1598.  
  1599.  
  1600.  
  1601.  
  1602.  
  1603. #if (defined(__GO32__) || defined(__EMX__))
  1604.  
  1605. int volatile _doserrno;
  1606.  
  1607. unsigned _dos_getcountryinfo(void *countrybuffer)
  1608. {
  1609.     asm("movl %0, %%edx": : "g" (countrybuffer));
  1610.     asm("movl $0x3800, %eax");
  1611.     asm("int $0x21": : : "%eax", "%ebx", "%ecx", "%edx", "%esi", "%edi");
  1612.     _doserrno = 0;
  1613.     asm("jnc 1f");
  1614.     asm("movl %%eax, %0": "=m" (_doserrno));
  1615.     asm("1:");
  1616.     return _doserrno;
  1617. }
  1618.  
  1619.  
  1620. #if (!defined(__DJGPP__) || (__DJGPP__ < 2))
  1621.  
  1622. void _dos_setftime(int fd, ush dosdate, ush dostime)
  1623. {
  1624.     asm("movl %0, %%ebx": : "g" (fd));
  1625.     asm("movl %0, %%ecx": : "g" (dostime));
  1626.     asm("movl %0, %%edx": : "g" (dosdate));
  1627.     asm("movl $0x5701, %eax");
  1628.     asm("int $0x21": : : "%eax", "%ebx", "%ecx", "%edx", "%esi", "%edi");
  1629. }
  1630.  
  1631. void _dos_setfileattr(char *name, int attr)
  1632. {
  1633.     asm("movl %0, %%edx": : "g" (name));
  1634.     asm("movl %0, %%ecx": : "g" (attr));
  1635.     asm("movl $0x4301, %eax");
  1636.     asm("int $0x21": : : "%eax", "%ebx", "%ecx", "%edx", "%esi", "%edi");
  1637. }
  1638.  
  1639. void _dos_getdrive(unsigned *d)
  1640. {
  1641.     asm("movl $0x1900, %eax");
  1642.     asm("int $0x21": : : "%eax", "%ebx", "%ecx", "%edx", "%esi", "%edi");
  1643.     asm("xorb %ah, %ah");
  1644.     asm("incb %al");
  1645.     asm("movl %%eax, %0": "=a" (*d));
  1646. }
  1647.  
  1648. unsigned _dos_creat(char *path, unsigned attr, int *fd)
  1649. {
  1650.     asm("movl $0x3c00, %eax");
  1651.     asm("movl %0, %%edx": :"g" (path));
  1652.     asm("movl %0, %%ecx": :"g" (attr));
  1653.     asm("int $0x21": : : "%eax", "%ebx", "%ecx", "%edx", "%esi", "%edi");
  1654.     asm("movl %%eax, %0": "=a" (*fd));
  1655.     _doserrno = 0;
  1656.     asm("jnc 1f");
  1657.     _doserrno = *fd;
  1658.     switch (_doserrno) {
  1659.     case 3:
  1660.            errno = ENOENT;
  1661.            break;
  1662.     case 4:
  1663.            errno = EMFILE;
  1664.            break;
  1665.     case 5:
  1666.            errno = EACCES;
  1667.            break;
  1668.     }
  1669.     asm("1:");
  1670.     return _doserrno;
  1671. }
  1672.  
  1673. unsigned _dos_close(int fd)
  1674. {
  1675.     asm("movl %0, %%ebx": : "g" (fd));
  1676.     asm("movl $0x3e00, %eax");
  1677.     asm("int $0x21": : : "%eax", "%ebx", "%ecx", "%edx", "%esi", "%edi");
  1678.     _doserrno = 0;
  1679.     asm("jnc 1f");
  1680.     asm ("movl %%eax, %0": "=m" (_doserrno));
  1681.     if (_doserrno == 6) {
  1682.           errno = EBADF;
  1683.     }
  1684.     asm("1:");
  1685.     return _doserrno;
  1686. }
  1687.  
  1688. #endif /* !__DJGPP__ || (__DJGPP__ < 2) */
  1689.  
  1690.  
  1691. static int volumelabel(char *name)
  1692. {
  1693.     int fd;
  1694.  
  1695.     return _dos_creat(name, FA_LABEL, &fd) ? fd : _dos_close(fd);
  1696. }
  1697.  
  1698.  
  1699. #if (defined(__DJGPP__) && (__DJGPP__ > 1))
  1700.  
  1701. /* Prevent globbing of filenames.  This gives the same functionality as
  1702.  * "stubedit <program> globbing=no" did with DJGPP v1.
  1703.  */
  1704. int __crt0_glob_function(void)
  1705. {
  1706.     return 0;
  1707. }
  1708.  
  1709. /* Reduce the size of the executable and remove the functionality to read
  1710.  * the program's environment from whatever $DJGPP points to.
  1711.  */
  1712. void __crt_load_environment_file(void)
  1713. {
  1714. }
  1715.  
  1716. #endif /* __DJGPP__ > 1 */
  1717. #endif /* __GO32__ || __EMX__ */
  1718.  
  1719.  
  1720.  
  1721.  
  1722.  
  1723. #ifdef WATCOMC_386
  1724.  
  1725. static struct RMINFO {
  1726.     ulg edi, esi, ebp;
  1727.     ulg reserved;
  1728.     ulg ebx, edx, ecx, eax;
  1729.     ush flags;
  1730.     ush es,ds,fs,gs;
  1731.     ush ip_ignored,cs_ignored;
  1732.     ush sp,ss;
  1733. };
  1734.  
  1735. /* This function is used to call dos interrupts that may not be supported
  1736.  * by some particular 32-bit DOS extender.  It uses DPMI function 300h to
  1737.  * simulate a real mode call of the interrupt.  The caller is responsible
  1738.  * for providing real mode addresses of any buffer areas used.  The docs
  1739.  * for PMODE/W imply that this should not be necessary for calling the DOS
  1740.  * interrupts that it doesn't extend, but it crashes when this isn't used. */
  1741.  
  1742. static int int86x_realmode(int inter_no, union REGS *in,
  1743.                             union REGS *out, struct SREGS *seg)
  1744. {
  1745.     union REGS local;
  1746.     struct SREGS localseg;
  1747.     struct RMINFO rmi;
  1748.     int r;
  1749.  
  1750.     rmi.eax = in->x.eax;
  1751.     rmi.ebx = in->x.ebx;
  1752.     rmi.ecx = in->x.ecx;
  1753.     rmi.edx = in->x.edx;
  1754.     rmi.edi = in->x.edi;
  1755.     rmi.esi = in->x.esi;
  1756.     rmi.ebp = rmi.reserved = 0L;
  1757.     rmi.es = seg->es;
  1758.     rmi.ds = seg->ds;
  1759.     rmi.fs = seg->fs;
  1760.     rmi.gs = seg->gs;
  1761.     rmi.sp = rmi.ss = rmi.ip_ignored = rmi.cs_ignored = rmi.flags = 0;
  1762.     memset(&local, 0, sizeof(local));
  1763.     memset(&localseg, 0, sizeof(localseg));
  1764.     local.w.ax = 0x0300;
  1765.     local.h.bl = inter_no;
  1766.     local.h.bh = 0;
  1767.     local.w.cx = 0;
  1768.     localseg.es = FP_SEG(&rmi);
  1769.     local.x.edi = FP_OFF(&rmi);
  1770.     r = int386x(0x31, &local, &local, &localseg);
  1771.     out->x.eax = rmi.eax;
  1772.     out->x.ebx = rmi.ebx;
  1773.     out->x.ecx = rmi.ecx;
  1774.     out->x.edx = rmi.edx;
  1775.     out->x.edi = rmi.edi;
  1776.     out->x.esi = rmi.esi;
  1777.     out->x.cflag = rmi.flags & INTR_CF;
  1778.     return r;
  1779. }
  1780.  
  1781. #endif /* WATCOMC_386 */
  1782.  
  1783.  
  1784.  
  1785.  
  1786. #ifdef __WATCOMC__
  1787.  
  1788. /* This papers over a bug in Watcom 10.6's standard library...sigh.
  1789.  * Apparently it applies to both the DOS and Win32 stat()s. */
  1790.  
  1791. int stat_bandaid(const char *path, struct stat *buf)
  1792. {
  1793.     char newname[4];
  1794.  
  1795.     if (!stat(path, buf))
  1796.         return 0;
  1797.     else if (!strcmp(path, ".") || (path[0] && !strcmp(path + 1, ":."))) {
  1798.         strcpy(newname, path);
  1799.         newname[strlen(path) - 1] = '\\';   /* stat(".") fails for root! */
  1800.         return stat(newname, buf);
  1801.     } else
  1802.         return -1;
  1803. }
  1804.  
  1805. #endif /* __WATCOMC__ */
  1806.