home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 9 Archive / 09-Archive.zip / unzip51.zip / vms / vms.c < prev    next >
C/C++ Source or Header  |  1994-01-28  |  63KB  |  2,512 lines

  1. /*---------------------------------------------------------------------------
  2.  
  3.   vms.c (version 2.2-5)                                    Igor Mandrichenko
  4.  
  5.   This file contains routines to extract VMS file attributes from a zipfile
  6.   extra field and create a file with these attributes.  The code was almost
  7.   entirely written by Igor, with a couple of routines by CN.
  8.  
  9.   ---------------------------------------------------------------------------
  10.  
  11.      Copyright (C) 1992-93 Igor Mandrichenko.
  12.      Permission is granted to any individual or institution to use, copy,
  13.      or redistribute this software so long as all of the original files
  14.      are included unmodified and that this copyright notice is retained.
  15.  
  16.   Revision history:
  17.  
  18.      1.x   [moved to History.510 for brevity]
  19.      2.0   Mandrichenko    7-apr-1993
  20.             Implement PKWARE style VMS file attributes
  21.      2.0-1 Mandrichenko    10-apr-1993
  22.             ACL handling code added.
  23.      2.1   Mandrichenko    24-aug-1993
  24.             Get both PKWARE and new INFO-ZIP signatures as equivalent
  25.             Use vmsmunch.h instead of fatdef.h
  26.      2.2   Cave Newt       3-oct-1993
  27.             Merged GRR 5.1e changes with latest Igor version:  open_outfile,
  28.             close_outfile, check_for_newer, UpdateCRC, flush, no ZIPINFO,
  29.             ctype.h, pInfo->textmode, etc.  Also merged new do_wild/mapname/
  30.             checkdir routines from Igor and moved VMSmunch.h into vms.h.
  31.      2.2-1 Mandrichenko    14-dec-1993
  32.             Bug fixes in mapname/checkdir stuff.
  33.             _flush_stream() rewritten to fix some bugs.
  34.      2.2-2 Goathunter      3 Jan 94
  35.             Fixes for Alpha-VMS.
  36.      2.2-3 Cave Newt       11 Jan 94
  37.             Disabled version-check by default; enable with CHECK_VERSIONS.
  38.             Installed Igor's ctrl-Z patch.
  39.      2.2-4 Mandrichenko    18 Jan 94
  40.             Fixed auto-appending of ".zip" and inability to create second
  41.             level of directory structure.
  42.      2.2-5 Cave Newt, Mike Freeman  28 Jan 94
  43.             Changed close_outfile() to return void for compatibility;
  44.             fixed declaration of second parameter to flush() (ulg size);
  45.             changed str[n]icmp() to STR[N]ICMP().
  46.  
  47.   ---------------------------------------------------------------------------*/
  48.  
  49. #ifdef VMS            /*      VMS only !      */
  50.  
  51. #include "unzip.h"
  52. #include "vms.h"        /* now includes VMSmunch.h */
  53.  
  54. #define BUFS512 8192*2        /* Must be a multiple of 512 */
  55.  
  56. #define    BUFSIZ    BUFS512
  57.  
  58. #define    OK(s)    ((s)&1)        /* VMS success or warning status */
  59. #define    STRICMP(s1,s2)    STRNICMP(s1,s2,2147483647)
  60.  
  61. /*
  62. *   Local static storage
  63. */
  64. static struct FAB    fileblk;
  65. static struct XABDAT    dattim;
  66. static struct XABRDT    rdt;
  67. static struct RAB    rab;
  68. static struct NAM    nam;
  69.  
  70. static struct FAB *outfab = 0;
  71. static struct RAB *outrab = 0;
  72. static struct XABFHC *xabfhc = 0;
  73. static struct XABDAT *xabdat = 0;
  74. static struct XABRDT *xabrdt = 0;
  75. static struct XABPRO *xabpro = 0;
  76. static struct XABKEY *xabkey = 0;
  77. static struct XABALL *xaball = 0;
  78. struct XAB *first_xab = 0L, *last_xab = 0L;
  79.  
  80. static char query = 0;
  81. static int  text_output = 0,
  82.         raw_input,
  83.         hostnum;
  84.  
  85. static uch rfm;
  86.  
  87. static uch locbuf[BUFSIZ];
  88. static int loccnt = 0;
  89. static uch *locptr;
  90. static char got_eol = 0;
  91.  
  92. static int  _flush_blocks(),
  93.         _flush_stream(),
  94.         _flush_varlen(),
  95.         _flush_qio(),
  96.         _close_qio(),
  97.         _close_rms(),
  98.         WriteRecord(),
  99.         WriteBuffer(),
  100.         find_eol();
  101.  
  102. static int  (*_flush_routine)(),
  103.         (*_close_routine)();
  104.  
  105. static int get_vms_version();
  106. static int replace();
  107. static uch *extract_block();
  108. static void message();
  109. static void free_up();
  110.  
  111. struct bufdsc
  112. {
  113.     struct bufdsc *next;
  114.     uch *buf;
  115.     int bufcnt;
  116. };
  117.  
  118. static struct bufdsc b1, b2, *curbuf;
  119. static uch buf1[BUFSIZ];
  120.  
  121. int check_format()
  122. {
  123.     int rtype;
  124.     struct FAB fab;
  125.  
  126.     fab = cc$rms_fab;
  127.     fab.fab$l_fna = zipfn;
  128.     fab.fab$b_fns = strlen(zipfn);
  129.  
  130.     sys$open(&fab);
  131.     rtype = fab.fab$b_rfm;
  132.     sys$close(&fab);
  133.  
  134.     if (rtype == FAB$C_VAR || rtype == FAB$C_VFC)
  135.     {
  136.     fprintf(stderr,
  137.         "\n     Error:  zipfile is in variable-length record format.  Please\n\
  138.      run \"bilf l %s\" to convert the zipfile to stream-LF\n\
  139.      record format.  (bilf.c and make_bilf.com are included in the\n\
  140.      VMS UnZip source distribution.)\n\n", zipfn);
  141.     return PK_ERR;
  142.     }
  143.  
  144.     return PK_COOL;
  145. }
  146.  
  147.  
  148.  
  149. #define PRINTABLE_FORMAT(x)    ( (x) == FAB$C_VAR         \
  150.                 || (x) == FAB$C_STMLF        \
  151.                 || (x) == FAB$C_STMCR        \
  152.                 || (x) == FAB$C_STM        )
  153.  
  154. /* VMS extra field types */
  155. #define    VAT_NONE    0
  156. #define    VAT_IZ        1    /* Old INFO-ZIP format */
  157. #define VAT_PK        2    /* PKWARE format */
  158.  
  159. static int  vet;
  160.  
  161. static int  create_default_output(),
  162.         create_rms_output(),
  163.         create_qio_output();
  164.  
  165. /*
  166.  *  open_outfile() assignments:
  167.  *
  168.  *  VMS attributes ?        create_xxx        _flush_xxx
  169.  *  ----------------        ----------        ----------
  170.  *  not found            'default'        text mode ?
  171.  *                        yes -> 'stream'
  172.  *                        no  -> 'block'
  173.  *
  174.  *  yes, in IZ format        'rms'        text mode ?
  175.  *                        yes -> switch(fab.rfm)
  176.  *                        VAR  -> 'varlen' 
  177.  *                        STM* -> 'stream'
  178.  *                            default -> 'block'
  179.  *                        no -> 'block'
  180.  *
  181.  *  yes, in PK format        'qio'        'qio'
  182.  *
  183.  *  "text mode" == pInfo -> text || cflag
  184.  */
  185.  
  186. int open_outfile()
  187. {
  188.     switch(vet = find_vms_attrs())
  189.     {    case VAT_NONE:
  190.     default:
  191.         return  create_default_output();
  192.     case VAT_IZ:
  193.         return  create_rms_output();
  194.     case VAT_PK:
  195.         return  create_qio_output();
  196.     }
  197. }
  198.  
  199. static void init_buf_ring()
  200. {
  201.     locptr = &locbuf[0];
  202.     loccnt = 0;
  203.  
  204.     b1.buf = &locbuf[0];
  205.     b1.bufcnt = 0;
  206.     b1.next = &b2;
  207.     b2.buf = &buf1[0];
  208.     b2.bufcnt = 0;
  209.     b2.next = &b1;
  210.     curbuf = &b1;
  211. }
  212.  
  213.  
  214.  
  215. static int create_default_output()
  216. {
  217.     int ierr, yr, mo, dy, hh, mm, ss;
  218.     char timbuf[24];        /* length = first entry in "stupid" + 1 */
  219.     int attr_given;        /* =1 if VMS attributes are present in
  220.                  *    extra_field */
  221.  
  222.     rab = cc$rms_rab;        /* fill FAB & RAB with default values */
  223.     fileblk = cc$rms_fab;
  224.  
  225.     text_output = pInfo->textmode || cflag;    /* extract the file in text
  226.                              * (variable-length) format */
  227.     hostnum = pInfo -> hostnum;
  228.  
  229.     outfab = &fileblk;
  230.     outfab->fab$l_xab = 0L;
  231.     rfm = FAB$C_STMLF;    /* Default, stream-LF format from VMS
  232.                 *   or UNIX */
  233.     if (text_output)
  234.     {   /* Default format for output text file */
  235.  
  236.     outfab->fab$b_rfm = FAB$C_VAR;    /* variable length records */
  237.     outfab->fab$b_rat = FAB$M_CR;    /* carriage-return carriage ctrl */
  238.     }
  239.     else
  240.     {   /* Default format for output binary file */
  241.  
  242.     outfab->fab$b_rfm = FAB$C_STMLF;    /* stream-LF record format */
  243.     outfab->fab$b_rat = FAB$M_CR;    /* carriage-return carriage ctrl */
  244.     }
  245.  
  246.     if (!cflag)    /* Redirect output */
  247.     outfab->fab$l_fna = filename;
  248.     else
  249.     outfab->fab$l_fna = "sys$output:";
  250.  
  251.     outfab->fab$b_fns = strlen(outfab->fab$l_fna);
  252.  
  253.     {
  254.     static char *month[] =
  255.         {"JAN", "FEB", "MAR", "APR", "MAY", "JUN",
  256.          "JUL", "AUG", "SEP", "OCT", "NOV", "DEC"};
  257.  
  258.     /*  fixed-length string descriptor: */
  259.     struct dsc$descriptor stupid =
  260.         {23, DSC$K_DTYPE_T, DSC$K_CLASS_S, timbuf};
  261.  
  262.     yr = ((lrec.last_mod_file_date >> 9) & 0x7f) + 1980;
  263.     mo = ((lrec.last_mod_file_date >> 5) & 0x0f) - 1;
  264.     dy = (lrec.last_mod_file_date & 0x1f);
  265.     hh = (lrec.last_mod_file_time >> 11) & 0x1f;
  266.     mm = (lrec.last_mod_file_time >> 5) & 0x3f;
  267.     ss = (lrec.last_mod_file_time & 0x1f) * 2;
  268.  
  269.     dattim = cc$rms_xabdat;    /* fill XABs with default values */
  270.     rdt = cc$rms_xabrdt;
  271.     sprintf(timbuf, "%02d-%3s-%04d %02d:%02d:%02d.00", dy, month[mo], yr,
  272.         hh, mm, ss);
  273.     sys$bintim(&stupid, &dattim.xab$q_cdt);
  274.     memcpy(&rdt.xab$q_rdt, &dattim.xab$q_cdt, sizeof(rdt.xab$q_rdt));
  275.  
  276.     dattim.xab$l_nxt = outfab->fab$l_xab;
  277.     outfab->fab$l_xab = &dattim;
  278.     }
  279.  
  280.     outfab->fab$w_ifi = 0;    /* Clear IFI. It may be nonzero after ZIP */
  281.  
  282.     ierr = sys$create(outfab);
  283.     if (ierr == RMS$_FEX)
  284.     ierr = replace();
  285.  
  286.     if (ierr == 0)        /* Canceled */
  287.     return free_up(), 1;
  288.  
  289.     if (ERR(ierr))
  290.     {
  291.     char buf[256];
  292.  
  293.     sprintf(buf, "[ Cannot create output file %s ]\n", filename);
  294.     message(buf, ierr);
  295.     message("", outfab->fab$l_stv);
  296.     free_up();
  297.     return PK_WARN;
  298.     }
  299.  
  300.     if (!text_output)    /* Do not reopen text files and stdout
  301.             *  Just open them in right mode         */
  302.     {
  303.     /*
  304.     *       Reopen file for Block I/O with no XABs.
  305.     */
  306.     if ((ierr = sys$close(outfab)) != RMS$_NORMAL)
  307.     {
  308. #ifdef DEBUG
  309.         message("[ create_output_file: sys$close failed ]\n", ierr);
  310.         message("", outfab->fab$l_stv);
  311. #endif
  312.         fprintf(stderr, "Can't create output file:  %s\n", filename);
  313.         free_up();
  314.         return PK_WARN;
  315.     }
  316.  
  317.  
  318.     outfab->fab$b_fac = FAB$M_BIO | FAB$M_PUT;    /* Get ready for block
  319.                              * output */
  320.     outfab->fab$l_xab = 0L;    /* Unlink all XABs */
  321.  
  322.     if ((ierr = sys$open(outfab)) != RMS$_NORMAL)
  323.     {
  324.         char buf[256];
  325.  
  326.         sprintf(buf, "[ Cannot open output file %s ]\n", filename);
  327.         message(buf, ierr);
  328.         message("", outfab->fab$l_stv);
  329.         free_up();
  330.         return PK_WARN;
  331.     }
  332.     }
  333.  
  334.     outrab = &rab;
  335.     rab.rab$l_fab = outfab;
  336.     if (!text_output)
  337.     {   rab.rab$l_rop |= RAB$M_BIO;
  338.         rab.rab$l_rop |= RAB$M_ASY;
  339.     }
  340.     rab.rab$b_rac = RAB$C_SEQ;
  341.  
  342.     if ((ierr = sys$connect(outrab)) != RMS$_NORMAL)
  343.     {
  344. #ifdef DEBUG
  345.     message("create_output_file: sys$connect failed.\n", ierr);
  346.     message("", outfab->fab$l_stv);
  347. #endif
  348.     fprintf(stderr, "Can't create output file:  %s\n", filename);
  349.     free_up();
  350.     return PK_WARN;
  351.     }
  352.  
  353.     init_buf_ring();
  354.  
  355.     _flush_routine = text_output? got_eol=0,_flush_stream : _flush_blocks;
  356.     _close_routine = _close_rms;
  357.     return PK_COOL;
  358. }
  359.  
  360.  
  361.  
  362. static int create_rms_output()
  363. {
  364.     int ierr, yr, mo, dy, hh, mm, ss;
  365.     char timbuf[24];        /* length = first entry in "stupid" + 1 */
  366.  
  367.     rab = cc$rms_rab;        /* fill FAB & RAB with default values */
  368.     fileblk = cc$rms_fab;
  369.  
  370.     text_output = pInfo->textmode || cflag;    /* extract the file in text
  371.                              * (variable-length) format */
  372.     hostnum = pInfo -> hostnum;
  373.  
  374.     text_output = cflag;    /* Ignore -a when attributes saved */
  375.  
  376.     if (cflag)
  377.     {
  378.     if(!PRINTABLE_FORMAT(rfm=outfab->fab$b_rfm))
  379.     {    printf("[ File %s has illegal record format to put to screen ]\n",
  380.            filename);
  381.         free_up();
  382.         return PK_DISK;
  383.     }
  384.     }
  385.  
  386.     if (!cflag)    /* Redirect output */
  387.     outfab->fab$l_fna = filename;
  388.     else
  389.     outfab->fab$l_fna = "sys$output:";
  390.  
  391.     outfab->fab$b_fns = strlen(outfab->fab$l_fna);
  392.  
  393.     if (!(xabdat && xabrdt))    /* Use date/time info
  394.                  *  from zipfile if
  395.                  *  no attributes given
  396.                  */
  397.     {
  398.     static char *month[] =
  399.         {"JAN", "FEB", "MAR", "APR", "MAY", "JUN",
  400.          "JUL", "AUG", "SEP", "OCT", "NOV", "DEC"};
  401.  
  402.     /*  fixed-length string descriptor: */
  403.     struct dsc$descriptor stupid =
  404.         {23, DSC$K_DTYPE_T, DSC$K_CLASS_S, timbuf};
  405.  
  406.     yr = ((lrec.last_mod_file_date >> 9) & 0x7f) + 1980;
  407.     mo = ((lrec.last_mod_file_date >> 5) & 0x0f) - 1;
  408.     dy = (lrec.last_mod_file_date & 0x1f);
  409.     hh = (lrec.last_mod_file_time >> 11) & 0x1f;
  410.     mm = (lrec.last_mod_file_time >> 5) & 0x3f;
  411.     ss = (lrec.last_mod_file_time & 0x1f) * 2;
  412.  
  413.     dattim = cc$rms_xabdat;    /* fill XABs with default values */
  414.     rdt = cc$rms_xabrdt;
  415.     sprintf(timbuf, "%02d-%3s-%04d %02d:%02d:%02d.00", dy, month[mo], yr,
  416.         hh, mm, ss);
  417.     sys$bintim(&stupid, &dattim.xab$q_cdt);
  418.     memcpy(&rdt.xab$q_rdt, &dattim.xab$q_cdt, sizeof(rdt.xab$q_rdt));
  419.  
  420.     if (xabdat == 0L)
  421.     {
  422.         dattim.xab$l_nxt = outfab->fab$l_xab;
  423.         outfab->fab$l_xab = &dattim;
  424.     }
  425.     }
  426.  
  427.     outfab->fab$w_ifi = 0;    /* Clear IFI. It may be nonzero after ZIP */
  428.  
  429.     ierr = sys$create(outfab);
  430.     if (ierr == RMS$_FEX)
  431.     ierr = replace();
  432.  
  433.     if (ierr == 0)        /* Canceled */
  434.     return free_up(), 1;
  435.  
  436.     if (ERR(ierr))
  437.     {
  438.     char buf[256];
  439.  
  440.     sprintf(buf, "[ Cannot create output file %s ]\n", filename);
  441.     message(buf, ierr);
  442.     message("", outfab->fab$l_stv);
  443.     free_up();
  444.     return PK_WARN;
  445.     }
  446.  
  447.     if (!text_output)    /* Do not reopen text files and stdout
  448.             *  Just open them in right mode         */
  449.     {
  450.     /*
  451.     *       Reopen file for Block I/O with no XABs.
  452.     */
  453.     if ((ierr = sys$close(outfab)) != RMS$_NORMAL)
  454.     {
  455. #ifdef DEBUG
  456.         message("[ create_output_file: sys$close failed ]\n", ierr);
  457.         message("", outfab->fab$l_stv);
  458. #endif
  459.         fprintf(stderr, "Can't create output file:  %s\n", filename);
  460.         free_up();
  461.         return PK_WARN;
  462.     }
  463.  
  464.  
  465.     outfab->fab$b_fac = FAB$M_BIO | FAB$M_PUT;    /* Get ready for block
  466.                              * output */
  467.     outfab->fab$l_xab = 0L;    /* Unlink all XABs */
  468.  
  469.     if ((ierr = sys$open(outfab)) != RMS$_NORMAL)
  470.     {
  471.         char buf[256];
  472.  
  473.         sprintf(buf, "[ Cannot open output file %s ]\n", filename);
  474.         message(buf, ierr);
  475.         message("", outfab->fab$l_stv);
  476.         free_up();
  477.         return PK_WARN;
  478.     }
  479.     }
  480.  
  481.     outrab = &rab;
  482.     rab.rab$l_fab = outfab;
  483.     if (!text_output)
  484.     {   rab.rab$l_rop |= RAB$M_BIO;
  485.         rab.rab$l_rop |= RAB$M_ASY;
  486.     }
  487.     rab.rab$b_rac = RAB$C_SEQ;
  488.  
  489.     if ((ierr = sys$connect(outrab)) != RMS$_NORMAL)
  490.     {
  491. #ifdef DEBUG
  492.     message("create_output_file: sys$connect failed.\n", ierr);
  493.     message("", outfab->fab$l_stv);
  494. #endif
  495.     fprintf(stderr, "Can't create output file:  %s\n", filename);
  496.     free_up();
  497.     return PK_WARN;
  498.     }
  499.  
  500.     init_buf_ring();
  501.  
  502.     if( text_output )
  503.     switch(rfm)
  504.     {
  505.         case FAB$C_VAR:
  506.             _flush_routine = _flush_varlen;
  507.             break;
  508.         case FAB$C_STM:
  509.         case FAB$C_STMCR:
  510.         case FAB$C_STMLF:
  511.             _flush_routine = _flush_stream;
  512.             got_eol = 0;
  513.             break;
  514.         default:
  515.             _flush_routine = _flush_blocks;
  516.             break;
  517.     }
  518.     else
  519.     _flush_routine = _flush_blocks;
  520.     _close_routine = _close_rms;
  521.     return PK_COOL;
  522. }
  523.  
  524.  
  525.  
  526. static    int pka_devchn;
  527. static    int pka_vbn;
  528.  
  529. static struct
  530. {   short   status;
  531.     long    count;
  532.     short   dummy;
  533. } pka_io_sb;
  534.  
  535. static struct
  536. {   short   status;
  537.     short   dummy;
  538.     void    *addr;
  539. } pka_acp_sb;
  540.  
  541. static struct fibdef    pka_fib;
  542. static struct atrdef    pka_atr[VMS_MAX_ATRCNT];
  543. static int        pka_idx;
  544. static ulg        pka_uchar;
  545. static struct fatdef    pka_rattr;
  546.  
  547. static struct dsc$descriptor    pka_fibdsc =
  548. {   sizeof(pka_fib), DSC$K_DTYPE_Z, DSC$K_CLASS_S, &pka_fib    };
  549.  
  550. static struct dsc$descriptor_s    pka_devdsc =
  551. {   0, DSC$K_DTYPE_T, DSC$K_CLASS_S, &nam.nam$t_dvi[1]    };
  552.  
  553. static struct dsc$descriptor_s pka_fnam =
  554. {   0, DSC$K_DTYPE_T, DSC$K_CLASS_S, 0    };
  555.  
  556.  
  557.  
  558. static int create_qio_output()
  559. {   int status;
  560.     static char exp_nam[NAM$C_MAXRSS];
  561.     static char res_nam[NAM$C_MAXRSS];
  562.     int    i;
  563.  
  564.     if( cflag )
  565.     {    fprintf(stderr,"[ Cannot put to screen ]\n");
  566.     return PK_DISK;
  567.     }
  568.  
  569.     fileblk = cc$rms_fab;
  570.     fileblk.fab$l_fna = filename;
  571.     fileblk.fab$b_fns = strlen(filename);
  572.  
  573.     nam = cc$rms_nam;
  574.     fileblk.fab$l_nam = &nam;
  575.     nam.nam$l_esa = &exp_nam;
  576.     nam.nam$b_ess = sizeof(exp_nam);
  577.     nam.nam$l_rsa = &res_nam;
  578.     nam.nam$b_rss = sizeof(res_nam);
  579.  
  580.     if( ERR(status = sys$parse(&fileblk)) )
  581.     {    message("create_output_file: sys$parse failed.\n", status);
  582.     return PK_DISK;
  583.     }       
  584.  
  585.     pka_devdsc.dsc$w_length = (unsigned short)nam.nam$t_dvi[0];
  586.  
  587.     if( ERR(status = sys$assign(&pka_devdsc,&pka_devchn,0,0)) )
  588.     {    message("sys$assign failed.\n",status);
  589.     return PK_DISK;
  590.     }
  591.  
  592.     pka_fnam.dsc$a_pointer = nam.nam$l_name;
  593.     pka_fnam.dsc$w_length  = nam.nam$b_name + nam.nam$b_type;
  594.     if( V_flag /* keep versions */ )
  595.     pka_fnam.dsc$w_length += nam.nam$b_ver;
  596.  
  597.     for (i=0;i<3;i++)
  598.     {    pka_fib.FIB$W_DID[i]=nam.nam$w_did[i];
  599.         pka_fib.FIB$W_FID[i]=0;
  600.     }
  601.  
  602.     pka_fib.FIB$L_ACCTL = FIB$M_WRITE;
  603.     /* Allocate space for the file */
  604.     pka_fib.FIB$W_EXCTL = FIB$M_EXTEND;
  605.     if( pka_uchar & FCH$M_CONTIG )
  606.     pka_fib.FIB$W_EXCTL |= FIB$M_ALCON | FIB$M_FILCON;
  607.     if( pka_uchar & FCH$M_CONTIGB )
  608.     pka_fib.FIB$W_EXCTL |= FIB$M_ALCONB;
  609.  
  610. #define SWAPW(x)    ( (((x)>>16)&0xFFFF) + ((x)<<16) )
  611.  
  612.     pka_fib.fib$l_exsz = SWAPW(pka_rattr.fat$r_hiblk_overlay.fat$l_hiblk);
  613.  
  614.     status = sys$qiow(0, pka_devchn, IO$_CREATE|IO$M_CREATE|IO$M_ACCESS,
  615.     &pka_acp_sb, 0, 0,
  616.     &pka_fibdsc, &pka_fnam, 0, 0, &pka_atr, 0);
  617.  
  618.     if( !ERR(status) )
  619.     status = pka_acp_sb.status;
  620.  
  621.     if( ERR(status) )
  622.     {    message("[ Create file QIO failed.\n",status);
  623.     return PK_DISK;
  624.     sys$dassgn(pka_devchn);
  625.     }
  626.  
  627.     pka_vbn = 1;
  628.     _flush_routine = _flush_qio;
  629.     _close_routine = _close_qio;
  630.     return PK_COOL;
  631. }
  632.  
  633.  
  634.  
  635. static int replace()
  636. {            /*
  637.             *    File exists. Inquire user about further action.
  638.             */
  639.     char answ[10];
  640.     struct NAM nam;
  641.     int ierr;
  642.  
  643.     if (query == 0)
  644.     {
  645.     do
  646.     {
  647.         fprintf(stderr,
  648.             "%s exists:  [o]verwrite, new [v]ersion or [n]o extract?\n\
  649.   (uppercase response [O,V,N] = do same for all files): ",
  650.             filename);
  651.         fflush(stderr);
  652.     } while (fgets(answ, 9, stderr) == NULL && !isalpha(answ[0])
  653.          && tolower(answ[0]) != 'o'
  654.          && tolower(answ[0]) != 'v'
  655.          && tolower(answ[0]) != 'n');
  656.  
  657.     if (isupper(answ[0]))
  658.         query = answ[0] = tolower(answ[0]);
  659.     }
  660.     else
  661.     answ[0] = query;
  662.  
  663.     switch (answ[0])
  664.     {
  665.     case 'n':
  666.         ierr = 0;
  667.         break;
  668.     case 'v':
  669.         nam = cc$rms_nam;
  670.         nam.nam$l_rsa = filename;
  671.         nam.nam$b_rss = FILNAMSIZ - 1;
  672.  
  673.         outfab->fab$l_fop |= FAB$M_MXV;
  674.         outfab->fab$l_nam = &nam;
  675.  
  676.         ierr = sys$create(outfab);
  677.         if (!ERR(ierr))
  678.         {
  679.         outfab->fab$l_nam = 0L;
  680.         filename[outfab->fab$b_fns = nam.nam$b_rsl] = 0;
  681.         }
  682.         break;
  683.     case 'o':
  684.         outfab->fab$l_fop |= FAB$M_SUP;
  685.         ierr = sys$create(outfab);
  686.         break;
  687.     }
  688.     return ierr;
  689. }
  690.  
  691.  
  692.  
  693. #define W(p)    (*(unsigned short*)(p))
  694. #define L(p)    (*(unsigned long*)(p))
  695. #define EQL_L(a,b)      ( L(a) == L(b) )
  696. #define EQL_W(a,b)      ( W(a) == W(b) )
  697.  
  698. /****************************************************************
  699.  * Function find_vms_attrs scans ZIP entry extra field if any   *
  700.  * and looks for VMS attribute records. Returns 0 if either no  *
  701.  * attributes found or no fab given.                            *
  702.  ****************************************************************/
  703. int find_vms_attrs()
  704. {
  705.     uch *scan = extra_field;
  706.     struct  EB_header *hdr;
  707.     int len;
  708.     int    type=VAT_NONE;
  709.  
  710.     outfab = xabfhc = xabdat = xabrdt = xabpro = first_xab = last_xab = 0L;
  711.  
  712.     if (scan == NULL)
  713.     return PK_COOL;
  714.     len = lrec.extra_field_length;
  715.  
  716. #define LINK(p) {    /* Link xaballs and xabkeys into chain */    \
  717.                 if( first_xab == 0L )                   \
  718.                         first_xab = p;                  \
  719.                 if( last_xab != 0L )                    \
  720.                         last_xab -> xab$l_nxt = p;      \
  721.                 last_xab = p;                           \
  722.                 p -> xab$l_nxt = 0;                     \
  723.         }
  724.     /* End of macro LINK */
  725.  
  726.     while (len > 0)
  727.     {
  728.     hdr = (struct EB_header *) scan;
  729.     if (EQL_W(&hdr->tag, IZ_SIGNATURE))
  730.     {
  731.         /*
  732.         *    INFO-ZIP style extra block decoding
  733.         */
  734.         struct IZ_block *blk;
  735.         uch *block_id;
  736.  
  737.         type = VAT_IZ;        
  738.  
  739.         blk = (struct IZ_block *)hdr;
  740.         block_id = &blk->bid;
  741.         if (EQL_L(block_id, FABSIG))
  742.         {
  743.         outfab = (struct FAB *) extract_block(blk, 0,
  744.                               &cc$rms_fab, FABL);
  745.         }
  746.         else if (EQL_L(block_id, XALLSIG))
  747.         {
  748.         xaball = (struct XABALL *) extract_block(blk, 0,
  749.                              &cc$rms_xaball, XALLL);
  750.         LINK(xaball);
  751.         }
  752.         else if (EQL_L(block_id, XKEYSIG))
  753.         {
  754.         xabkey = (struct XABKEY *) extract_block(blk, 0,
  755.                              &cc$rms_xabkey, XKEYL);
  756.         LINK(xabkey);
  757.         }
  758.         else if (EQL_L(block_id, XFHCSIG))
  759.         {
  760.         xabfhc = (struct XABFHC *) extract_block(blk, 0,
  761.                              &cc$rms_xabfhc, XFHCL);
  762.         }
  763.         else if (EQL_L(block_id, XDATSIG))
  764.         {
  765.         xabdat = (struct XABDAT *) extract_block(blk, 0,
  766.                              &cc$rms_xabdat, XDATL);
  767.         }
  768.         else if (EQL_L(block_id, XRDTSIG))
  769.         {
  770.         xabrdt = (struct XABRDT *) extract_block(blk, 0,
  771.                              &cc$rms_xabrdt, XRDTL);
  772.         }
  773.         else if (EQL_L(block_id, XPROSIG))
  774.         {
  775.         xabpro = (struct XABPRO *) extract_block(blk, 0,
  776.                              &cc$rms_xabpro, XPROL);
  777.         }
  778.         else if (EQL_L(block_id, VERSIG))
  779.         {
  780. #ifdef CHECK_VERSIONS
  781.         char verbuf[80];
  782.         int verlen = 0;
  783.         uch *vers;
  784.         char *m;
  785.  
  786.         get_vms_version(verbuf, 80);
  787.         vers = extract_block(blk, &verlen, 0, 0);
  788.         if ((m = strrchr(vers, '-')) != NULL)
  789.             *m = 0;    /* Cut out release number */
  790.         if (strcmp(verbuf, vers) && qflag < 2)
  791.         {
  792.             printf("[ Warning: VMS version mismatch.");
  793.  
  794.             printf("   This version %s --", verbuf);
  795.             strncpy(verbuf, vers, verlen);
  796.             verbuf[verlen] = 0;
  797.             printf(" version made by %s ]\n", verbuf);
  798.         }
  799.         free(vers);
  800. #endif
  801.         }
  802.         else
  803.         fprintf(stderr, "[ Warning: Unknown block signature %s ]\n",
  804.             block_id);
  805.     }
  806.     else if (hdr->tag == PK_SIGNATURE || hdr->tag == IZ_NEW_SIGNATURE)
  807.     {
  808.         /*
  809.         *    PKWARE style extra block decoding
  810.         */
  811.         struct  PK_header    *blk;
  812.         register byte   *scn;
  813.         register int    len;
  814.  
  815.         type = VAT_PK;        
  816.  
  817.         blk = (struct PK_header *)hdr;
  818.         len = blk -> size;
  819.         scn = (byte *)(&blk->data);
  820.         pka_idx = 0;
  821.         
  822.         while(len > PK_FLDHDR_SIZE)
  823.         {    register struct  PK_field    *fld;
  824.         int    skip=0;
  825.  
  826.         fld = (struct PK_field *)scn;
  827.         switch(fld->tag)
  828.         {   case ATR$C_UCHAR:
  829.             pka_uchar = L(&fld->value);
  830.             break;
  831.             case ATR$C_RECATTR:
  832.             pka_rattr = *(struct fatdef *)(&fld->value);
  833.             break;
  834.             case ATR$C_UIC:
  835.             case ATR$C_ADDACLENT:
  836.             skip = !secinf;
  837.             break;
  838.         }
  839.  
  840.         if( !skip )
  841.         {   pka_atr[pka_idx].atr$w_size = fld->size;
  842.             pka_atr[pka_idx].atr$w_type = fld->tag;
  843.             pka_atr[pka_idx].atr$l_addr = &fld->value;
  844.             ++pka_idx;
  845.         }
  846.         len -= fld->size + PK_FLDHDR_SIZE;
  847.         scn += fld->size + PK_FLDHDR_SIZE;
  848.         }
  849.         pka_atr[pka_idx].atr$w_size = 0;    /* End of list */
  850.         pka_atr[pka_idx].atr$w_type = 0;
  851.         pka_atr[pka_idx].atr$l_addr = 0L;
  852.     }
  853.     len -= hdr->size + 4;
  854.     scan += hdr->size + 4;
  855.     }
  856.  
  857.  
  858.     if( type == VAT_IZ )
  859.     {    if (outfab != 0)
  860.     {    /* Do not link XABPRO,XABRDT now. Leave them for sys$close() */
  861.  
  862.         outfab->fab$l_xab = 0L;
  863.         if (xabfhc != 0L)
  864.         {
  865.         xabfhc->xab$l_nxt = outfab->fab$l_xab;
  866.         outfab->fab$l_xab = xabfhc;
  867.         }
  868.         if (xabdat != 0L)
  869.         {
  870.         xabdat->xab$l_nxt = outfab->fab$l_xab;
  871.         outfab->fab$l_xab = xabdat;
  872.         }
  873.         if (first_xab != 0L)    /* Link xaball,xabkey subchain */
  874.         {
  875.         last_xab->xab$l_nxt = outfab->fab$l_xab;
  876.         outfab->fab$l_xab = first_xab;
  877.         }
  878.     }
  879.         else
  880.         type = VAT_NONE;
  881.     }
  882.     return type;
  883. }
  884.  
  885.  
  886.  
  887. static void free_up()
  888. {                /*
  889.                 *    Free up all allocated xabs
  890.                 */
  891.     if (xabdat != 0L) free(xabdat);
  892.     if (xabpro != 0L) free(xabpro);
  893.     if (xabrdt != 0L) free(xabrdt);
  894.     if (xabfhc != 0L) free(xabfhc);
  895.     while (first_xab != 0L)
  896.     {
  897.     struct XAB *x;
  898.  
  899.     x = first_xab->xab$l_nxt;
  900.     free(first_xab);
  901.     first_xab = x;
  902.     }
  903.     if (outfab != 0L && outfab != &fileblk)
  904.     free(outfab);
  905. }
  906.  
  907.  
  908.  
  909. #ifdef CHECK_VERSIONS
  910.  
  911. static int get_vms_version(verbuf, len)
  912.     char *verbuf;
  913.     int len;
  914. {
  915.     int i = SYI$_VERSION;
  916.     int verlen = 0;
  917.     struct dsc$descriptor version;
  918.     char *m;
  919.  
  920.     version.dsc$a_pointer = verbuf;
  921.     version.dsc$w_length = len - 1;
  922.     version.dsc$b_dtype = DSC$K_DTYPE_B;
  923.     version.dsc$b_class = DSC$K_CLASS_S;
  924.  
  925.     if (ERR(lib$getsyi(&i, 0, &version, &verlen, 0, 0)) || verlen == 0)
  926.     return 0;
  927.  
  928.     /* Cut out trailing spaces "V5.4-3   " -> "V5.4-3" */
  929.     for (m = verbuf + verlen, i = verlen - 1; i > 0 && verbuf[i] == ' '; --i)
  930.     --m;
  931.     *m = 0;
  932.  
  933.     /* Cut out release number "V5.4-3" -> "V5.4" */
  934.     if ((m = strrchr(verbuf, '-')) != NULL)
  935.     *m = 0;
  936.     return strlen(verbuf) + 1;    /* Transmit ending 0 too */
  937. }
  938.  
  939. #endif /* CHECK_VERSIONS */
  940.  
  941.  
  942.  
  943. /*
  944.  * Extracts block from p. If resulting length is less then needed, fill
  945.  * extra space with corresponding bytes from 'init'.
  946.  * Currently understands 3 formats of block compression:
  947.  * - Simple storing
  948.  * - Compression of zero bytes to zero bits
  949.  * - Deflation (see memextract() in extract.c)
  950.  */
  951. static uch *extract_block(p, retlen, init, needlen)
  952.     struct IZ_block *p;
  953.     int *retlen;
  954.     uch *init;
  955.     int needlen;
  956. {
  957.     uch *block;        /* Pointer to block allocated */
  958.     int cmptype;
  959.     int usiz, csiz, max;
  960.  
  961.     cmptype = p->flags & BC_MASK;
  962.     csiz = p->size - EXTBSL - RESL;
  963.     usiz = (cmptype == BC_STORED ? csiz : p->length);
  964.  
  965.     if (needlen == 0)
  966.     needlen = usiz;
  967.  
  968.     if (retlen)
  969.     *retlen = usiz;
  970.  
  971. #ifndef MAX
  972. #define MAX(a,b)    ( (a) > (b) ? (a) : (b) )
  973. #endif
  974.  
  975.     if ((block = (uch *) malloc(MAX(needlen, usiz))) == NULL)
  976.     return NULL;
  977.  
  978.     if (init && (usiz < needlen))
  979.     memcpy(block, init, needlen);
  980.  
  981.     switch (cmptype)
  982.     {
  983.     case BC_STORED:    /* The simplest case */
  984.         memcpy(block, &(p->body[0]), usiz);
  985.         break;
  986.     case BC_00:
  987.         decompress_bits(block, usiz, &(p->body[0]));
  988.         break;
  989.     case BC_DEFL:
  990.         memextract(block, usiz, &(p->body[0]), csiz);
  991.         break;
  992.     default:
  993.         free(block);
  994.         block = NULL;
  995.     }
  996.     return block;
  997. }
  998.  
  999.  
  1000.  
  1001. /*
  1002.  *  Simple uncompression routine. The compression uses bit stream.
  1003.  *  Compression scheme:
  1004.  *
  1005.  *  if(byte!=0)
  1006.  *      putbit(1),putbyte(byte)
  1007.  *  else
  1008.  *      putbit(0)
  1009.  */
  1010. static void decompress_bits(outptr, needlen, bitptr)
  1011.     uch *bitptr;    /* Pointer into compressed data */
  1012.     uch *outptr;    /* Pointer into output block */
  1013.     int needlen;    /* Size of uncompressed block */
  1014. {
  1015.     ulg bitbuf = 0;
  1016.     int bitcnt = 0;
  1017.  
  1018. #define _FILL   if(bitcnt+8 <= 32)                      \
  1019.                 {       bitbuf |= (*bitptr++) << bitcnt;\
  1020.                         bitcnt += 8;                    \
  1021.                 }
  1022.  
  1023.     while (needlen--)
  1024.     {
  1025.     if (bitcnt <= 0)
  1026.         _FILL;
  1027.  
  1028.     if (bitbuf & 1)
  1029.     {
  1030.         bitbuf >>= 1;
  1031.         if ((bitcnt -= 1) < 8)
  1032.         _FILL;
  1033.         *outptr++ = (uch) bitbuf;
  1034.         bitcnt -= 8;
  1035.         bitbuf >>= 8;
  1036.     }
  1037.     else
  1038.     {
  1039.         *outptr++ = 0;
  1040.         bitcnt -= 1;
  1041.         bitbuf >>= 1;
  1042.     }
  1043.     }
  1044. }
  1045.  
  1046.  
  1047.  
  1048. static void UpdateCRC(s, len)
  1049.     register uch *s;
  1050.     register int len;
  1051. {
  1052.     register ulg crcval = crc32val;
  1053.  
  1054.     /* update running CRC calculation with contents of a buffer */
  1055.     while (len--)
  1056.         crcval = crc_32_tab[((uch)crcval ^ (*s++)) & 0xff] ^ (crcval >> 8);
  1057.     crc32val = crcval;
  1058. }
  1059.  
  1060.  
  1061.  
  1062. /* flush contents of output buffer */
  1063. int flush(rawbuf, size, unshrink)    /* return PK-type error code */
  1064.     uch *rawbuf;
  1065.     ulg size;
  1066.     int unshrink;
  1067. {
  1068.     UpdateCRC(rawbuf, size);
  1069.     if (tflag)
  1070.     return PK_COOL;    /* Do not output. Update CRC only */
  1071.     else
  1072.     return (*_flush_routine)(rawbuf, size, 0);
  1073. }
  1074.  
  1075.  
  1076.  
  1077. static int _flush_blocks(rawbuf, size, final_flag)   /* Asynchronous version */
  1078.     uch *rawbuf;
  1079.     unsigned size;
  1080.     int final_flag;   /* 1 if this is the final flushout */
  1081. {
  1082.     int round;
  1083.     int rest;
  1084.     int off = 0;
  1085.     int status;
  1086.  
  1087.     while (size > 0)
  1088.     {
  1089.     if (curbuf->bufcnt < BUFSIZ)
  1090.     {
  1091.         int ncpy;
  1092.  
  1093.         ncpy = size > (BUFSIZ - curbuf->bufcnt) ?
  1094.                 BUFSIZ - curbuf->bufcnt :
  1095.                 size;
  1096.         memcpy(curbuf->buf + curbuf->bufcnt, rawbuf + off, ncpy);
  1097.         size -= ncpy;
  1098.         curbuf->bufcnt += ncpy;
  1099.         off += ncpy;
  1100.     }
  1101.     if (curbuf->bufcnt == BUFSIZ)
  1102.     {
  1103.         status = WriteBuffer(curbuf->buf, curbuf->bufcnt);
  1104.         if (status)
  1105.         return status;
  1106.         curbuf = curbuf->next;
  1107.         curbuf->bufcnt = 0;
  1108.     }
  1109.     }
  1110.  
  1111.     return (final_flag && (curbuf->bufcnt > 0)) ?
  1112.     WriteBuffer(curbuf->buf, curbuf->bufcnt) :
  1113.     PK_COOL;
  1114. }
  1115.  
  1116.  
  1117.  
  1118. static int _flush_qio(rawbuf, size, final_flag)
  1119.     uch *rawbuf;
  1120.     unsigned size;
  1121.     int final_flag;   /* 1 if this is the final flushout -- currently ignored */
  1122. {
  1123.     int status;
  1124.     uch    *out_ptr=rawbuf;
  1125.  
  1126.     if( final_flag )
  1127.     {    
  1128.     if( loccnt > 0 )
  1129.     {   status = sys$qiow(0, pka_devchn, IO$_WRITEVBLK, 
  1130.         &pka_io_sb, 0, 0,
  1131.         locbuf, ((loccnt+1)/2)*2,   /* Round to event byte count */
  1132.         pka_vbn,
  1133.         0, 0, 0);
  1134.         if(!ERR(status))        
  1135.         status = pka_io_sb.status;
  1136.         if(ERR(status))
  1137.         {   message("[ Write QIO failed ]\n",status);
  1138.         return PK_DISK;
  1139.         }
  1140.     }
  1141.     return PK_COOL;    
  1142.     }
  1143.  
  1144.     if( loccnt > 0 )
  1145.     {    /*
  1146.     *   Fill local buffer upto 512 bytes then put it out
  1147.     */
  1148.     int ncpy;
  1149.  
  1150.     ncpy = 512-loccnt;
  1151.     if( ncpy > size )
  1152.         ncpy = size;
  1153.  
  1154.     memcpy(locptr,rawbuf,ncpy);
  1155.     locptr += ncpy;
  1156.     loccnt += ncpy;
  1157.     size -= ncpy;
  1158.     out_ptr += ncpy;
  1159.     if( loccnt == 512 )
  1160.     {     
  1161.         status = sys$qiow(0, pka_devchn, IO$_WRITEVBLK, 
  1162.         &pka_io_sb, 0, 0,
  1163.         locbuf, loccnt, pka_vbn,
  1164.         0, 0, 0);
  1165.         if(!ERR(status))        
  1166.         status = pka_io_sb.status;
  1167.         if(ERR(status))
  1168.         {   message("[ Write QIO failed ]\n",status);
  1169.         return PK_DISK;
  1170.         }
  1171.  
  1172.         pka_vbn++;
  1173.         loccnt = 0;
  1174.         locptr = locbuf;
  1175.     }
  1176.     }
  1177.  
  1178.     if( size >= 512 )
  1179.     {    int nblk,put_cnt;
  1180.  
  1181.     /*
  1182.     *   Put rest of buffer as a single VB
  1183.     */
  1184.     put_cnt = (nblk = size>>9)<<9;
  1185.     status = sys$qiow(0, pka_devchn, IO$_WRITEVBLK, 
  1186.         &pka_io_sb, 0, 0,
  1187.         out_ptr, put_cnt, pka_vbn,
  1188.         0, 0, 0);
  1189.     if(!ERR(status))        
  1190.         status = pka_io_sb.status;
  1191.     if(ERR(status))
  1192.     {   message("[ Write QIO failed ]\n",status);
  1193.         return PK_DISK;
  1194.     }
  1195.  
  1196.     pka_vbn += nblk;
  1197.     out_ptr += put_cnt;
  1198.     size -= put_cnt;
  1199.     }
  1200.  
  1201.     if( size > 0 )
  1202.     {    memcpy(locptr,out_ptr,size);
  1203.     loccnt += size;
  1204.     locptr += size;
  1205.     }
  1206.  
  1207.  
  1208.     return PK_COOL;
  1209. }
  1210.  
  1211.  
  1212.  
  1213. static int _flush_varlen(rawbuf, size, final_flag)
  1214.     uch *rawbuf;
  1215.     unsigned size;
  1216.     int final_flag;
  1217. {
  1218.     ush nneed;
  1219.     ush reclen;
  1220.     uch *inptr=rawbuf;
  1221.  
  1222.     /*
  1223.     *    Flush local buffer
  1224.     */
  1225.  
  1226.     if( loccnt > 0 )
  1227.     {    reclen = *(ush*)locbuf;
  1228.         if( (nneed = reclen + 2 - loccnt) > 0 )
  1229.         {    if( nneed > size )
  1230.             {    if( size+loccnt > BUFSIZ )
  1231.                 {    fprintf(stderr,"[ Record too long (%d bytes) ]\n",reclen );
  1232.                     return PK_DISK;
  1233.                 }
  1234.                 memcpy(locbuf+loccnt,rawbuf,size);
  1235.                 loccnt += size;
  1236.                 size = 0;
  1237.             }
  1238.             else
  1239.             {    memcpy(locbuf+loccnt,rawbuf,nneed);
  1240.                 loccnt += nneed;
  1241.                 size -= nneed;
  1242.                 inptr += nneed;
  1243.                 if( reclen & 1 )
  1244.                 {    size--;
  1245.                     inptr++;
  1246.                 }
  1247.                 if( WriteRecord(locbuf+2,reclen) )
  1248.                     return PK_DISK;
  1249.                 loccnt = 0;
  1250.             }
  1251.         }
  1252.         else
  1253.         {    if(WriteRecord(locbuf+2,reclen))
  1254.                 return PK_DISK;
  1255.             loccnt -= reclen+2;
  1256.         }
  1257.     }
  1258.     /*
  1259.     *    Flush incoming records
  1260.     */
  1261.     while(size > 0)
  1262.     {    reclen = *(ush*)inptr;
  1263.         if( reclen+2 <= size )
  1264.         {    if(WriteRecord(inptr+2,reclen))
  1265.                 return PK_DISK;
  1266.             size -= 2+reclen;
  1267.             inptr += 2+reclen;
  1268.             if( reclen & 1)
  1269.             {    --size;
  1270.                 ++inptr;
  1271.             }
  1272.         }
  1273.         else
  1274.         {    memcpy(locbuf,inptr,size);
  1275.             loccnt = size;
  1276.             size = 0;
  1277.         }
  1278.                     
  1279.     }
  1280.     /*
  1281.     *    Final flush rest of local buffer
  1282.     */
  1283.     if( final_flag && loccnt > 0 )
  1284.     {    fprintf(stderr,
  1285.             "[ Warning, incomplete record of length %d ]\n",
  1286.             *(ush*)locbuf);
  1287.         if( WriteRecord(locbuf+2,loccnt-2) )
  1288.             return PK_DISK;
  1289.     }
  1290.     return PK_COOL;
  1291. }
  1292.  
  1293.  
  1294.  
  1295. /*
  1296. *   Routine _flush_stream breaks decompressed stream into records
  1297. *   depending on format of the stream (fab->rfm, pInfo->textmode, etc.)
  1298. *   and puts out these records. It also handles CR LF sequences.
  1299. *   Should be used when extracting *text* files.
  1300. */
  1301.  
  1302. #define VT    0x0B
  1303. #define FF    0x0C
  1304.  
  1305. /* The file is from MSDOS/OS2/NT -> handle CRLF as record end, throw out ^Z */
  1306.  
  1307. /* GRR NOTES:  cannot depend on hostnum!  May have "flip'd" file or re-zipped
  1308.  * a Unix file, etc. */
  1309.  
  1310. #ifdef    USE_ORIG_DOS
  1311. # define ORG_DOS    (hostnum==FS_FAT_ || hostnum==FS_HPFS_ || hostnum==FS_NTFS_)
  1312. #else
  1313. # define ORG_DOS    1
  1314. #endif
  1315.  
  1316. /* Record delimiters */
  1317. #ifdef    undef
  1318. #define RECORD_END(c,f)                            \
  1319. (        ( ORG_DOS || pInfo->textmode ) && c==CTRLZ            \
  1320.     || ( f == FAB$C_STMLF && c==LF )                \
  1321.     || ( f == FAB$C_STMCR || ORG_DOS || pInfo->textmode ) && c==CR    \
  1322.     || ( f == FAB$C_STM && (c==CR || c==LF || c==FF || c==VT) )    \
  1323. )
  1324. #else
  1325. #   define  RECORD_END(c,f)   ((c) == LF || (c) == (CR))
  1326. #endif
  1327.  
  1328. static int  find_eol(p,n,l)
  1329. /*
  1330.  *  Find first CR,LF,CR-LF or LF-CR in string 'p' of length 'n'.
  1331.  *  Return offset of the sequence found or 'n' if not found.
  1332.  *  If found, return in '*l' length of the sequence (1 or 2) or
  1333.  *  zero if sequence end not seen, i.e. CR or LF is last char
  1334.  *  in the buffer.
  1335.  */
  1336. char    *p;
  1337. int    n;
  1338. int    *l;
  1339. {   int    off = n;
  1340.     char    *q;
  1341.  
  1342.     *l = 0;
  1343.  
  1344.     for(q=p ; n > 0 ; --n,++q)
  1345.     if( RECORD_END(*q,rfm) )
  1346.     {   off = q-p;
  1347.         break;
  1348.     }
  1349.  
  1350.     if( n > 1 )
  1351.     {
  1352.     *l = 1;
  1353.     if( ( q[0] == CR && q[1] == LF ) || ( q[0] == LF && q[1] == CR ) )
  1354.         *l = 2;
  1355.     }
  1356.  
  1357.     return off;
  1358. }
  1359.  
  1360. /* Record delimiters that must be put out */
  1361. #define PRINT_SPEC(c)    ( (c)==FF || (c)==VT )
  1362.  
  1363.  
  1364.  
  1365. static int _flush_stream(rawbuf, size, final_flag)
  1366.     uch *rawbuf;
  1367.     unsigned size;
  1368.     int final_flag; /* 1 if this is the final flushout */
  1369. {
  1370.     int rest;
  1371.     int end = 0, start = 0;
  1372.     int off = 0;
  1373.                  
  1374.     if (size == 0 && loccnt == 0)
  1375.     return PK_COOL;        /* Nothing to do ... */
  1376.  
  1377.     if( final_flag )
  1378.     {    int recsize;
  1379.  
  1380.     /*
  1381.      * This is flush only call. size must be zero now.
  1382.      * Just eject everything we have in locbuf.
  1383.      */
  1384.     recsize = loccnt - (got_eol ? 1:0);
  1385.     /*
  1386.      *  If the last char of file was ^Z ( end-of-file in MSDOS ),
  1387.      *  we will see it now.
  1388.      */
  1389.     if( recsize==1 && locbuf[0] == CTRLZ )
  1390.         return PK_COOL;
  1391.  
  1392.     return WriteRecord(locbuf, recsize) ? PK_DISK : PK_COOL;
  1393.     }
  1394.  
  1395.  
  1396.     if ( loccnt > 0 )
  1397.     {    /* Find end of record partialy saved in locbuf */
  1398.  
  1399.     int recsize;
  1400.     int complete=0;
  1401.  
  1402.     if( got_eol )
  1403.     {   recsize = loccnt - 1;
  1404.         complete = 1;
  1405.  
  1406.         if( (got_eol == CR && rawbuf[0] == LF) || (got_eol == LF && rawbuf[0] == CR) )
  1407.         end = 1;
  1408.  
  1409.         got_eol = 0;
  1410.     }
  1411.     else
  1412.     {   int    eol_len;
  1413.         int    eol_off;
  1414.  
  1415.         eol_off = find_eol(rawbuf,size,&eol_len);
  1416.  
  1417.         if( loccnt+eol_off > BUFSIZ )
  1418.         {    /*
  1419.          *  No room in locbuf. Dump it and clear
  1420.          */
  1421.         recsize = loccnt;
  1422.         start = 0;
  1423.         fprintf(stderr, "[ Warning: Record too long (%d) ]\n",
  1424.             loccnt+eol_off);
  1425.         complete = 1;
  1426.         end = 0;
  1427.         }
  1428.         else
  1429.         {    if( eol_off >= size )
  1430.         {   end = size;
  1431.             complete = 0;
  1432.         }
  1433.         else if( eol_len == 0 )
  1434.         {   got_eol = rawbuf[eol_off];
  1435.             end = size;
  1436.             complete = 0;
  1437.         }
  1438.         else
  1439.         {   memcpy(locptr, rawbuf, eol_off);
  1440.             recsize = loccnt + eol_off;
  1441.             locptr += eol_off;
  1442.             loccnt += eol_off;
  1443.             end = eol_off + eol_len;
  1444.             complete = 1;
  1445.         }
  1446.         }
  1447.     }
  1448.  
  1449.     if( complete )
  1450.     {   if (WriteRecord(locbuf, recsize))
  1451.         return PK_DISK;
  1452.         loccnt = 0;
  1453.         locptr = locbuf;
  1454.     }
  1455.     }                /* end if( loccnt ) */
  1456.  
  1457.     for(start = end; start < size && end < size; )
  1458.     {    int eol_off,eol_len;
  1459.  
  1460.     got_eol = 0;
  1461.  
  1462. #ifdef undef
  1463.         if (cflag)
  1464.         /* skip CR's at the beginning of record */
  1465.             while (start < size && rawbuf[start] == CR)
  1466.                 ++start;
  1467. #endif
  1468.  
  1469.     if( start >= size )
  1470.         continue;
  1471.  
  1472.     /* Find record end */
  1473.     end = start+(eol_off = find_eol(rawbuf+start, size-start, &eol_len));
  1474.  
  1475.         if( end >= size )
  1476.         continue;
  1477.  
  1478.     if( eol_len > 0 )
  1479.     {   if( WriteRecord(rawbuf+start, end-start) )
  1480.         return PK_DISK;
  1481.         start = end + eol_len;
  1482.     }
  1483.     else
  1484.     {   got_eol = rawbuf[end];
  1485.         end = size;
  1486.         continue;
  1487.     }
  1488.     }
  1489.  
  1490.     rest = size - start;
  1491.  
  1492.     if (rest > 0)
  1493.     {    if( rest > BUFSIZ )
  1494.     {   int    recsize;
  1495.  
  1496.         recsize = rest - (got_eol ? 1:0 );
  1497.         fprintf(stderr, "[ Warning: Record too long (%d) ]\n", recsize);
  1498.         got_eol = 0;
  1499.         return WriteRecord(rawbuf+start,recsize) ? PK_DISK : PK_COOL;
  1500.     }
  1501.     else
  1502.     {   memcpy(locptr, rawbuf + start, rest);
  1503.         locptr += rest;
  1504.         loccnt += rest;
  1505.     }
  1506.     }
  1507.     return PK_COOL;
  1508. }
  1509.  
  1510.  
  1511.  
  1512. static int WriteBuffer(buf, len)
  1513.     unsigned char *buf;
  1514.     int len;
  1515. {
  1516.     int status;
  1517.  
  1518.     status = sys$wait(outrab);
  1519.     if (ERR(status))
  1520.     {
  1521.     message("[ WriteBuffer failed ]\n", status);
  1522.     message("", outrab->rab$l_stv);
  1523.     }
  1524.     outrab->rab$w_rsz = len;
  1525.     outrab->rab$l_rbf = buf;
  1526.  
  1527.     if (ERR(status = sys$write(outrab)))
  1528.     {
  1529.     message("[ WriteBuffer failed ]\n", status);
  1530.     message("", outrab->rab$l_stv);
  1531.     return PK_DISK;
  1532.     }
  1533.     return PK_COOL;
  1534. }
  1535.  
  1536.  
  1537.  
  1538. static int WriteRecord(rec, len)
  1539.     unsigned char *rec;
  1540.     int len;
  1541. {
  1542.     int status;
  1543.  
  1544.     if (ERR(status = sys$wait(outrab)))
  1545.     {
  1546.     message("[ WriteRecord failed ]\n", status);
  1547.     message("", outrab->rab$l_stv);
  1548.     }
  1549.     outrab->rab$w_rsz = len;
  1550.     outrab->rab$l_rbf = rec;
  1551.  
  1552.     if (ERR(status = sys$put(outrab)))
  1553.     {
  1554.     message("[ WriteRecord failed ]\n", status);
  1555.     message("", outrab->rab$l_stv);
  1556.     return PK_DISK;
  1557.     }
  1558.     return PK_COOL;
  1559. }
  1560.  
  1561.  
  1562.  
  1563. void close_outfile()
  1564. {
  1565.     int status;
  1566.  
  1567.     status = (*_flush_routine)(0, 0, 1);     
  1568.     if (status)
  1569.         return /* PK_DISK */;
  1570.     /* return */ (*_close_routine)();
  1571. }
  1572.  
  1573.  
  1574.  
  1575. static int _close_rms()
  1576. {
  1577.     int status;
  1578.     struct XABPRO pro;
  1579.  
  1580.     /* Link XABRDT,XABDAT and optionaly XABPRO */
  1581.     if (xabrdt != 0L)
  1582.     {
  1583.     xabrdt->xab$l_nxt = 0L;
  1584.     outfab->fab$l_xab = xabrdt;
  1585.     }
  1586.     else
  1587.     {
  1588.     rdt.xab$l_nxt = 0L;
  1589.     outfab->fab$l_xab = &rdt;
  1590.     }
  1591.     if (xabdat != 0L)
  1592.     {
  1593.     xabdat->xab$l_nxt = outfab->fab$l_xab;
  1594.     outfab->fab$l_xab = xabdat;
  1595.     }
  1596.  
  1597.     if( xabpro != 0L )
  1598.     {
  1599.     if( !secinf )
  1600.         xabpro->xab$l_uic = 0;    /* Use default (user's) uic */
  1601.     xabpro->xab$l_nxt = outfab->fab$l_xab;
  1602.     outfab->fab$l_xab = xabpro;
  1603.     }
  1604.     else
  1605.     {    pro = cc$rms_xabpro;
  1606.     pro.xab$w_pro = pInfo->file_attr;
  1607.     pro.xab$l_nxt = outfab->fab$l_xab;
  1608.     outfab->fab$l_xab = &pro;
  1609.     }
  1610.  
  1611.     sys$wait(outrab);
  1612.  
  1613.     status = sys$close(outfab);
  1614. #ifdef DEBUG
  1615.     if (ERR(status))
  1616.     {
  1617.     message("\r[ Warning: cannot set owner/protection/time attributes ]\n",
  1618.       status);
  1619.     message("", outfab->fab$l_stv);
  1620.     }
  1621. #endif
  1622.     free_up();
  1623.     return PK_COOL;
  1624. }
  1625.  
  1626.  
  1627.  
  1628. static int _close_qio()
  1629. {   int status;
  1630.  
  1631.     pka_fib.FIB$L_ACCTL =
  1632.     FIB$M_WRITE | FIB$M_NOTRUNC ;
  1633.     pka_fib.FIB$W_EXCTL = 0;
  1634.  
  1635.     pka_fib.FIB$W_FID[0] =
  1636.     pka_fib.FIB$W_FID[1] =
  1637.     pka_fib.FIB$W_FID[2] =
  1638.     pka_fib.FIB$W_DID[0] =
  1639.     pka_fib.FIB$W_DID[1] =
  1640.     pka_fib.FIB$W_DID[2] = 0;
  1641.  
  1642.     status = sys$qiow(0, pka_devchn, IO$_DEACCESS, &pka_acp_sb,
  1643.         0, 0,
  1644.         &pka_fibdsc, 0, 0, 0,
  1645.         &pka_atr, 0);
  1646.  
  1647.     sys$dassgn(pka_devchn);
  1648.     if( !ERR(status) )
  1649.     status = pka_acp_sb.status;
  1650.     if( ERR(status) )
  1651.     {    message("[ Deaccess QIO failed ]\n",status);
  1652.     return PK_DISK;
  1653.     }
  1654.     return PK_COOL;
  1655. }
  1656.  
  1657.  
  1658.  
  1659. #ifdef DEBUG
  1660. dump_rms_block(p)
  1661.     unsigned char *p;
  1662. {
  1663.     unsigned char bid, len;
  1664.     int err;
  1665.     char *type;
  1666.     char buf[132];
  1667.     int i;
  1668.  
  1669.     err = 0;
  1670.     bid = p[0];
  1671.     len = p[1];
  1672.     switch (bid)
  1673.     {
  1674.     case FAB$C_BID:
  1675.         type = "FAB";
  1676.         break;
  1677.     case XAB$C_ALL:
  1678.         type = "xabALL";
  1679.         break;
  1680.     case XAB$C_KEY:
  1681.         type = "xabKEY";
  1682.         break;
  1683.     case XAB$C_DAT:
  1684.         type = "xabDAT";
  1685.         break;
  1686.     case XAB$C_RDT:
  1687.         type = "xabRDT";
  1688.         break;
  1689.     case XAB$C_FHC:
  1690.         type = "xabFHC";
  1691.         break;
  1692.     case XAB$C_PRO:
  1693.         type = "xabPRO";
  1694.         break;
  1695.     default:
  1696.         type = "Unknown";
  1697.         err = 1;
  1698.         break;
  1699.     }
  1700.     printf("Block @%08X of type %s (%d).", p, type, bid);
  1701.     if (err)
  1702.     {
  1703.     printf("\n");
  1704.     return;
  1705.     }
  1706.     printf(" Size = %d\n", len);
  1707.     printf(" Offset - Hex - Dec\n");
  1708.     for (i = 0; i < len; i += 8)
  1709.     {
  1710.     int j;
  1711.  
  1712.     printf("%3d - ", i);
  1713.     for (j = 0; j < 8; j++)
  1714.         if (i + j < len)
  1715.         printf("%02X ", p[i + j]);
  1716.         else
  1717.         printf("   ");
  1718.     printf(" - ");
  1719.     for (j = 0; j < 8; j++)
  1720.         if (i + j < len)
  1721.         printf("%03d ", p[i + j]);
  1722.         else
  1723.         printf("    ");
  1724.     printf("\n");
  1725.     }
  1726. }
  1727.  
  1728. #endif                /* DEBUG */
  1729.  
  1730.  
  1731.  
  1732. static void message(string, status)
  1733.     int status;
  1734. char *string;
  1735. {
  1736.     char msgbuf[256];
  1737.  
  1738.     $DESCRIPTOR(msgd, msgbuf);
  1739.     int msglen = 0;
  1740.  
  1741.     if (ERR(lib$sys_getmsg(&status, &msglen, &msgd, 0, 0)))
  1742.     fprintf(stderr, "%s[ VMS status = %d ]\n", string, status);
  1743.     else
  1744.     {
  1745.     msgbuf[msglen] = 0;
  1746.     fprintf(stderr, "%s[ %s ]\n", string, msgbuf);
  1747.     }
  1748. }
  1749.  
  1750.  
  1751.  
  1752. #ifndef SFX
  1753.  
  1754. char *do_wild( wld )
  1755.     char *wld;
  1756. {
  1757.     int    status;
  1758.  
  1759.     static    char    filename[256];
  1760.     static    char    efn[256];
  1761.     static    char    last_wild[256];
  1762.     static    struct    FAB fab;
  1763.     static    struct    NAM nam;
  1764.     static    int    first_call=1;
  1765.     static    char    deflt[] = "*.zip";
  1766.     static    int    use_default = 1;
  1767.  
  1768.     if( first_call || strcmp(wld, last_wild) )
  1769.     {    /* (Re)Initialize everything */
  1770.  
  1771.     strcpy( last_wild, wld );
  1772.     first_call = 1;            /* New wild spec */
  1773.  
  1774.     fab = cc$rms_fab;
  1775.     fab.fab$l_fna = last_wild;
  1776.     fab.fab$b_fns = strlen(last_wild);
  1777.     fab.fab$l_nam = &nam;
  1778.     nam = cc$rms_nam;
  1779.     nam.nam$l_esa = efn;
  1780.     nam.nam$b_ess = sizeof(efn)-1;
  1781.     nam.nam$l_rsa = filename;
  1782.     nam.nam$b_rss = sizeof(filename)-1;
  1783.  
  1784.     if(!OK(sys$parse(&fab)))
  1785.         return 0L;    /* Initialization failed */
  1786.  
  1787.     first_call = 0;
  1788.     use_default = 1;
  1789.     }
  1790.  
  1791.     if( !OK(sys$search(&fab)) )
  1792.     {
  1793.     if( !fab.fab$l_dna && use_default )
  1794.     {
  1795.         first_call = 1;    /* Try to use default file type ".zip"    */
  1796.  
  1797.         fab = cc$rms_fab;
  1798.         fab.fab$l_fna = last_wild;
  1799.         fab.fab$b_fns = strlen(last_wild);
  1800.         fab.fab$l_nam = &nam;
  1801.         fab.fab$l_dna = deflt;
  1802.         fab.fab$b_dns = strlen(deflt);
  1803.         nam = cc$rms_nam;
  1804.         nam.nam$l_esa = efn;
  1805.         nam.nam$b_ess = sizeof(efn)-1;
  1806.         nam.nam$l_rsa = filename;
  1807.         nam.nam$b_rss = sizeof(filename)-1;
  1808.  
  1809.         if(!OK(sys$parse(&fab)))
  1810.             return 0L;
  1811.         if( !OK(sys$search(&fab)) )
  1812.             return 0L;
  1813.         first_call = 0;
  1814.     }
  1815.     else
  1816.     {    first_call = 1;    /* Reinitialize next time */
  1817.         return 0L;
  1818.     }
  1819.     }
  1820.     use_default = 0;    /* Do not append ".zip" next time since at least
  1821.                one file is found. */
  1822.     filename[nam.nam$b_rsl] = 0;
  1823.     return filename;
  1824. }
  1825.  
  1826. #endif /* !SFX */
  1827.  
  1828.  
  1829.  
  1830. static ulg unix_to_vms[8]={ /* Map from UNIX rwx to VMS rwed */
  1831.                 /* Note that unix w bit is mapped to VMS wd bits */
  1832.     XAB$M_NOREAD | XAB$M_NOWRITE | XAB$M_NODEL | XAB$M_NOEXE,    /* --- no access*/
  1833.     XAB$M_NOREAD | XAB$M_NOWRITE | XAB$M_NODEL,                  /* --x */
  1834.     XAB$M_NOREAD |                               XAB$M_NOEXE,    /* -w- */
  1835.     XAB$M_NOREAD,                                                /* -wx */
  1836.                    XAB$M_NOWRITE | XAB$M_NODEL | XAB$M_NOEXE,    /* r-- */
  1837.                    XAB$M_NOWRITE | XAB$M_NODEL,                  /* r-x */
  1838.                                                  XAB$M_NOEXE,    /* rw- */
  1839.     0                                                            /* rwx full access*/
  1840. };
  1841.  
  1842. #define SETDFPROT   /* We are using undocumented VMS System Service    */
  1843.             /* SYS$SETDFPROT here. If your version of VMS does    */
  1844.             /* not have that service, undef SETDFPROT.        */
  1845.             /* IM: Maybe it's better to put this to Makefile    */
  1846.             /* and DESCRIP.MMS */
  1847.  
  1848.  
  1849.  
  1850. int mapattr()
  1851. {
  1852.     ulg  tmp=crec.external_file_attributes, theprot;
  1853.     static ulg  defprot = -1L,
  1854.         sysdef,owndef,grpdef,wlddef;  /* Default protection fields */
  1855.  
  1856.  
  1857.     /* IM: The only field of XABPRO we need to set here is */
  1858.     /*     file protection, so we need not to change type */
  1859.     /*     of pInfo->file_attr. WORD is quite enough. */
  1860.  
  1861.     if( defprot == -1L )
  1862.     {
  1863.     /*
  1864.     * First time here -- Get user default settings
  1865.     */
  1866.  
  1867. #ifdef SETDFPROT    /* Undef this if linker cat't resolve SYS$SETDFPROT */
  1868.     defprot = 0L;
  1869.     if( !ERR(SYS$SETDFPROT(0,&defprot)) )
  1870.     {
  1871.         sysdef = defprot & ( (1L<<XAB$S_SYS)-1 ) << XAB$V_SYS;
  1872.         owndef = defprot & ( (1L<<XAB$S_OWN)-1 ) << XAB$V_OWN;
  1873.         grpdef = defprot & ( (1L<<XAB$S_GRP)-1 ) << XAB$V_GRP;
  1874.         wlddef = defprot & ( (1L<<XAB$S_WLD)-1 ) << XAB$V_WLD;
  1875.     }
  1876.     else
  1877.     {
  1878. #endif /* ?SETDFPROT */
  1879.         umask(defprot = umask(0));
  1880.         defprot = ~defprot;
  1881.         wlddef = unix_to_vms[defprot & 07] << XAB$V_WLD;
  1882.         grpdef = unix_to_vms[(defprot>>3) & 07] << XAB$V_GRP;
  1883.         owndef = unix_to_vms[(defprot>>6) & 07] << XAB$V_OWN;
  1884.         sysdef = owndef << (XAB$V_SYS - XAB$V_OWN);
  1885.         defprot = sysdef | owndef | grpdef | wlddef;
  1886. #ifdef SETDFPROT
  1887.     }
  1888. #endif    /* ?SETDFPROT */
  1889.     }
  1890.  
  1891.     switch (pInfo->hostnum) {
  1892.         case UNIX_:
  1893.         case VMS_:  /*IM: ??? Does VMS Zip store protection in UNIX format ?*/
  1894.                     /* GRR:  Yup.  Bad decision on my part... */
  1895.             tmp = (unsigned)(tmp >> 16);  /* drwxrwxrwx */
  1896.         theprot  = (unix_to_vms[tmp & 07] << XAB$V_WLD)
  1897.                  | (unix_to_vms[(tmp>>3) & 07] << XAB$V_GRP)
  1898.                  | (unix_to_vms[(tmp>>6) & 07] << XAB$V_OWN);
  1899.  
  1900.         if( tmp & 0x4000 )
  1901.             /* Directory -- set D bits */
  1902.         theprot |= (XAB$M_NODEL << XAB$V_SYS)
  1903.             | (XAB$M_NODEL << XAB$V_OWN)
  1904.             | (XAB$M_NODEL << XAB$V_GRP)
  1905.             | (XAB$M_NODEL << XAB$V_WLD);
  1906.         pInfo->file_attr = theprot;
  1907.         break;
  1908.  
  1909.         case AMIGA_:
  1910.             tmp = (unsigned)(tmp>>16 & 0x0f);   /* Amiga RWED bits */
  1911.             pInfo->file_attr = (tmp << XAB$V_OWN) | grpdef | sysdef | wlddef;
  1912.             break;
  1913.  
  1914.         /* all remaining cases:  expand MSDOS read-only bit into write perms */
  1915.         case FS_FAT_:
  1916.         case FS_HPFS_:
  1917.         case FS_NTFS_:
  1918.         case MAC_:
  1919.         case ATARI_:             /* (used to set = 0666) */
  1920.         case TOPS20_:
  1921.         default:
  1922.         theprot = defprot;
  1923.         if( tmp & 1 )   /* Test read-only bit */
  1924.         {    /* Bit is set -- set bits in all fields */
  1925.         tmp = XAB$M_NOWRITE | XAB$M_NODEL;
  1926.         theprot |= (tmp << XAB$V_SYS) | (tmp << XAB$V_OWN) |
  1927.                (tmp << XAB$V_GRP) | (tmp << XAB$V_WLD);
  1928.         }
  1929.             pInfo->file_attr = theprot;
  1930.             break;
  1931.     } /* end switch (host-OS-created-by) */
  1932.  
  1933.     return 0;
  1934.  
  1935. } /* end function mapattr() */
  1936.  
  1937.  
  1938.  
  1939. #ifndef    EEXIST
  1940. #  include <errno.h>    /* For mkdir() status codes */
  1941. #endif
  1942.  
  1943. #include <fscndef.h> /* for filescan */
  1944.  
  1945. #   define FN_MASK   7
  1946. #   define USE_DEFAULT    (FN_MASK+1)
  1947.  
  1948. /*
  1949.  * Checkdir function codes:
  1950.  *    ROOT        -   set root path from unzip qq d:[dir]
  1951.  *    INIT        -   get ready for "filename"
  1952.  *    APPEND_DIR  -    append pathcomp
  1953.  *    APPEND_NAME -    append filename
  1954.  *    APPEND_NAME | USE_DEFAULT   -    expand filename using collected path
  1955.  *    GETPATH     -    return resulting filespec
  1956.  */
  1957.  
  1958. static    int created_dir;
  1959.  
  1960. int mapname(renamed)  /* return 0 if no error, 1 if caution (filename trunc),*/
  1961.     int renamed;      /* 2 if warning (skip file because dir doesn't exist), */
  1962. {                     /* 3 if error (skip file), 10 if no memory (skip file) */
  1963.     char pathcomp[FILNAMSIZ];   /* path-component buffer */
  1964.     char *pp, *cp=NULL;         /* character pointers */
  1965.     char *lastsemi = NULL;      /* pointer to last semi-colon in pathcomp */
  1966.     char *last_dot = NULL;      /* last dot not converted to underscore */
  1967.     int quote = FALSE;          /* flag:  next char is literal */
  1968.     int dotname = FALSE;        /* flag:  path component begins with dot */
  1969.     int error = 0;
  1970.     register unsigned workch;   /* hold the character being tested */
  1971.  
  1972.     if( renamed )
  1973.     {
  1974.             if( !(error = checkdir(pathcomp, APPEND_NAME | USE_DEFAULT)) )
  1975.             strcpy(filename, pathcomp);
  1976.         return error;
  1977.     }
  1978.         
  1979. /*---------------------------------------------------------------------------
  1980.     Initialize various pointers and counters and stuff.
  1981.   ---------------------------------------------------------------------------*/
  1982.  
  1983.     /* can create path as long as not just freshening, or if user told us */
  1984.     create_dirs = !fflag;
  1985.  
  1986.     created_dir = FALSE;        /* not yet */
  1987.  
  1988. /* GRR:  for VMS, convert to internal format now or later? or never? */
  1989.     if (checkdir(pathcomp, INIT) == 10)
  1990.         return 10;              /* initialize path buffer, unless no memory */
  1991.  
  1992.     *pathcomp = '\0';           /* initialize translation buffer */
  1993.     pp = pathcomp;              /* point to translation buffer */
  1994.     if (jflag)              /* junking directories */
  1995. /* GRR:  watch out for VMS version... */
  1996.         cp = (char *)strrchr(filename, '/');
  1997.     if (cp == NULL)             /* no '/' or not junking dirs */
  1998.         cp = filename;          /* point to internal zipfile-member pathname */
  1999.     else
  2000.         ++cp;                   /* point to start of last component of path */
  2001.  
  2002. /*---------------------------------------------------------------------------
  2003.     Begin main loop through characters in filename.
  2004.   ---------------------------------------------------------------------------*/
  2005.  
  2006.     while ((workch = (uch)*cp++) != 0) {
  2007.  
  2008.         if (quote) {              /* if character quoted, */
  2009.             *pp++ = (char)workch; /*  include it literally */
  2010.             quote = FALSE;
  2011.         } else
  2012.             switch (workch) {
  2013.             case '/':             /* can assume -j flag not given */
  2014.                 *pp = '\0';
  2015.                 if (last_dot) {   /* one dot in directory name is legal */
  2016.                     *last_dot = '.';
  2017.                     last_dot = NULL;
  2018.                 }
  2019.                 if ((error = checkdir(pathcomp, APPEND_DIR)) > 1)
  2020.                     return error;
  2021.                 pp = pathcomp;    /* reset conversion buffer for next piece */
  2022.                 lastsemi = NULL;  /* leave directory semi-colons alone */
  2023.                 break;
  2024.  
  2025.             case ':':
  2026.                 *pp++ = '_';      /* drive names not stored in zipfile, */
  2027.                 break;            /*  so no colons allowed */
  2028.  
  2029.             case '.':
  2030.                 if (pp == pathcomp) {     /* nothing appended yet... */
  2031.                     if (*cp == '/') {     /* don't bother appending a "./" */
  2032.                         ++cp;             /*  component to the path:  skip */
  2033.                         break;            /*  to next char after the '/' */
  2034.                     } else if (*cp == '.' && cp[1] == '/') {   /* "../" */
  2035.                         *pp++ = '.';      /* add first dot, unchanged... */
  2036.                         ++cp;             /* skip second dot, since it will */
  2037.                     }                     /*  added next (as '_' for now) */
  2038.                 }
  2039.                 last_dot = pp;    /* point at last dot so far... */
  2040.                 *pp++ = '_';      /* convert dot to underscore for now */
  2041.                 break;
  2042.  
  2043.             case ';':             /* start of VMS version? */
  2044.                 lastsemi = pp;    /* omit for now; remove VMS vers. later */
  2045.                 break;
  2046.  
  2047.             case ' ':
  2048.                 *pp++ = '_';
  2049.                 break;
  2050.  
  2051.             default:
  2052.                 if( isalpha(workch) || isdigit(workch) ||
  2053.                     workch=='$' || workch=='-' )
  2054.                     *pp++ = (char)workch;
  2055.                 else
  2056.                     *pp++ = '_';  /* convert everything else to underscore */
  2057.                 break;
  2058.             } /* end switch */
  2059.  
  2060.     } /* end while loop */
  2061.  
  2062.     *pp = '\0';                   /* done with pathcomp:  terminate it */
  2063.  
  2064.     /* if not saving them, remove VMS version numbers (appended "###") */
  2065.     if (!V_flag && lastsemi) {
  2066.         pp = lastsemi;            /* semi-colon was omitted:  expect all #'s */
  2067.         while (isdigit((uch)(*pp)))
  2068.             ++pp;
  2069.         if (*pp == '\0')          /* only digits between ';' and end:  nuke */
  2070.             *lastsemi = '\0';
  2071.     }
  2072.  
  2073.     if (last_dot != NULL)         /* one dot is OK:  put it back in */
  2074.         *last_dot = '.';          /* (already done for directories) */
  2075.  
  2076. /*---------------------------------------------------------------------------
  2077.     Report if directory was created (and no file to create:  filename ended
  2078.     in '/'), check name to be sure it exists, and combine path and name be-
  2079.     fore exiting.
  2080.   ---------------------------------------------------------------------------*/
  2081.  
  2082.     if (filename[strlen(filename) - 1] == '/') {
  2083.         checkdir(filename, GETPATH);
  2084.         if (created_dir && QCOND2) {
  2085.             fprintf(stdout, "   creating: %s\n", filename);
  2086.             return IZ_CREATED_DIR;   /* set dir time (note trailing '/') */
  2087.         }
  2088.         return 2;   /* dir existed already; don't look for data to extract */
  2089.     }
  2090.  
  2091.     if (*pathcomp == '\0') {
  2092.         fprintf(stderr, "mapname:  conversion of %s failed\n", filename);
  2093.         return 3;
  2094.     }
  2095.  
  2096.     checkdir(pathcomp, APPEND_NAME);   /* returns 1 if truncated:  care? */
  2097.     checkdir(filename, GETPATH);
  2098.  
  2099.     return error;
  2100.  
  2101. } /* end function mapname() */
  2102.  
  2103.  
  2104.  
  2105. int checkdir(pathcomp,fcn)
  2106. /*
  2107.  * returns:  1 - (on APPEND_NAME) truncated filename
  2108.  *           2 - path doesn't exist, not allowed to create
  2109.  *           3 - path doesn't exist, tried to create and failed; or
  2110.  *               path exists and is not a directory, but is supposed to be
  2111.  *           4 - path is too long
  2112.  *          10 - can't allocate memory for filename buffers
  2113.  */
  2114.     char *pathcomp;
  2115.     int fcn;
  2116. {
  2117.     int     function=fcn & FN_MASK;
  2118.     static  char    pathbuf[FILNAMSIZ];
  2119.     static  char    lastdir[FILNAMSIZ]="\t"; /* directory created last time */
  2120.                          /* initially - impossible dir. spec. */
  2121.     static  char    *pathptr=pathbuf;        /* For debugger */
  2122.     static  char    *devptr, *dirptr, *namptr;
  2123.     static  int            devlen, dirlen, namlen;
  2124.     static  int            root_dirlen;
  2125.     static  char    *end;
  2126.     static  int        first_comp,root_has_dir;
  2127.     static  int        rootlen=0;
  2128.     static  char    *rootend;
  2129.     static  int        mkdir_failed=0;
  2130.     int        status;
  2131.  
  2132. /************
  2133.  *** ROOT ***
  2134.  ************/
  2135.  
  2136.     if(function==ROOT)
  2137.     {        /*  Assume VMS root spec */
  2138.         char        *p = pathcomp;
  2139.         char        *q;
  2140.  
  2141.         struct
  2142.         {   short        len;
  2143.             short        code;
  2144.             char        *addr;
  2145.         } itl [4] =
  2146.         {
  2147.             {   0,        FSCN$_DEVICE,            0        },
  2148.             {   0,        FSCN$_ROOT,            0        },
  2149.             {   0,        FSCN$_DIRECTORY,    0        },
  2150.             {   0,        0,                    0        }   /* End if itemlist */
  2151.         };
  2152.         int fields = 0;
  2153.         struct        dsc$descriptor        pthcmp;
  2154.  
  2155.         /*
  2156.          *  Initialize everything
  2157.          */
  2158.         end = devptr = dirptr = rootend = pathbuf;
  2159.         devlen = dirlen = rootlen = 0;
  2160.  
  2161.         pthcmp.dsc$a_pointer = pathcomp;
  2162.         if( (pthcmp.dsc$w_length = strlen(pathcomp)) > 255 )
  2163.             return 4;
  2164.  
  2165.         status = sys$filescan(&pthcmp, itl, &fields);
  2166.         if( !OK(status) )
  2167.             return 3;
  2168.  
  2169.         if( fields & FSCN$M_DEVICE )
  2170.         {   strncpy(devptr = end, itl[0].addr, itl[0].len);
  2171.             dirptr = (end += (devlen = itl[0].len));
  2172.         }
  2173.  
  2174.         root_has_dir = 0;
  2175.  
  2176.         if( fields & FSCN$M_ROOT )
  2177.         {   int        len;
  2178.  
  2179.             strncpy(dirptr = end, itl[1].addr,
  2180.                 len = itl[1].len - 1);        /* Cut out trailing ']' */
  2181.             end += len;
  2182.             root_has_dir = 1;
  2183.         }
  2184.  
  2185.         if( fields & FSCN$M_DIRECTORY )
  2186.         {   char    *ptr;
  2187.             int            len;
  2188.  
  2189.             len = itl[2].len-1;
  2190.             ptr = itl[2].addr;
  2191.  
  2192.             if( root_has_dir /* i.e. root specified */ )
  2193.             {        --len;                            /* Cut out leading dot */
  2194.                 ++ptr;                            /* ??? [a.b.c.][.d.e] */
  2195.             }
  2196.  
  2197.             strncpy(dirptr=end, ptr, len);  /* Replace trailing ']' */
  2198.             *(end+=len) = '.';                    /* ... with dot */
  2199.             ++end;
  2200.             root_has_dir = 1;
  2201.         }
  2202.  
  2203.         /* When user specified "[a.b.c.]" or "[qq...]", we have too many
  2204.         *  trailing dots. Let's cut them out. Now we surely have at least
  2205.         *  one trailing dot and "end" points just behind it. */
  2206.  
  2207.         dirlen = end - dirptr;
  2208.         while( dirlen > 1 && end[-2] == '.' )
  2209.             --dirlen,--end;
  2210.  
  2211.         first_comp = !root_has_dir;
  2212.         root_dirlen = end - dirptr;
  2213.         *(rootend = end) = 0;
  2214.         rootlen = rootend - devptr;
  2215.         return 0;
  2216.     }
  2217.  
  2218.  
  2219. /************
  2220.  *** INIT ***
  2221.  ************/
  2222.  
  2223.     if( function == INIT )
  2224.     {
  2225.         if( strlen(filename) + rootlen + 13 > 255 )
  2226.             return 4;
  2227.  
  2228.     if( rootlen == 0 )    /* No root given, reset everything. */
  2229.     {   devptr = dirptr = rootend = pathbuf;
  2230.         devlen = dirlen = 0;
  2231.     }
  2232.         end = rootend;
  2233.         first_comp = !root_has_dir;
  2234.         if( dirlen = root_dirlen )
  2235.         end[-1] = '.';
  2236.     *end = 0;
  2237.         return        0;
  2238.     }
  2239.  
  2240.  
  2241. /******************
  2242.  *** APPEND_DIR ***
  2243.  ******************/
  2244.     if( function == APPEND_DIR )
  2245.     {        int cmplen;
  2246.  
  2247.     cmplen = strlen(pathcomp);
  2248.  
  2249.         if( first_comp )
  2250.         {   *end++ = '[';
  2251.         if( cmplen )
  2252.         *end++ = '.';    /*       "dir/..." --> "[.dir...]"    */
  2253.         /*                     else  "/dir..." --> "[dir...]"     */
  2254.         first_comp = 0;
  2255.     }        
  2256.  
  2257.     if( cmplen == 1 && *pathcomp == '.' )
  2258.             ; /* "..././..." -- ignore */
  2259.  
  2260.         else if( cmplen == 2 && pathcomp[0] == '.' && pathcomp[1] == '.' )
  2261.         {   /* ".../../..." -- convert to "...-..." */
  2262.             *end++ = '-';
  2263.             *end++ = '.';
  2264.         }
  2265.  
  2266.         else if( cmplen + (end-pathptr) > 255 )
  2267.             return 4;
  2268.  
  2269.         else
  2270.         {   strcpy(end, pathcomp);
  2271.             *(end+=cmplen) = '.';
  2272.             ++end;
  2273.         }
  2274.         dirlen = end - dirptr;
  2275.         *end = 0;
  2276.         return        0;
  2277.     }
  2278.  
  2279.  
  2280. /*******************
  2281.  *** APPEND_NAME ***
  2282.  *******************/
  2283.     if( function == APPEND_NAME )
  2284.     {        if( fcn & USE_DEFAULT )
  2285.         {   /* Expand renamed filename using collected path, return
  2286.             *  at pathcomp */
  2287.             struct        FAB fab;
  2288.             struct        NAM nam;
  2289.  
  2290.             fab = cc$rms_fab;
  2291.             fab.fab$l_fna = filename;
  2292.             fab.fab$b_fns = strlen(filename);
  2293.             fab.fab$l_dna = pathptr;
  2294.             fab.fab$b_dns = end-pathptr;
  2295.  
  2296.             fab.fab$l_nam = &nam;
  2297.             nam = cc$rms_nam;
  2298.             nam.nam$l_esa = pathcomp;
  2299.             nam.nam$b_ess = 255;            /* Assume large enaugh */
  2300.  
  2301.             if(!OK(status = sys$parse(&fab)) && status == RMS$_DNF )    /* Directory not found: */
  2302.             {   char    save;            /* ... try to create it */
  2303.                 char    *dirend;
  2304.                 int     mkdir_failed;
  2305.  
  2306.                 dirend = (char*)nam.nam$l_dir + nam.nam$b_dir;
  2307.                 save = *dirend;
  2308.                 *dirend = 0;
  2309.                 if( (mkdir_failed = mkdir(nam.nam$l_dev)) && errno == EEXIST )
  2310.                     mkdir_failed = 0;
  2311.                 *dirend = save;
  2312.                 if( mkdir_failed )
  2313.                     return 3;
  2314.             }                                /* if (sys$parse... */
  2315.             pathcomp[nam.nam$b_esl] = 0;
  2316.             return 0;
  2317.         }                                /* if (USE_DEFAULT) */
  2318.         else
  2319.         {
  2320.         *end = 0;
  2321.             if( dirlen )
  2322.             {    dirptr[dirlen-1] = ']'; /* Close directory */
  2323.  
  2324.         /*
  2325.          *    Try to create the target directory.
  2326.          *  Don't waste time creating directory that was created
  2327.          *    last time.
  2328.          */
  2329.         if( STRICMP(lastdir,pathbuf) )
  2330.         {
  2331.             mkdir_failed = 0;
  2332.             if( mkdir(pathbuf,0) )
  2333.             {   if( errno != EEXIST )
  2334.                 mkdir_failed = 1;   /* Mine for GETPATH */
  2335.             }
  2336.             strcpy(lastdir,pathbuf);
  2337.         }
  2338.         }
  2339.         else
  2340.         {    /*
  2341.          * Target directory unspecified.
  2342.          * Try to create "sys$disk:[]"
  2343.          */
  2344.         if( strcmp(lastdir,"sys$disk:[]") )
  2345.         {   strcpy(lastdir,"sys$disk:[]");
  2346.             mkdir_failed = 0;
  2347.             if( mkdir(lastdir,0) && errno != EEXIST )
  2348.             mkdir_failed = 1;   /* Mine for GETPATH */
  2349.         }        
  2350.         }
  2351.             if( strlen(pathcomp) + (end-pathbuf) > 255 )
  2352.                 return 1;
  2353.             strcpy(end, pathcomp);
  2354.             end += strlen(pathcomp);
  2355.             return 0;
  2356.         }
  2357.     }
  2358.  
  2359.  
  2360. /***************
  2361.  *** GETPATH ***
  2362.  ***************/
  2363.     if( function == GETPATH )
  2364.     {
  2365.         if( mkdir_failed )
  2366.             return 3;
  2367.         *end = 0;                        /* To be safe */
  2368.         strcpy( pathcomp, pathbuf );
  2369.         return 0;
  2370.     }
  2371. }
  2372.  
  2373.  
  2374.  
  2375. int check_for_newer(filename)   /* return 1 if existing file newer or equal; */
  2376.     char *filename;             /*  0 if older; -1 if doesn't exist yet */
  2377. {
  2378.     unsigned short timbuf[7];
  2379.     int dy, mo, yr, hh, mm, ss, dy2, mo2, yr2, hh2, mm2, ss2;
  2380.     struct FAB fab;
  2381.     struct XABDAT xdat;
  2382.  
  2383.  
  2384.     if (stat(filename, &statbuf))
  2385.         return DOES_NOT_EXIST;
  2386.  
  2387.     fab  = cc$rms_fab;
  2388.     xdat = cc$rms_xabdat;
  2389.  
  2390.     fab.fab$l_xab = &xdat;
  2391.     fab.fab$l_fna = filename;
  2392.     fab.fab$b_fns = strlen(filename);
  2393.     fab.fab$l_fop = FAB$M_GET | FAB$M_UFO;
  2394.  
  2395.     if ((sys$open(&fab) & 1) == 0)       /* open failure:  report exists and */
  2396.         return EXISTS_AND_OLDER;         /*  older so new copy will be made  */
  2397.     sys$numtim(&timbuf,&xdat.xab$q_cdt);
  2398.     fab.fab$l_xab = 0L;
  2399.  
  2400.     sys$dassgn(fab.fab$l_stv);
  2401.     sys$close(&fab);   /* be sure file is closed and RMS knows about it */
  2402.  
  2403.     yr = timbuf[0];
  2404.     yr2 = ((lrec.last_mod_file_date >> 9) & 0x7f) + 1980;
  2405.     if (yr > yr2)
  2406.         return EXISTS_AND_NEWER;
  2407.     else if (yr < yr2)
  2408.         return EXISTS_AND_OLDER;
  2409.  
  2410.     mo = timbuf[1];
  2411.     mo2 = ((lrec.last_mod_file_date >> 5) & 0x0f);
  2412.     if (mo > mo2)
  2413.         return EXISTS_AND_NEWER;
  2414.     else if (mo < mo2)
  2415.         return EXISTS_AND_OLDER;
  2416.  
  2417.     dy = timbuf[2];
  2418.     dy2 = (lrec.last_mod_file_date & 0x1f);
  2419.     if (dy > dy2)
  2420.         return EXISTS_AND_NEWER;
  2421.     else if (dy < dy2)
  2422.         return EXISTS_AND_OLDER;
  2423.  
  2424.     hh = timbuf[3];
  2425.     hh2 = (lrec.last_mod_file_time >> 11) & 0x1f;
  2426.     if (hh > hh2)
  2427.         return EXISTS_AND_NEWER;
  2428.     else if (hh < hh2)
  2429.         return EXISTS_AND_OLDER;
  2430.  
  2431.     mm = timbuf[4];
  2432.     mm2 = (lrec.last_mod_file_time >> 5) & 0x3f;
  2433.     if (mm > mm2)
  2434.         return EXISTS_AND_NEWER;
  2435.     else if (mm < mm2)
  2436.         return EXISTS_AND_OLDER;
  2437.  
  2438.     /* round to nearest 2 secs--may become 60, but doesn't matter for compare */
  2439.     ss = (int)((float)timbuf[5] + (float)timbuf[6]*.01 + 1.) & -2;
  2440.     ss2 = (lrec.last_mod_file_time & 0x1f) * 2;
  2441.     if (ss >= ss2)
  2442.         return EXISTS_AND_NEWER;
  2443.  
  2444.     return EXISTS_AND_OLDER;
  2445. }
  2446.  
  2447.  
  2448.  
  2449. void return_VMS(zip_error)
  2450.     int zip_error;
  2451. {
  2452. #ifdef RETURN_CODES
  2453. /*---------------------------------------------------------------------------
  2454.     Do our own, explicit processing of error codes and print message, since
  2455.     VMS misinterprets return codes as rather obnoxious system errors ("access
  2456.     violation," for example).
  2457.   ---------------------------------------------------------------------------*/
  2458.  
  2459.     switch (zip_error) {
  2460.  
  2461.     case PK_COOL:
  2462.         break;   /* life is fine... */
  2463.     case PK_WARN:
  2464.         fprintf(stderr, "\n[return-code 1:  warning error \
  2465. (e.g., failed CRC or unknown compression method)]\n");
  2466.         break;
  2467.     case PK_ERR:
  2468.     case PK_BADERR:
  2469.         fprintf(stderr, "\n[return-code %d:  error in zipfile \
  2470. (e.g., can't find local file header sig)]\n",
  2471.                 zip_error);
  2472.         break;
  2473.     case PK_MEM:
  2474.     case PK_MEM2:
  2475.     case PK_MEM3:
  2476.     case PK_MEM4:
  2477.     case PK_MEM5:
  2478.         fprintf(stderr, "\n[return-code %d:  insufficient memory]\n",
  2479.           zip_error);
  2480.         break;
  2481.     case PK_NOZIP:
  2482.         fprintf(stderr, "\n[return-code 9:  zipfile not found]\n");
  2483.         break;
  2484.     case PK_PARAM:   /* the one that gives "access violation," I think */
  2485.         fprintf(stderr, "\n[return-code 10:  bad or illegal parameters \
  2486. specified on command line]\n");
  2487.         break;
  2488.     case PK_FIND:
  2489.         fprintf(stderr,
  2490.           "\n[return-code 11:  no files found to extract/view/etc.]\n");
  2491.         break;
  2492.     case PK_DISK:
  2493.         fprintf(stderr,
  2494.   "\n[return-code 50:  disk full or other I/O error]\n");
  2495.         break;
  2496.     case PK_EOF:
  2497.         fprintf(stderr,
  2498.           "\n[return-code 51:  unexpected EOF in zipfile (i.e., truncated)]\n");
  2499.         break;
  2500.     default:
  2501.         fprintf(stderr, "\n[return-code %d:  unknown return-code (screw-up)]\n",
  2502.           zip_error);
  2503.         break;
  2504.     }
  2505. #endif /* RETURN_CODES */
  2506.  
  2507.     exit(0);   /* everything okey-dokey as far as VMS concerned */
  2508.  
  2509. } /* end function return_VMS() */
  2510.  
  2511. #endif                /* VMS */
  2512.