Partially retract #12056, from Craig Berry.
[p5sagit/p5-mst-13.2.git] / vms / vms.c
1 /* vms.c
2  *
3  * VMS-specific routines for perl5
4  * Version: 5.7.0
5  *
6  * August 2000 tweaks to vms_image_init, my_flush, my_fwrite, cando_by_name, 
7  *             and Perl_cando by Craig Berry
8  * 29-Aug-2000 Charles Lane's piping improvements rolled in
9  * 20-Aug-1999 revisions by Charles Bailey  bailey@newman.upenn.edu
10  */
11
12 #include <acedef.h>
13 #include <acldef.h>
14 #include <armdef.h>
15 #include <atrdef.h>
16 #include <chpdef.h>
17 #include <clidef.h>
18 #include <climsgdef.h>
19 #include <descrip.h>
20 #include <devdef.h>
21 #include <dvidef.h>
22 #include <fibdef.h>
23 #include <float.h>
24 #include <fscndef.h>
25 #include <iodef.h>
26 #include <jpidef.h>
27 #include <kgbdef.h>
28 #include <libclidef.h>
29 #include <libdef.h>
30 #include <lib$routines.h>
31 #include <lnmdef.h>
32 #include <msgdef.h>
33 #include <prvdef.h>
34 #include <psldef.h>
35 #include <rms.h>
36 #include <shrdef.h>
37 #include <ssdef.h>
38 #include <starlet.h>
39 #include <strdef.h>
40 #include <str$routines.h>
41 #include <syidef.h>
42 #include <uaidef.h>
43 #include <uicdef.h>
44
45 /* Older versions of ssdef.h don't have these */
46 #ifndef SS$_INVFILFOROP
47 #  define SS$_INVFILFOROP 3930
48 #endif
49 #ifndef SS$_NOSUCHOBJECT
50 #  define SS$_NOSUCHOBJECT 2696
51 #endif
52
53 /* We implement I/O here, so we will be mixing PerlIO and stdio calls. */
54 #define PERLIO_NOT_STDIO 0 
55
56 /* Don't replace system definitions of vfork, getenv, and stat, 
57  * code below needs to get to the underlying CRTL routines. */
58 #define DONT_MASK_RTL_CALLS
59 #include "EXTERN.h"
60 #include "perl.h"
61 #include "XSUB.h"
62 /* Anticipating future expansion in lexical warnings . . . */
63 #ifndef WARN_INTERNAL
64 #  define WARN_INTERNAL WARN_MISC
65 #endif
66
67 #if defined(__VMS_VER) && __VMS_VER >= 70000000 && __DECC_VER >= 50200000
68 #  define RTL_USES_UTC 1
69 #endif
70
71
72 /* gcc's header files don't #define direct access macros
73  * corresponding to VAXC's variant structs */
74 #ifdef __GNUC__
75 #  define uic$v_format uic$r_uic_form.uic$v_format
76 #  define uic$v_group uic$r_uic_form.uic$v_group
77 #  define uic$v_member uic$r_uic_form.uic$v_member
78 #  define prv$v_bypass  prv$r_prvdef_bits0.prv$v_bypass
79 #  define prv$v_grpprv  prv$r_prvdef_bits0.prv$v_grpprv
80 #  define prv$v_readall prv$r_prvdef_bits0.prv$v_readall
81 #  define prv$v_sysprv  prv$r_prvdef_bits0.prv$v_sysprv
82 #endif
83
84 #if defined(NEED_AN_H_ERRNO)
85 dEXT int h_errno;
86 #endif
87
88 struct itmlst_3 {
89   unsigned short int buflen;
90   unsigned short int itmcode;
91   void *bufadr;
92   unsigned short int *retlen;
93 };
94
95 #define do_fileify_dirspec(a,b,c)       mp_do_fileify_dirspec(aTHX_ a,b,c)
96 #define do_pathify_dirspec(a,b,c)       mp_do_pathify_dirspec(aTHX_ a,b,c)
97 #define do_tovmsspec(a,b,c)             mp_do_tovmsspec(aTHX_ a,b,c)
98 #define do_tovmspath(a,b,c)             mp_do_tovmspath(aTHX_ a,b,c)
99 #define do_rmsexpand(a,b,c,d,e)         mp_do_rmsexpand(aTHX_ a,b,c,d,e)
100 #define do_tounixspec(a,b,c)            mp_do_tounixspec(aTHX_ a,b,c)
101 #define do_tounixpath(a,b,c)            mp_do_tounixpath(aTHX_ a,b,c)
102 #define expand_wild_cards(a,b,c,d)      mp_expand_wild_cards(aTHX_ a,b,c,d)
103 #define getredirection(a,b)             mp_getredirection(aTHX_ a,b)
104
105 /* see system service docs for $TRNLNM -- NOT the same as LNM$_MAX_INDEX */
106 #define PERL_LNM_MAX_ALLOWED_INDEX 127
107
108 #define MAX_DCL_SYMBOL              255     /* well, what *we* can set, at least*/
109 #define MAX_DCL_LINE_LENGTH        (4*MAX_DCL_SYMBOL-4)
110
111 static char *__mystrtolower(char *str)
112 {
113   if (str) for (; *str; ++str) *str= tolower(*str);
114   return str;
115 }
116
117 static struct dsc$descriptor_s fildevdsc = 
118   { 12, DSC$K_DTYPE_T, DSC$K_CLASS_S, "LNM$FILE_DEV" };
119 static struct dsc$descriptor_s crtlenvdsc = 
120   { 8, DSC$K_DTYPE_T, DSC$K_CLASS_S, "CRTL_ENV" };
121 static struct dsc$descriptor_s *fildev[] = { &fildevdsc, NULL };
122 static struct dsc$descriptor_s *defenv[] = { &fildevdsc, &crtlenvdsc, NULL };
123 static struct dsc$descriptor_s **env_tables = defenv;
124 static bool will_taint = FALSE;  /* tainting active, but no PL_curinterp yet */
125
126 /* True if we shouldn't treat barewords as logicals during directory */
127 /* munching */ 
128 static int no_translate_barewords;
129
130 #ifndef RTL_USES_UTC
131 static int tz_updated = 1;
132 #endif
133
134 /*{{{int vmstrnenv(const char *lnm, char *eqv, unsigned long int idx, struct dsc$descriptor_s **tabvec, unsigned long int flags) */
135 int
136 Perl_vmstrnenv(const char *lnm, char *eqv, unsigned long int idx,
137   struct dsc$descriptor_s **tabvec, unsigned long int flags)
138 {
139     char uplnm[LNM$C_NAMLENGTH+1], *cp1, *cp2;
140     unsigned short int eqvlen, curtab, ivlnm = 0, ivsym = 0, ivenv = 0, secure;
141     unsigned long int retsts, attr = LNM$M_CASE_BLIND;
142     unsigned char acmode;
143     struct dsc$descriptor_s lnmdsc = {0,DSC$K_DTYPE_T,DSC$K_CLASS_S,0},
144                             tmpdsc = {6,DSC$K_DTYPE_T,DSC$K_CLASS_S,0};
145     struct itmlst_3 lnmlst[3] = {{sizeof idx, LNM$_INDEX, &idx, 0},
146                                  {LNM$C_NAMLENGTH, LNM$_STRING, eqv, &eqvlen},
147                                  {0, 0, 0, 0}};
148     $DESCRIPTOR(crtlenv,"CRTL_ENV");  $DESCRIPTOR(clisym,"CLISYM");
149 #if defined(PERL_IMPLICIT_CONTEXT)
150     pTHX = NULL;
151 #  if defined(USE_5005THREADS)
152     /* We jump through these hoops because we can be called at */
153     /* platform-specific initialization time, which is before anything is */
154     /* set up--we can't even do a plain dTHX since that relies on the */
155     /* interpreter structure to be initialized */
156     if (PL_curinterp) {
157       aTHX = PL_threadnum? THR : (struct perl_thread*)SvPVX(PL_thrsv);
158     } else {
159       aTHX = NULL;
160     }
161 # else
162     if (PL_curinterp) {
163       aTHX = PERL_GET_INTERP;
164     } else {
165       aTHX = NULL;
166     }
167
168 #  endif
169 #endif
170
171     if (!lnm || !eqv || idx > PERL_LNM_MAX_ALLOWED_INDEX) {
172       set_errno(EINVAL); set_vaxc_errno(SS$_BADPARAM); return 0;
173     }
174     for (cp1 = (char *)lnm, cp2 = uplnm; *cp1; cp1++, cp2++) {
175       *cp2 = _toupper(*cp1);
176       if (cp1 - lnm > LNM$C_NAMLENGTH) {
177         set_errno(EINVAL); set_vaxc_errno(SS$_IVLOGNAM);
178         return 0;
179       }
180     }
181     lnmdsc.dsc$w_length = cp1 - lnm;
182     lnmdsc.dsc$a_pointer = uplnm;
183     uplnm[lnmdsc.dsc$w_length] = '\0';
184     secure = flags & PERL__TRNENV_SECURE;
185     acmode = secure ? PSL$C_EXEC : PSL$C_USER;
186     if (!tabvec || !*tabvec) tabvec = env_tables;
187
188     for (curtab = 0; tabvec[curtab]; curtab++) {
189       if (!str$case_blind_compare(tabvec[curtab],&crtlenv)) {
190         if (!ivenv && !secure) {
191           char *eq, *end;
192           int i;
193           if (!environ) {
194             ivenv = 1; 
195             Perl_warn(aTHX_ "Can't read CRTL environ\n");
196             continue;
197           }
198           retsts = SS$_NOLOGNAM;
199           for (i = 0; environ[i]; i++) { 
200             if ((eq = strchr(environ[i],'=')) && 
201                 !strncmp(environ[i],uplnm,eq - environ[i])) {
202               eq++;
203               for (eqvlen = 0; eq[eqvlen]; eqvlen++) eqv[eqvlen] = eq[eqvlen];
204               if (!eqvlen) continue;
205               retsts = SS$_NORMAL;
206               break;
207             }
208           }
209           if (retsts != SS$_NOLOGNAM) break;
210         }
211       }
212       else if ((tmpdsc.dsc$a_pointer = tabvec[curtab]->dsc$a_pointer) &&
213                !str$case_blind_compare(&tmpdsc,&clisym)) {
214         if (!ivsym && !secure) {
215           unsigned short int deflen = LNM$C_NAMLENGTH;
216           struct dsc$descriptor_d eqvdsc = {0,DSC$K_DTYPE_T,DSC$K_CLASS_D,0};
217           /* dynamic dsc to accomodate possible long value */
218           _ckvmssts(lib$sget1_dd(&deflen,&eqvdsc));
219           retsts = lib$get_symbol(&lnmdsc,&eqvdsc,&eqvlen,0);
220           if (retsts & 1) { 
221             if (eqvlen > 1024) {
222               set_errno(EVMSERR); set_vaxc_errno(LIB$_STRTRU);
223               eqvlen = 1024;
224               /* Special hack--we might be called before the interpreter's */
225               /* fully initialized, in which case either thr or PL_curcop */
226               /* might be bogus. We have to check, since ckWARN needs them */
227               /* both to be valid if running threaded */
228 #if defined(USE_5005THREADS)
229               if (thr && PL_curcop) {
230 #endif
231                 if (ckWARN(WARN_MISC)) {
232                   Perl_warner(aTHX_ packWARN(WARN_MISC),"Value of CLI symbol \"%s\" too long",lnm);
233                 }
234 #if defined(USE_5005THREADS)
235               } else {
236                   Perl_warner(aTHX_ packWARN(WARN_MISC),"Value of CLI symbol \"%s\" too long",lnm);
237               }
238 #endif
239               
240             }
241             strncpy(eqv,eqvdsc.dsc$a_pointer,eqvlen);
242           }
243           _ckvmssts(lib$sfree1_dd(&eqvdsc));
244           if (retsts == LIB$_INVSYMNAM) { ivsym = 1; continue; }
245           if (retsts == LIB$_NOSUCHSYM) continue;
246           break;
247         }
248       }
249       else if (!ivlnm) {
250         retsts = sys$trnlnm(&attr,tabvec[curtab],&lnmdsc,&acmode,lnmlst);
251         if (retsts == SS$_IVLOGNAM) { ivlnm = 1; continue; }
252         if (retsts == SS$_NOLOGNAM) continue;
253         /* PPFs have a prefix */
254         if (
255 #if INTSIZE == 4
256              *((int *)uplnm) == *((int *)"SYS$")                    &&
257 #endif
258              eqvlen >= 4 && eqv[0] == 0x1b && eqv[1] == 0x00        &&
259              ( (uplnm[4] == 'O' && !strcmp(uplnm,"SYS$OUTPUT"))  ||
260                (uplnm[4] == 'I' && !strcmp(uplnm,"SYS$INPUT"))   ||
261                (uplnm[4] == 'E' && !strcmp(uplnm,"SYS$ERROR"))   ||
262                (uplnm[4] == 'C' && !strcmp(uplnm,"SYS$COMMAND")) )  ) {
263           memcpy(eqv,eqv+4,eqvlen-4);
264           eqvlen -= 4;
265         }
266         break;
267       }
268     }
269     if (retsts & 1) { eqv[eqvlen] = '\0'; return eqvlen; }
270     else if (retsts == LIB$_NOSUCHSYM || retsts == LIB$_INVSYMNAM ||
271              retsts == SS$_IVLOGNAM   || retsts == SS$_IVLOGTAB   ||
272              retsts == SS$_NOLOGNAM) {
273       set_errno(EINVAL);  set_vaxc_errno(retsts);
274     }
275     else _ckvmssts(retsts);
276     return 0;
277 }  /* end of vmstrnenv */
278 /*}}}*/
279
280 /*{{{ int my_trnlnm(const char *lnm, char *eqv, unsigned long int idx)*/
281 /* Define as a function so we can access statics. */
282 int Perl_my_trnlnm(pTHX_ const char *lnm, char *eqv, unsigned long int idx)
283 {
284   return vmstrnenv(lnm,eqv,idx,fildev,                                   
285 #ifdef SECURE_INTERNAL_GETENV
286                    (PL_curinterp ? PL_tainting : will_taint) ? PERL__TRNENV_SECURE : 0
287 #else
288                    0
289 #endif
290                                                                               );
291 }
292 /*}}}*/
293
294 /* my_getenv
295  * Note: Uses Perl temp to store result so char * can be returned to
296  * caller; this pointer will be invalidated at next Perl statement
297  * transition.
298  * We define this as a function rather than a macro in terms of my_getenv_len()
299  * so that it'll work when PL_curinterp is undefined (and we therefore can't
300  * allocate SVs).
301  */
302 /*{{{ char *my_getenv(const char *lnm, bool sys)*/
303 char *
304 Perl_my_getenv(pTHX_ const char *lnm, bool sys)
305 {
306     static char __my_getenv_eqv[LNM$C_NAMLENGTH+1];
307     char uplnm[LNM$C_NAMLENGTH+1], *cp1, *cp2, *eqv;
308     unsigned long int idx = 0;
309     int trnsuccess, success, secure, saverr, savvmserr;
310     SV *tmpsv;
311
312     if (PL_curinterp) {  /* Perl interpreter running -- may be threaded */
313       /* Set up a temporary buffer for the return value; Perl will
314        * clean it up at the next statement transition */
315       tmpsv = sv_2mortal(newSVpv("",LNM$C_NAMLENGTH+1));
316       if (!tmpsv) return NULL;
317       eqv = SvPVX(tmpsv);
318     }
319     else eqv = __my_getenv_eqv;  /* Assume no interpreter ==> single thread */
320     for (cp1 = (char *) lnm, cp2 = eqv; *cp1; cp1++,cp2++) *cp2 = _toupper(*cp1);
321     if (cp1 - lnm == 7 && !strncmp(eqv,"DEFAULT",7)) {
322       getcwd(eqv,LNM$C_NAMLENGTH);
323       return eqv;
324     }
325     else {
326       if ((cp2 = strchr(lnm,';')) != NULL) {
327         strcpy(uplnm,lnm);
328         uplnm[cp2-lnm] = '\0';
329         idx = strtoul(cp2+1,NULL,0);
330         lnm = uplnm;
331       }
332       /* Impose security constraints only if tainting */
333       if (sys) {
334         /* Impose security constraints only if tainting */
335         secure = PL_curinterp ? PL_tainting : will_taint;
336         saverr = errno;  savvmserr = vaxc$errno;
337       }
338       else secure = 0;
339       success = vmstrnenv(lnm,eqv,idx,
340                           secure ? fildev : NULL,
341 #ifdef SECURE_INTERNAL_GETENV
342                           secure ? PERL__TRNENV_SECURE : 0
343 #else
344                           0
345 #endif
346                                                              );
347       /* Discard NOLOGNAM on internal calls since we're often looking
348        * for an optional name, and this "error" often shows up as the
349        * (bogus) exit status for a die() call later on.  */
350       if (sys && vaxc$errno == SS$_NOLOGNAM) SETERRNO(saverr,savvmserr);
351       return success ? eqv : Nullch;
352     }
353
354 }  /* end of my_getenv() */
355 /*}}}*/
356
357
358 /*{{{ SV *my_getenv_len(const char *lnm, bool sys)*/
359 char *
360 Perl_my_getenv_len(pTHX_ const char *lnm, unsigned long *len, bool sys)
361 {
362     char *buf, *cp1, *cp2;
363     unsigned long idx = 0;
364     static char __my_getenv_len_eqv[LNM$C_NAMLENGTH+1];
365     int secure, saverr, savvmserr;
366     SV *tmpsv;
367     
368     if (PL_curinterp) {  /* Perl interpreter running -- may be threaded */
369       /* Set up a temporary buffer for the return value; Perl will
370        * clean it up at the next statement transition */
371       tmpsv = sv_2mortal(newSVpv("",LNM$C_NAMLENGTH+1));
372       if (!tmpsv) return NULL;
373       buf = SvPVX(tmpsv);
374     }
375     else buf = __my_getenv_len_eqv;  /* Assume no interpreter ==> single thread */
376     for (cp1 = (char *)lnm, cp2 = buf; *cp1; cp1++,cp2++) *cp2 = _toupper(*cp1);
377     if (cp1 - lnm == 7 && !strncmp(buf,"DEFAULT",7)) {
378       getcwd(buf,LNM$C_NAMLENGTH);
379       *len = strlen(buf);
380       return buf;
381     }
382     else {
383       if ((cp2 = strchr(lnm,';')) != NULL) {
384         strcpy(buf,lnm);
385         buf[cp2-lnm] = '\0';
386         idx = strtoul(cp2+1,NULL,0);
387         lnm = buf;
388       }
389       if (sys) {
390         /* Impose security constraints only if tainting */
391         secure = PL_curinterp ? PL_tainting : will_taint;
392         saverr = errno;  savvmserr = vaxc$errno;
393       }
394       else secure = 0;
395       *len = vmstrnenv(lnm,buf,idx,
396                        secure ? fildev : NULL,
397 #ifdef SECURE_INTERNAL_GETENV
398                        secure ? PERL__TRNENV_SECURE : 0
399 #else
400                                                       0
401 #endif
402                                                        );
403       /* Discard NOLOGNAM on internal calls since we're often looking
404        * for an optional name, and this "error" often shows up as the
405        * (bogus) exit status for a die() call later on.  */
406       if (sys && vaxc$errno == SS$_NOLOGNAM) SETERRNO(saverr,savvmserr);
407       return *len ? buf : Nullch;
408     }
409
410 }  /* end of my_getenv_len() */
411 /*}}}*/
412
413 static void create_mbx(pTHX_ unsigned short int *, struct dsc$descriptor_s *);
414
415 static void riseandshine(unsigned long int dummy) { sys$wake(0,0); }
416
417 /*{{{ void prime_env_iter() */
418 void
419 prime_env_iter(void)
420 /* Fill the %ENV associative array with all logical names we can
421  * find, in preparation for iterating over it.
422  */
423 {
424   static int primed = 0;
425   HV *seenhv = NULL, *envhv;
426   SV *sv = NULL;
427   char cmd[LNM$C_NAMLENGTH+24], mbxnam[LNM$C_NAMLENGTH], *buf = Nullch;
428   unsigned short int chan;
429 #ifndef CLI$M_TRUSTED
430 #  define CLI$M_TRUSTED 0x40  /* Missing from VAXC headers */
431 #endif
432   unsigned long int defflags = CLI$M_NOWAIT | CLI$M_NOKEYPAD | CLI$M_TRUSTED;
433   unsigned long int mbxbufsiz, flags, retsts, subpid = 0, substs = 0, wakect = 0;
434   long int i;
435   bool have_sym = FALSE, have_lnm = FALSE;
436   struct dsc$descriptor_s tmpdsc = {6,DSC$K_DTYPE_T,DSC$K_CLASS_S,0};
437   $DESCRIPTOR(cmddsc,cmd);    $DESCRIPTOR(nldsc,"_NLA0:");
438   $DESCRIPTOR(clidsc,"DCL");  $DESCRIPTOR(clitabdsc,"DCLTABLES");
439   $DESCRIPTOR(crtlenv,"CRTL_ENV");  $DESCRIPTOR(clisym,"CLISYM");
440   $DESCRIPTOR(local,"_LOCAL"); $DESCRIPTOR(mbxdsc,mbxnam); 
441 #if defined(PERL_IMPLICIT_CONTEXT)
442   pTHX;
443 #endif
444 #if defined(USE_5005THREADS) || defined(USE_ITHREADS)
445   static perl_mutex primenv_mutex;
446   MUTEX_INIT(&primenv_mutex);
447 #endif
448
449 #if defined(PERL_IMPLICIT_CONTEXT)
450     /* We jump through these hoops because we can be called at */
451     /* platform-specific initialization time, which is before anything is */
452     /* set up--we can't even do a plain dTHX since that relies on the */
453     /* interpreter structure to be initialized */
454 #if defined(USE_5005THREADS)
455     if (PL_curinterp) {
456       aTHX = PL_threadnum? THR : (struct perl_thread*)SvPVX(PL_thrsv);
457     } else {
458       aTHX = NULL;
459     }
460 #else
461     if (PL_curinterp) {
462       aTHX = PERL_GET_INTERP;
463     } else {
464       aTHX = NULL;
465     }
466 #endif
467 #endif
468
469   if (primed || !PL_envgv) return;
470   MUTEX_LOCK(&primenv_mutex);
471   if (primed) { MUTEX_UNLOCK(&primenv_mutex); return; }
472   envhv = GvHVn(PL_envgv);
473   /* Perform a dummy fetch as an lval to insure that the hash table is
474    * set up.  Otherwise, the hv_store() will turn into a nullop. */
475   (void) hv_fetch(envhv,"DEFAULT",7,TRUE);
476
477   for (i = 0; env_tables[i]; i++) {
478      if (!have_sym && (tmpdsc.dsc$a_pointer = env_tables[i]->dsc$a_pointer) &&
479          !str$case_blind_compare(&tmpdsc,&clisym)) have_sym = 1;
480      if (!have_lnm && !str$case_blind_compare(env_tables[i],&crtlenv)) have_lnm = 1;
481   }
482   if (have_sym || have_lnm) {
483     long int syiitm = SYI$_MAXBUF, dviitm = DVI$_DEVNAM;
484     _ckvmssts(lib$getsyi(&syiitm, &mbxbufsiz, 0, 0, 0, 0));
485     _ckvmssts(sys$crembx(0,&chan,mbxbufsiz,mbxbufsiz,0xff0f,0,0));
486     _ckvmssts(lib$getdvi(&dviitm, &chan, NULL, NULL, &mbxdsc, &mbxdsc.dsc$w_length));
487   }
488
489   for (i--; i >= 0; i--) {
490     if (!str$case_blind_compare(env_tables[i],&crtlenv)) {
491       char *start;
492       int j;
493       for (j = 0; environ[j]; j++) { 
494         if (!(start = strchr(environ[j],'='))) {
495           if (ckWARN(WARN_INTERNAL)) 
496             Perl_warner(aTHX_ packWARN(WARN_INTERNAL),"Ill-formed CRTL environ value \"%s\"\n",environ[j]);
497         }
498         else {
499           start++;
500           sv = newSVpv(start,0);
501           SvTAINTED_on(sv);
502           (void) hv_store(envhv,environ[j],start - environ[j] - 1,sv,0);
503         }
504       }
505       continue;
506     }
507     else if ((tmpdsc.dsc$a_pointer = env_tables[i]->dsc$a_pointer) &&
508              !str$case_blind_compare(&tmpdsc,&clisym)) {
509       strcpy(cmd,"Show Symbol/Global *");
510       cmddsc.dsc$w_length = 20;
511       if (env_tables[i]->dsc$w_length == 12 &&
512           (tmpdsc.dsc$a_pointer = env_tables[i]->dsc$a_pointer + 6) &&
513           !str$case_blind_compare(&tmpdsc,&local)) strcpy(cmd+12,"Local  *");
514       flags = defflags | CLI$M_NOLOGNAM;
515     }
516     else {
517       strcpy(cmd,"Show Logical *");
518       if (str$case_blind_compare(env_tables[i],&fildevdsc)) {
519         strcat(cmd," /Table=");
520         strncat(cmd,env_tables[i]->dsc$a_pointer,env_tables[i]->dsc$w_length);
521         cmddsc.dsc$w_length = strlen(cmd);
522       }
523       else cmddsc.dsc$w_length = 14;  /* N.B. We test this below */
524       flags = defflags | CLI$M_NOCLISYM;
525     }
526     
527     /* Create a new subprocess to execute each command, to exclude the
528      * remote possibility that someone could subvert a mbx or file used
529      * to write multiple commands to a single subprocess.
530      */
531     do {
532       retsts = lib$spawn(&cmddsc,&nldsc,&mbxdsc,&flags,0,&subpid,&substs,
533                          0,&riseandshine,0,0,&clidsc,&clitabdsc);
534       flags &= ~CLI$M_TRUSTED; /* Just in case we hit a really old version */
535       defflags &= ~CLI$M_TRUSTED;
536     } while (retsts == LIB$_INVARG && (flags | CLI$M_TRUSTED));
537     _ckvmssts(retsts);
538     if (!buf) New(1322,buf,mbxbufsiz + 1,char);
539     if (seenhv) SvREFCNT_dec(seenhv);
540     seenhv = newHV();
541     while (1) {
542       char *cp1, *cp2, *key;
543       unsigned long int sts, iosb[2], retlen, keylen;
544       register U32 hash;
545
546       sts = sys$qiow(0,chan,IO$_READVBLK,iosb,0,0,buf,mbxbufsiz,0,0,0,0);
547       if (sts & 1) sts = iosb[0] & 0xffff;
548       if (sts == SS$_ENDOFFILE) {
549         int wakect = 0;
550         while (substs == 0) { sys$hiber(); wakect++;}
551         if (wakect > 1) sys$wake(0,0);  /* Stole someone else's wake */
552         _ckvmssts(substs);
553         break;
554       }
555       _ckvmssts(sts);
556       retlen = iosb[0] >> 16;      
557       if (!retlen) continue;  /* blank line */
558       buf[retlen] = '\0';
559       if (iosb[1] != subpid) {
560         if (iosb[1]) {
561           Perl_croak(aTHX_ "Unknown process %x sent message to prime_env_iter: %s",buf);
562         }
563         continue;
564       }
565       if (sts == SS$_BUFFEROVF && ckWARN(WARN_INTERNAL))
566         Perl_warner(aTHX_ packWARN(WARN_INTERNAL),"Buffer overflow in prime_env_iter: %s",buf);
567
568       for (cp1 = buf; *cp1 && isspace(*cp1); cp1++) ;
569       if (*cp1 == '(' || /* Logical name table name */
570           *cp1 == '='    /* Next eqv of searchlist  */) continue;
571       if (*cp1 == '"') cp1++;
572       for (cp2 = cp1; *cp2 && *cp2 != '"' && *cp2 != ' '; cp2++) ;
573       key = cp1;  keylen = cp2 - cp1;
574       if (keylen && hv_exists(seenhv,key,keylen)) continue;
575       while (*cp2 && *cp2 != '=') cp2++;
576       while (*cp2 && *cp2 == '=') cp2++;
577       while (*cp2 && *cp2 == ' ') cp2++;
578       if (*cp2 == '"') {  /* String translation; may embed "" */
579         for (cp1 = buf + retlen; *cp1 != '"'; cp1--) ;
580         cp2++;  cp1--; /* Skip "" surrounding translation */
581       }
582       else {  /* Numeric translation */
583         for (cp1 = cp2; *cp1 && *cp1 != ' '; cp1++) ;
584         cp1--;  /* stop on last non-space char */
585       }
586       if ((!keylen || (cp1 - cp2 < -1)) && ckWARN(WARN_INTERNAL)) {
587         Perl_warner(aTHX_ packWARN(WARN_INTERNAL),"Ill-formed message in prime_env_iter: |%s|",buf);
588         continue;
589       }
590       PERL_HASH(hash,key,keylen);
591       sv = newSVpvn(cp2,cp1 - cp2 + 1);
592       SvTAINTED_on(sv);
593       hv_store(envhv,key,keylen,sv,hash);
594       hv_store(seenhv,key,keylen,&PL_sv_yes,hash);
595     }
596     if (cmddsc.dsc$w_length == 14) { /* We just read LNM$FILE_DEV */
597       /* get the PPFs for this process, not the subprocess */
598       char *ppfs[] = {"SYS$COMMAND", "SYS$INPUT", "SYS$OUTPUT", "SYS$ERROR", NULL};
599       char eqv[LNM$C_NAMLENGTH+1];
600       int trnlen, i;
601       for (i = 0; ppfs[i]; i++) {
602         trnlen = vmstrnenv(ppfs[i],eqv,0,fildev,0);
603         sv = newSVpv(eqv,trnlen);
604         SvTAINTED_on(sv);
605         hv_store(envhv,ppfs[i],strlen(ppfs[i]),sv,0);
606       }
607     }
608   }
609   primed = 1;
610   if (have_sym || have_lnm) _ckvmssts(sys$dassgn(chan));
611   if (buf) Safefree(buf);
612   if (seenhv) SvREFCNT_dec(seenhv);
613   MUTEX_UNLOCK(&primenv_mutex);
614   return;
615
616 }  /* end of prime_env_iter */
617 /*}}}*/
618
619
620 /*{{{ int  vmssetenv(char *lnm, char *eqv)*/
621 /* Define or delete an element in the same "environment" as
622  * vmstrnenv().  If an element is to be deleted, it's removed from
623  * the first place it's found.  If it's to be set, it's set in the
624  * place designated by the first element of the table vector.
625  * Like setenv() returns 0 for success, non-zero on error.
626  */
627 int
628 Perl_vmssetenv(pTHX_ char *lnm, char *eqv, struct dsc$descriptor_s **tabvec)
629 {
630     char uplnm[LNM$C_NAMLENGTH], *cp1, *cp2;
631     unsigned short int curtab, ivlnm = 0, ivsym = 0, ivenv = 0;
632     unsigned long int retsts, usermode = PSL$C_USER;
633     struct dsc$descriptor_s lnmdsc = {0,DSC$K_DTYPE_T,DSC$K_CLASS_S,uplnm},
634                             eqvdsc = {0,DSC$K_DTYPE_T,DSC$K_CLASS_S,0},
635                             tmpdsc = {6,DSC$K_DTYPE_T,DSC$K_CLASS_S,0};
636     $DESCRIPTOR(crtlenv,"CRTL_ENV");  $DESCRIPTOR(clisym,"CLISYM");
637     $DESCRIPTOR(local,"_LOCAL");
638
639     for (cp1 = lnm, cp2 = uplnm; *cp1; cp1++, cp2++) {
640       *cp2 = _toupper(*cp1);
641       if (cp1 - lnm > LNM$C_NAMLENGTH) {
642         set_errno(EINVAL); set_vaxc_errno(SS$_IVLOGNAM);
643         return SS$_IVLOGNAM;
644       }
645     }
646     lnmdsc.dsc$w_length = cp1 - lnm;
647     if (!tabvec || !*tabvec) tabvec = env_tables;
648
649     if (!eqv) {  /* we're deleting n element */
650       for (curtab = 0; tabvec[curtab]; curtab++) {
651         if (!ivenv && !str$case_blind_compare(tabvec[curtab],&crtlenv)) {
652         int i;
653           for (i = 0; environ[i]; i++) { /* Iff it's an environ elt, reset */
654             if ((cp1 = strchr(environ[i],'=')) && 
655                 !strncmp(environ[i],lnm,cp1 - environ[i])) {
656 #ifdef HAS_SETENV
657               return setenv(lnm,"",1) ? vaxc$errno : 0;
658             }
659           }
660           ivenv = 1; retsts = SS$_NOLOGNAM;
661 #else
662               if (ckWARN(WARN_INTERNAL))
663                 Perl_warner(aTHX_ packWARN(WARN_INTERNAL),"This Perl can't reset CRTL environ elements (%s)",lnm);
664               ivenv = 1; retsts = SS$_NOSUCHPGM;
665               break;
666             }
667           }
668 #endif
669         }
670         else if ((tmpdsc.dsc$a_pointer = tabvec[curtab]->dsc$a_pointer) &&
671                  !str$case_blind_compare(&tmpdsc,&clisym)) {
672           unsigned int symtype;
673           if (tabvec[curtab]->dsc$w_length == 12 &&
674               (tmpdsc.dsc$a_pointer = tabvec[curtab]->dsc$a_pointer + 6) &&
675               !str$case_blind_compare(&tmpdsc,&local)) 
676             symtype = LIB$K_CLI_LOCAL_SYM;
677           else symtype = LIB$K_CLI_GLOBAL_SYM;
678           retsts = lib$delete_symbol(&lnmdsc,&symtype);
679           if (retsts == LIB$_INVSYMNAM) { ivsym = 1; continue; }
680           if (retsts == LIB$_NOSUCHSYM) continue;
681           break;
682         }
683         else if (!ivlnm) {
684           retsts = sys$dellnm(tabvec[curtab],&lnmdsc,&usermode); /* try user mode first */
685           if (retsts == SS$_IVLOGNAM) { ivlnm = 1; continue; }
686           if (retsts != SS$_NOLOGNAM && retsts != SS$_NOLOGTAB) break;
687           retsts = lib$delete_logical(&lnmdsc,tabvec[curtab]); /* then supervisor mode */
688           if (retsts != SS$_NOLOGNAM && retsts != SS$_NOLOGTAB) break;
689         }
690       }
691     }
692     else {  /* we're defining a value */
693       if (!ivenv && !str$case_blind_compare(tabvec[0],&crtlenv)) {
694 #ifdef HAS_SETENV
695         return setenv(lnm,eqv,1) ? vaxc$errno : 0;
696 #else
697         if (ckWARN(WARN_INTERNAL))
698           Perl_warner(aTHX_ packWARN(WARN_INTERNAL),"This Perl can't set CRTL environ elements (%s=%s)",lnm,eqv);
699         retsts = SS$_NOSUCHPGM;
700 #endif
701       }
702       else {
703         eqvdsc.dsc$a_pointer = eqv;
704         eqvdsc.dsc$w_length  = strlen(eqv);
705         if ((tmpdsc.dsc$a_pointer = tabvec[0]->dsc$a_pointer) &&
706             !str$case_blind_compare(&tmpdsc,&clisym)) {
707           unsigned int symtype;
708           if (tabvec[0]->dsc$w_length == 12 &&
709               (tmpdsc.dsc$a_pointer = tabvec[0]->dsc$a_pointer + 6) &&
710                !str$case_blind_compare(&tmpdsc,&local)) 
711             symtype = LIB$K_CLI_LOCAL_SYM;
712           else symtype = LIB$K_CLI_GLOBAL_SYM;
713           retsts = lib$set_symbol(&lnmdsc,&eqvdsc,&symtype);
714         }
715         else {
716           if (!*eqv) eqvdsc.dsc$w_length = 1;
717           if (eqvdsc.dsc$w_length > LNM$C_NAMLENGTH) {
718             eqvdsc.dsc$w_length = LNM$C_NAMLENGTH;
719             if (ckWARN(WARN_MISC)) {
720               Perl_warner(aTHX_ packWARN(WARN_MISC),"Value of logical \"%s\" too long. Truncating to %i bytes",lnm, LNM$C_NAMLENGTH);
721             }
722           }
723           retsts = lib$set_logical(&lnmdsc,&eqvdsc,tabvec[0],0,0);
724         }
725       }
726     }
727     if (!(retsts & 1)) {
728       switch (retsts) {
729         case LIB$_AMBSYMDEF: case LIB$_INSCLIMEM:
730         case SS$_NOLOGTAB: case SS$_TOOMANYLNAM: case SS$_IVLOGTAB:
731           set_errno(EVMSERR); break;
732         case LIB$_INVARG: case LIB$_INVSYMNAM: case SS$_IVLOGNAM: 
733         case LIB$_NOSUCHSYM: case SS$_NOLOGNAM:
734           set_errno(EINVAL); break;
735         case SS$_NOPRIV:
736           set_errno(EACCES);
737         default:
738           _ckvmssts(retsts);
739           set_errno(EVMSERR);
740        }
741        set_vaxc_errno(retsts);
742        return (int) retsts || 44; /* retsts should never be 0, but just in case */
743     }
744     else {
745       /* We reset error values on success because Perl does an hv_fetch()
746        * before each hv_store(), and if the thing we're setting didn't
747        * previously exist, we've got a leftover error message.  (Of course,
748        * this fails in the face of
749        *    $foo = $ENV{nonexistent}; $ENV{existent} = 'foo';
750        * in that the error reported in $! isn't spurious, 
751        * but it's right more often than not.)
752        */
753       set_errno(0); set_vaxc_errno(retsts);
754       return 0;
755     }
756
757 }  /* end of vmssetenv() */
758 /*}}}*/
759
760 /*{{{ void  my_setenv(char *lnm, char *eqv)*/
761 /* This has to be a function since there's a prototype for it in proto.h */
762 void
763 Perl_my_setenv(pTHX_ char *lnm,char *eqv)
764 {
765     if (lnm && *lnm) {
766       int len = strlen(lnm);
767       if  (len == 7) {
768         char uplnm[8];
769         int i;
770         for (i = 0; lnm[i]; i++) uplnm[i] = _toupper(lnm[i]);
771         if (!strcmp(uplnm,"DEFAULT")) {
772           if (eqv && *eqv) chdir(eqv);
773           return;
774         }
775     } 
776 #ifndef RTL_USES_UTC
777     if (len == 6 || len == 2) {
778       char uplnm[7];
779       int i;
780       for (i = 0; lnm[i]; i++) uplnm[i] = _toupper(lnm[i]);
781       uplnm[len] = '\0';
782       if (!strcmp(uplnm,"UCX$TZ")) tz_updated = 1;
783       if (!strcmp(uplnm,"TZ")) tz_updated = 1;
784     }
785 #endif
786   }
787   (void) vmssetenv(lnm,eqv,NULL);
788 }
789 /*}}}*/
790
791 /*{{{static void vmssetuserlnm(char *name, char *eqv);
792 /*  vmssetuserlnm
793  *  sets a user-mode logical in the process logical name table
794  *  used for redirection of sys$error
795  */
796 void
797 Perl_vmssetuserlnm(pTHX_ char *name, char *eqv)
798 {
799     $DESCRIPTOR(d_tab, "LNM$PROCESS");
800     struct dsc$descriptor_d d_name = {0,DSC$K_DTYPE_T,DSC$K_CLASS_D,0};
801     unsigned long int iss, attr = LNM$M_CONFINE;
802     unsigned char acmode = PSL$C_USER;
803     struct itmlst_3 lnmlst[2] = {{0, LNM$_STRING, 0, 0},
804                                  {0, 0, 0, 0}};
805     d_name.dsc$a_pointer = name;
806     d_name.dsc$w_length = strlen(name);
807
808     lnmlst[0].buflen = strlen(eqv);
809     lnmlst[0].bufadr = eqv;
810
811     iss = sys$crelnm(&attr,&d_tab,&d_name,&acmode,lnmlst);
812     if (!(iss&1)) lib$signal(iss);
813 }
814 /*}}}*/
815
816
817 /*{{{ char *my_crypt(const char *textpasswd, const char *usrname)*/
818 /* my_crypt - VMS password hashing
819  * my_crypt() provides an interface compatible with the Unix crypt()
820  * C library function, and uses sys$hash_password() to perform VMS
821  * password hashing.  The quadword hashed password value is returned
822  * as a NUL-terminated 8 character string.  my_crypt() does not change
823  * the case of its string arguments; in order to match the behavior
824  * of LOGINOUT et al., alphabetic characters in both arguments must
825  *  be upcased by the caller.
826  */
827 char *
828 Perl_my_crypt(pTHX_ const char *textpasswd, const char *usrname)
829 {
830 #   ifndef UAI$C_PREFERRED_ALGORITHM
831 #     define UAI$C_PREFERRED_ALGORITHM 127
832 #   endif
833     unsigned char alg = UAI$C_PREFERRED_ALGORITHM;
834     unsigned short int salt = 0;
835     unsigned long int sts;
836     struct const_dsc {
837         unsigned short int dsc$w_length;
838         unsigned char      dsc$b_type;
839         unsigned char      dsc$b_class;
840         const char *       dsc$a_pointer;
841     }  usrdsc = {0, DSC$K_DTYPE_T, DSC$K_CLASS_S, 0},
842        txtdsc = {0, DSC$K_DTYPE_T, DSC$K_CLASS_S, 0};
843     struct itmlst_3 uailst[3] = {
844         { sizeof alg,  UAI$_ENCRYPT, &alg, 0},
845         { sizeof salt, UAI$_SALT,    &salt, 0},
846         { 0,           0,            NULL,  NULL}};
847     static char hash[9];
848
849     usrdsc.dsc$w_length = strlen(usrname);
850     usrdsc.dsc$a_pointer = usrname;
851     if (!((sts = sys$getuai(0, 0, &usrdsc, uailst, 0, 0, 0)) & 1)) {
852       switch (sts) {
853         case SS$_NOGRPPRV: case SS$_NOSYSPRV:
854           set_errno(EACCES);
855           break;
856         case RMS$_RNF:
857           set_errno(ESRCH);  /* There isn't a Unix no-such-user error */
858           break;
859         default:
860           set_errno(EVMSERR);
861       }
862       set_vaxc_errno(sts);
863       if (sts != RMS$_RNF) return NULL;
864     }
865
866     txtdsc.dsc$w_length = strlen(textpasswd);
867     txtdsc.dsc$a_pointer = textpasswd;
868     if (!((sts = sys$hash_password(&txtdsc, alg, salt, &usrdsc, &hash)) & 1)) {
869       set_errno(EVMSERR);  set_vaxc_errno(sts);  return NULL;
870     }
871
872     return (char *) hash;
873
874 }  /* end of my_crypt() */
875 /*}}}*/
876
877
878 static char *mp_do_rmsexpand(pTHX_ char *, char *, int, char *, unsigned);
879 static char *mp_do_fileify_dirspec(pTHX_ char *, char *, int);
880 static char *mp_do_tovmsspec(pTHX_ char *, char *, int);
881
882 /*{{{int do_rmdir(char *name)*/
883 int
884 Perl_do_rmdir(pTHX_ char *name)
885 {
886     char dirfile[NAM$C_MAXRSS+1];
887     int retval;
888     Stat_t st;
889
890     if (do_fileify_dirspec(name,dirfile,0) == NULL) return -1;
891     if (flex_stat(dirfile,&st) || !S_ISDIR(st.st_mode)) retval = -1;
892     else retval = kill_file(dirfile);
893     return retval;
894
895 }  /* end of do_rmdir */
896 /*}}}*/
897
898 /* kill_file
899  * Delete any file to which user has control access, regardless of whether
900  * delete access is explicitly allowed.
901  * Limitations: User must have write access to parent directory.
902  *              Does not block signals or ASTs; if interrupted in midstream
903  *              may leave file with an altered ACL.
904  * HANDLE WITH CARE!
905  */
906 /*{{{int kill_file(char *name)*/
907 int
908 Perl_kill_file(pTHX_ char *name)
909 {
910     char vmsname[NAM$C_MAXRSS+1], rspec[NAM$C_MAXRSS+1];
911     unsigned long int jpicode = JPI$_UIC, type = ACL$C_FILE;
912     unsigned long int cxt = 0, aclsts, fndsts, rmsts = -1;
913     struct dsc$descriptor_s fildsc = {0, DSC$K_DTYPE_T, DSC$K_CLASS_S, 0};
914     struct myacedef {
915       unsigned char myace$b_length;
916       unsigned char myace$b_type;
917       unsigned short int myace$w_flags;
918       unsigned long int myace$l_access;
919       unsigned long int myace$l_ident;
920     } newace = { sizeof(struct myacedef), ACE$C_KEYID, 0,
921                  ACE$M_READ | ACE$M_WRITE | ACE$M_DELETE | ACE$M_CONTROL, 0},
922       oldace = { sizeof(struct myacedef), ACE$C_KEYID, 0, 0, 0};
923      struct itmlst_3
924        findlst[3] = {{sizeof oldace, ACL$C_FNDACLENT, &oldace, 0},
925                      {sizeof oldace, ACL$C_READACE,   &oldace, 0},{0,0,0,0}},
926        addlst[2] = {{sizeof newace, ACL$C_ADDACLENT, &newace, 0},{0,0,0,0}},
927        dellst[2] = {{sizeof newace, ACL$C_DELACLENT, &newace, 0},{0,0,0,0}},
928        lcklst[2] = {{sizeof newace, ACL$C_WLOCK_ACL, &newace, 0},{0,0,0,0}},
929        ulklst[2] = {{sizeof newace, ACL$C_UNLOCK_ACL, &newace, 0},{0,0,0,0}};
930       
931     /* Expand the input spec using RMS, since the CRTL remove() and
932      * system services won't do this by themselves, so we may miss
933      * a file "hiding" behind a logical name or search list. */
934     if (do_tovmsspec(name,vmsname,0) == NULL) return -1;
935     if (do_rmsexpand(vmsname,rspec,1,NULL,0) == NULL) return -1;
936     if (!remove(rspec)) return 0;   /* Can we just get rid of it? */
937     /* If not, can changing protections help? */
938     if (vaxc$errno != RMS$_PRV) return -1;
939
940     /* No, so we get our own UIC to use as a rights identifier,
941      * and the insert an ACE at the head of the ACL which allows us
942      * to delete the file.
943      */
944     _ckvmssts(lib$getjpi(&jpicode,0,0,&(oldace.myace$l_ident),0,0));
945     fildsc.dsc$w_length = strlen(rspec);
946     fildsc.dsc$a_pointer = rspec;
947     cxt = 0;
948     newace.myace$l_ident = oldace.myace$l_ident;
949     if (!((aclsts = sys$change_acl(0,&type,&fildsc,lcklst,0,0,0)) & 1)) {
950       switch (aclsts) {
951         case RMS$_FNF: case RMS$_DNF: case SS$_NOSUCHOBJECT:
952           set_errno(ENOENT); break;
953         case RMS$_DIR:
954           set_errno(ENOTDIR); break;
955         case RMS$_DEV:
956           set_errno(ENODEV); break;
957         case RMS$_SYN: case SS$_INVFILFOROP:
958           set_errno(EINVAL); break;
959         case RMS$_PRV:
960           set_errno(EACCES); break;
961         default:
962           _ckvmssts(aclsts);
963       }
964       set_vaxc_errno(aclsts);
965       return -1;
966     }
967     /* Grab any existing ACEs with this identifier in case we fail */
968     aclsts = fndsts = sys$change_acl(0,&type,&fildsc,findlst,0,0,&cxt);
969     if ( fndsts & 1 || fndsts == SS$_ACLEMPTY || fndsts == SS$_NOENTRY
970                     || fndsts == SS$_NOMOREACE ) {
971       /* Add the new ACE . . . */
972       if (!((aclsts = sys$change_acl(0,&type,&fildsc,addlst,0,0,0)) & 1))
973         goto yourroom;
974       if ((rmsts = remove(name))) {
975         /* We blew it - dir with files in it, no write priv for
976          * parent directory, etc.  Put things back the way they were. */
977         if (!((aclsts = sys$change_acl(0,&type,&fildsc,dellst,0,0,0)) & 1))
978           goto yourroom;
979         if (fndsts & 1) {
980           addlst[0].bufadr = &oldace;
981           if (!((aclsts = sys$change_acl(0,&type,&fildsc,addlst,0,0,&cxt)) & 1))
982             goto yourroom;
983         }
984       }
985     }
986
987     yourroom:
988     fndsts = sys$change_acl(0,&type,&fildsc,ulklst,0,0,0);
989     /* We just deleted it, so of course it's not there.  Some versions of
990      * VMS seem to return success on the unlock operation anyhow (after all
991      * the unlock is successful), but others don't.
992      */
993     if (fndsts == RMS$_FNF || fndsts == SS$_NOSUCHOBJECT) fndsts = SS$_NORMAL;
994     if (aclsts & 1) aclsts = fndsts;
995     if (!(aclsts & 1)) {
996       set_errno(EVMSERR);
997       set_vaxc_errno(aclsts);
998       return -1;
999     }
1000
1001     return rmsts;
1002
1003 }  /* end of kill_file() */
1004 /*}}}*/
1005
1006
1007 /*{{{int my_mkdir(char *,Mode_t)*/
1008 int
1009 Perl_my_mkdir(pTHX_ char *dir, Mode_t mode)
1010 {
1011   STRLEN dirlen = strlen(dir);
1012
1013   /* zero length string sometimes gives ACCVIO */
1014   if (dirlen == 0) return -1;
1015
1016   /* CRTL mkdir() doesn't tolerate trailing /, since that implies
1017    * null file name/type.  However, it's commonplace under Unix,
1018    * so we'll allow it for a gain in portability.
1019    */
1020   if (dir[dirlen-1] == '/') {
1021     char *newdir = savepvn(dir,dirlen-1);
1022     int ret = mkdir(newdir,mode);
1023     Safefree(newdir);
1024     return ret;
1025   }
1026   else return mkdir(dir,mode);
1027 }  /* end of my_mkdir */
1028 /*}}}*/
1029
1030 /*{{{int my_chdir(char *)*/
1031 int
1032 Perl_my_chdir(pTHX_ char *dir)
1033 {
1034   STRLEN dirlen = strlen(dir);
1035
1036   /* zero length string sometimes gives ACCVIO */
1037   if (dirlen == 0) return -1;
1038
1039   /* some versions of CRTL chdir() doesn't tolerate trailing /, since
1040    * that implies
1041    * null file name/type.  However, it's commonplace under Unix,
1042    * so we'll allow it for a gain in portability.
1043    */
1044   if (dir[dirlen-1] == '/') {
1045     char *newdir = savepvn(dir,dirlen-1);
1046     int ret = chdir(newdir);
1047     Safefree(newdir);
1048     return ret;
1049   }
1050   else return chdir(dir);
1051 }  /* end of my_chdir */
1052 /*}}}*/
1053
1054
1055 /*{{{FILE *my_tmpfile()*/
1056 FILE *
1057 my_tmpfile(void)
1058 {
1059   FILE *fp;
1060   char *cp;
1061
1062   if ((fp = tmpfile())) return fp;
1063
1064   New(1323,cp,L_tmpnam+24,char);
1065   strcpy(cp,"Sys$Scratch:");
1066   tmpnam(cp+strlen(cp));
1067   strcat(cp,".Perltmp");
1068   fp = fopen(cp,"w+","fop=dlt");
1069   Safefree(cp);
1070   return fp;
1071 }
1072 /*}}}*/
1073
1074
1075 #ifndef HOMEGROWN_POSIX_SIGNALS
1076 /*
1077  * The C RTL's sigaction fails to check for invalid signal numbers so we 
1078  * help it out a bit.  The docs are correct, but the actual routine doesn't
1079  * do what the docs say it will.
1080  */
1081 /*{{{int Perl_my_sigaction (pTHX_ int, const struct sigaction*, struct sigaction*);*/
1082 int
1083 Perl_my_sigaction (pTHX_ int sig, const struct sigaction* act, 
1084                    struct sigaction* oact)
1085 {
1086   if (sig == SIGKILL || sig == SIGSTOP || sig == SIGCONT) {
1087         SETERRNO(EINVAL, SS$_INVARG);
1088         return -1;
1089   }
1090   return sigaction(sig, act, oact);
1091 }
1092 /*}}}*/
1093 #endif
1094
1095 #ifdef KILL_BY_SIGPRC
1096 #include <errnodef.h>
1097
1098 /* We implement our own kill() using the undocumented system service
1099    sys$sigprc for one of two reasons:
1100
1101    1.) If the kill() in an older CRTL uses sys$forcex, causing the
1102    target process to do a sys$exit, which usually can't be handled 
1103    gracefully...certainly not by Perl and the %SIG{} mechanism.
1104
1105    2.) If the kill() in the CRTL can't be called from a signal
1106    handler without disappearing into the ether, i.e., the signal
1107    it purportedly sends is never trapped. Still true as of VMS 7.3.
1108
1109    sys$sigprc has the same parameters as sys$forcex, but throws an exception
1110    in the target process rather than calling sys$exit.
1111
1112    Note that distinguishing SIGSEGV from SIGBUS requires an extra arg
1113    on the ACCVIO condition, which sys$sigprc (and sys$forcex) don't
1114    provide.  On VMS 7.0+ this is taken care of by doing sys$sigprc
1115    with condition codes C$_SIG0+nsig*8, catching the exception on the 
1116    target process and resignaling with appropriate arguments.
1117
1118    But we don't have that VMS 7.0+ exception handler, so if you
1119    Perl_my_kill(.., SIGSEGV) it will show up as a SIGBUS.  Oh well.
1120
1121    Also note that SIGTERM is listed in the docs as being "unimplemented",
1122    yet always seems to be signaled with a VMS condition code of 4 (and
1123    correctly handled for that code).  So we hardwire it in.
1124
1125    Unlike the VMS 7.0+ CRTL kill() function, we actually check the signal
1126    number to see if it's valid.  So Perl_my_kill(pid,0) returns -1 rather
1127    than signalling with an unrecognized (and unhandled by CRTL) code.
1128 */
1129
1130 #define _MY_SIG_MAX 17
1131
1132 unsigned int
1133 Perl_sig_to_vmscondition(int sig)
1134 {
1135     static unsigned int sig_code[_MY_SIG_MAX+1] = 
1136     {
1137         0,                  /*  0 ZERO     */
1138         SS$_HANGUP,         /*  1 SIGHUP   */
1139         SS$_CONTROLC,       /*  2 SIGINT   */
1140         SS$_CONTROLY,       /*  3 SIGQUIT  */
1141         SS$_RADRMOD,        /*  4 SIGILL   */
1142         SS$_BREAK,          /*  5 SIGTRAP  */
1143         SS$_OPCCUS,         /*  6 SIGABRT  */
1144         SS$_COMPAT,         /*  7 SIGEMT   */
1145 #ifdef __VAX                      
1146         SS$_FLTOVF,         /*  8 SIGFPE VAX */
1147 #else                             
1148         SS$_HPARITH,        /*  8 SIGFPE AXP */
1149 #endif                            
1150         SS$_ABORT,          /*  9 SIGKILL  */
1151         SS$_ACCVIO,         /* 10 SIGBUS   */
1152         SS$_ACCVIO,         /* 11 SIGSEGV  */
1153         SS$_BADPARAM,       /* 12 SIGSYS   */
1154         SS$_NOMBX,          /* 13 SIGPIPE  */
1155         SS$_ASTFLT,         /* 14 SIGALRM  */
1156         4,                  /* 15 SIGTERM  */
1157         0,                  /* 16 SIGUSR1  */
1158         0                   /* 17 SIGUSR2  */
1159     };
1160
1161 #if __VMS_VER >= 60200000
1162     static int initted = 0;
1163     if (!initted) {
1164         initted = 1;
1165         sig_code[16] = C$_SIGUSR1;
1166         sig_code[17] = C$_SIGUSR2;
1167     }
1168 #endif
1169
1170     if (sig < _SIG_MIN) return 0;
1171     if (sig > _MY_SIG_MAX) return 0;
1172     return sig_code[sig];
1173 }
1174
1175
1176 int
1177 Perl_my_kill(int pid, int sig)
1178 {
1179     dTHX;
1180     int iss;
1181     unsigned int code;
1182     int sys$sigprc(unsigned int *pidadr,
1183                      struct dsc$descriptor_s *prcname,
1184                      unsigned int code);
1185
1186     code = Perl_sig_to_vmscondition(sig);
1187
1188     if (!pid || !code) {
1189         return -1;
1190     }
1191
1192     iss = sys$sigprc((unsigned int *)&pid,0,code);
1193     if (iss&1) return 0;
1194
1195     switch (iss) {
1196       case SS$_NOPRIV:
1197         set_errno(EPERM);  break;
1198       case SS$_NONEXPR:  
1199       case SS$_NOSUCHNODE:
1200       case SS$_UNREACHABLE:
1201         set_errno(ESRCH);  break;
1202       case SS$_INSFMEM:
1203         set_errno(ENOMEM); break;
1204       default:
1205         _ckvmssts(iss);
1206         set_errno(EVMSERR);
1207     } 
1208     set_vaxc_errno(iss);
1209  
1210     return -1;
1211 }
1212 #endif
1213
1214 /* default piping mailbox size */
1215 #define PERL_BUFSIZ        512
1216
1217
1218 static void
1219 create_mbx(pTHX_ unsigned short int *chan, struct dsc$descriptor_s *namdsc)
1220 {
1221   unsigned long int mbxbufsiz;
1222   static unsigned long int syssize = 0;
1223   unsigned long int dviitm = DVI$_DEVNAM;
1224   char csize[LNM$C_NAMLENGTH+1];
1225   
1226   if (!syssize) {
1227     unsigned long syiitm = SYI$_MAXBUF;
1228     /*
1229      * Get the SYSGEN parameter MAXBUF
1230      *
1231      * If the logical 'PERL_MBX_SIZE' is defined
1232      * use the value of the logical instead of PERL_BUFSIZ, but 
1233      * keep the size between 128 and MAXBUF.
1234      *
1235      */
1236     _ckvmssts(lib$getsyi(&syiitm, &syssize, 0, 0, 0, 0));
1237   }
1238
1239   if (vmstrnenv("PERL_MBX_SIZE", csize, 0, fildev, 0)) {
1240       mbxbufsiz = atoi(csize);
1241   } else {
1242       mbxbufsiz = PERL_BUFSIZ;
1243   }
1244   if (mbxbufsiz < 128) mbxbufsiz = 128;
1245   if (mbxbufsiz > syssize) mbxbufsiz = syssize;
1246
1247   _ckvmssts(sys$crembx(0,chan,mbxbufsiz,mbxbufsiz,0,0,0));
1248
1249   _ckvmssts(lib$getdvi(&dviitm, chan, NULL, NULL, namdsc, &namdsc->dsc$w_length));
1250   namdsc->dsc$a_pointer[namdsc->dsc$w_length] = '\0';
1251
1252 }  /* end of create_mbx() */
1253
1254
1255 /*{{{  my_popen and my_pclose*/
1256
1257 typedef struct _iosb           IOSB;
1258 typedef struct _iosb*         pIOSB;
1259 typedef struct _pipe           Pipe;
1260 typedef struct _pipe*         pPipe;
1261 typedef struct pipe_details    Info;
1262 typedef struct pipe_details*  pInfo;
1263 typedef struct _srqp            RQE;
1264 typedef struct _srqp*          pRQE;
1265 typedef struct _tochildbuf      CBuf;
1266 typedef struct _tochildbuf*    pCBuf;
1267
1268 struct _iosb {
1269     unsigned short status;
1270     unsigned short count;
1271     unsigned long  dvispec;
1272 };
1273
1274 #pragma member_alignment save
1275 #pragma nomember_alignment quadword
1276 struct _srqp {          /* VMS self-relative queue entry */
1277     unsigned long qptr[2];
1278 };
1279 #pragma member_alignment restore
1280 static RQE  RQE_ZERO = {0,0};
1281
1282 struct _tochildbuf {
1283     RQE             q;
1284     int             eof;
1285     unsigned short  size;
1286     char            *buf;
1287 };
1288
1289 struct _pipe {
1290     RQE            free;
1291     RQE            wait;
1292     int            fd_out;
1293     unsigned short chan_in;
1294     unsigned short chan_out;
1295     char          *buf;
1296     unsigned int   bufsize;
1297     IOSB           iosb;
1298     IOSB           iosb2;
1299     int           *pipe_done;
1300     int            retry;
1301     int            type;
1302     int            shut_on_empty;
1303     int            need_wake;
1304     pPipe         *home;
1305     pInfo          info;
1306     pCBuf          curr;
1307     pCBuf          curr2;
1308 #if defined(PERL_IMPLICIT_CONTEXT)
1309     void            *thx;           /* Either a thread or an interpreter */
1310                                     /* pointer, depending on how we're built */
1311 #endif
1312 };
1313
1314
1315 struct pipe_details
1316 {
1317     pInfo           next;
1318     PerlIO *fp;  /* file pointer to pipe mailbox */
1319     int useFILE; /* using stdio, not perlio */
1320     int pid;   /* PID of subprocess */
1321     int mode;  /* == 'r' if pipe open for reading */
1322     int done;  /* subprocess has completed */
1323     int waiting; /* waiting for completion/closure */
1324     int             closing;        /* my_pclose is closing this pipe */
1325     unsigned long   completion;     /* termination status of subprocess */
1326     pPipe           in;             /* pipe in to sub */
1327     pPipe           out;            /* pipe out of sub */
1328     pPipe           err;            /* pipe of sub's sys$error */
1329     int             in_done;        /* true when in pipe finished */
1330     int             out_done;
1331     int             err_done;
1332 };
1333
1334 struct exit_control_block
1335 {
1336     struct exit_control_block *flink;
1337     unsigned long int   (*exit_routine)();
1338     unsigned long int arg_count;
1339     unsigned long int *status_address;
1340     unsigned long int exit_status;
1341 }; 
1342
1343 typedef struct _closed_pipes    Xpipe;
1344 typedef struct _closed_pipes*  pXpipe;
1345
1346 struct _closed_pipes {
1347     int             pid;            /* PID of subprocess */
1348     unsigned long   completion;     /* termination status of subprocess */
1349 };
1350 #define NKEEPCLOSED 50
1351 static Xpipe closed_list[NKEEPCLOSED];
1352 static int   closed_index = 0;
1353 static int   closed_num = 0;
1354
1355 #define RETRY_DELAY     "0 ::0.20"
1356 #define MAX_RETRY              50
1357
1358 static int pipe_ef = 0;          /* first call to safe_popen inits these*/
1359 static unsigned long mypid;
1360 static unsigned long delaytime[2];
1361
1362 static pInfo open_pipes = NULL;
1363 static $DESCRIPTOR(nl_desc, "NL:");
1364
1365 #define PIPE_COMPLETION_WAIT    30  /* seconds, for EOF/FORCEX wait */
1366
1367
1368
1369 static unsigned long int
1370 pipe_exit_routine(pTHX)
1371 {
1372     pInfo info;
1373     unsigned long int retsts = SS$_NORMAL, abort = SS$_TIMEOUT;
1374     int sts, did_stuff, need_eof, j;
1375
1376     /* 
1377         flush any pending i/o
1378     */
1379     info = open_pipes;
1380     while (info) {
1381         if (info->fp) {
1382            if (!info->useFILE) 
1383                PerlIO_flush(info->fp);   /* first, flush data */
1384            else 
1385                fflush((FILE *)info->fp);
1386         }
1387         info = info->next;
1388     }
1389
1390     /* 
1391      next we try sending an EOF...ignore if doesn't work, make sure we
1392      don't hang
1393     */
1394     did_stuff = 0;
1395     info = open_pipes;
1396
1397     while (info) {
1398       int need_eof;
1399       _ckvmssts(sys$setast(0));
1400       if (info->in && !info->in->shut_on_empty) {
1401         _ckvmssts(sys$qio(0,info->in->chan_in,IO$_WRITEOF,0,0,0,
1402                           0, 0, 0, 0, 0, 0));
1403         info->waiting = 1;
1404         did_stuff = 1;
1405       }
1406       _ckvmssts(sys$setast(1));
1407       info = info->next;
1408     }
1409
1410     /* wait for EOF to have effect, up to ~ 30 sec [default] */
1411
1412     for (j = 0; did_stuff && j < PIPE_COMPLETION_WAIT; j++) {
1413         int nwait = 0;
1414
1415         info = open_pipes;
1416         while (info) {
1417           _ckvmssts(sys$setast(0));
1418           if (info->waiting && info->done) 
1419                 info->waiting = 0;
1420           nwait += info->waiting;
1421           _ckvmssts(sys$setast(1));
1422           info = info->next;
1423         }
1424         if (!nwait) break;
1425         sleep(1);  
1426     }
1427
1428     did_stuff = 0;
1429     info = open_pipes;
1430     while (info) {
1431       _ckvmssts(sys$setast(0));
1432       if (!info->done) { /* Tap them gently on the shoulder . . .*/
1433         sts = sys$forcex(&info->pid,0,&abort);
1434         if (!(sts&1) && sts != SS$_NONEXPR) _ckvmssts(sts); 
1435         did_stuff = 1;
1436       }
1437       _ckvmssts(sys$setast(1));
1438       info = info->next;
1439     }
1440
1441     /* again, wait for effect */
1442
1443     for (j = 0; did_stuff && j < PIPE_COMPLETION_WAIT; j++) {
1444         int nwait = 0;
1445
1446         info = open_pipes;
1447         while (info) {
1448           _ckvmssts(sys$setast(0));
1449           if (info->waiting && info->done) 
1450                 info->waiting = 0;
1451           nwait += info->waiting;
1452           _ckvmssts(sys$setast(1));
1453           info = info->next;
1454         }
1455         if (!nwait) break;
1456         sleep(1);  
1457     }
1458
1459     info = open_pipes;
1460     while (info) {
1461       _ckvmssts(sys$setast(0));
1462       if (!info->done) {  /* We tried to be nice . . . */
1463         sts = sys$delprc(&info->pid,0);
1464         if (!(sts&1) && sts != SS$_NONEXPR) _ckvmssts(sts); 
1465       }
1466       _ckvmssts(sys$setast(1));
1467       info = info->next;
1468     }
1469
1470     while(open_pipes) {
1471       if ((sts = my_pclose(open_pipes->fp)) == -1) retsts = vaxc$errno;
1472       else if (!(sts & 1)) retsts = sts;
1473     }
1474     return retsts;
1475 }
1476
1477 static struct exit_control_block pipe_exitblock = 
1478        {(struct exit_control_block *) 0,
1479         pipe_exit_routine, 0, &pipe_exitblock.exit_status, 0};
1480
1481 static void pipe_mbxtofd_ast(pPipe p);
1482 static void pipe_tochild1_ast(pPipe p);
1483 static void pipe_tochild2_ast(pPipe p);
1484
1485 static void
1486 popen_completion_ast(pInfo info)
1487 {
1488   pInfo i = open_pipes;
1489   int iss;
1490   pXpipe x;
1491
1492   info->completion &= 0x0FFFFFFF; /* strip off "control" field */
1493   closed_list[closed_index].pid = info->pid;
1494   closed_list[closed_index].completion = info->completion;
1495   closed_index++;
1496   if (closed_index == NKEEPCLOSED) 
1497     closed_index = 0;
1498   closed_num++;
1499
1500   while (i) {
1501     if (i == info) break;
1502     i = i->next;
1503   }
1504   if (!i) return;       /* unlinked, probably freed too */
1505
1506   info->done = TRUE;
1507
1508 /*
1509     Writing to subprocess ...
1510             if my_pclose'd: EOF already sent, should shutdown chan_in part of pipe
1511
1512             chan_out may be waiting for "done" flag, or hung waiting
1513             for i/o completion to child...cancel the i/o.  This will
1514             put it into "snarf mode" (done but no EOF yet) that discards
1515             input.
1516
1517     Output from subprocess (stdout, stderr) needs to be flushed and
1518     shut down.   We try sending an EOF, but if the mbx is full the pipe
1519     routine should still catch the "shut_on_empty" flag, telling it to
1520     use immediate-style reads so that "mbx empty" -> EOF.
1521
1522
1523 */
1524   if (info->in && !info->in_done) {               /* only for mode=w */
1525         if (info->in->shut_on_empty && info->in->need_wake) {
1526             info->in->need_wake = FALSE;
1527             _ckvmssts_noperl(sys$dclast(pipe_tochild2_ast,info->in,0));
1528         } else {
1529             _ckvmssts_noperl(sys$cancel(info->in->chan_out));
1530         }
1531   }
1532
1533   if (info->out && !info->out_done) {             /* were we also piping output? */
1534       info->out->shut_on_empty = TRUE;
1535       iss = sys$qio(0,info->out->chan_in,IO$_WRITEOF|IO$M_NORSWAIT, 0, 0, 0, 0, 0, 0, 0, 0, 0);
1536       if (iss == SS$_MBFULL) iss = SS$_NORMAL;
1537       _ckvmssts_noperl(iss);
1538   }
1539
1540   if (info->err && !info->err_done) {        /* we were piping stderr */
1541         info->err->shut_on_empty = TRUE;
1542         iss = sys$qio(0,info->err->chan_in,IO$_WRITEOF|IO$M_NORSWAIT, 0, 0, 0, 0, 0, 0, 0, 0, 0);
1543         if (iss == SS$_MBFULL) iss = SS$_NORMAL;
1544         _ckvmssts_noperl(iss);
1545   }
1546   _ckvmssts_noperl(sys$setef(pipe_ef));
1547
1548 }
1549
1550 static unsigned long int setup_cmddsc(pTHX_ char *cmd, int check_img, int *suggest_quote, struct dsc$descriptor_s **pvmscmd);
1551 static void vms_execfree(struct dsc$descriptor_s *vmscmd);
1552
1553 /*
1554     we actually differ from vmstrnenv since we use this to
1555     get the RMS IFI to check if SYS$OUTPUT and SYS$ERROR *really*
1556     are pointing to the same thing
1557 */
1558
1559 static unsigned short
1560 popen_translate(pTHX_ char *logical, char *result)
1561 {
1562     int iss;
1563     $DESCRIPTOR(d_table,"LNM$PROCESS_TABLE");
1564     $DESCRIPTOR(d_log,"");
1565     struct _il3 {
1566         unsigned short length;
1567         unsigned short code;
1568         char *         buffer_addr;
1569         unsigned short *retlenaddr;
1570     } itmlst[2];
1571     unsigned short l, ifi;
1572
1573     d_log.dsc$a_pointer = logical;
1574     d_log.dsc$w_length  = strlen(logical);
1575
1576     itmlst[0].code = LNM$_STRING;
1577     itmlst[0].length = 255;
1578     itmlst[0].buffer_addr = result;
1579     itmlst[0].retlenaddr = &l;
1580
1581     itmlst[1].code = 0;
1582     itmlst[1].length = 0;
1583     itmlst[1].buffer_addr = 0;
1584     itmlst[1].retlenaddr = 0;
1585
1586     iss = sys$trnlnm(0, &d_table, &d_log, 0, itmlst);
1587     if (iss == SS$_NOLOGNAM) {
1588         iss = SS$_NORMAL;
1589         l = 0;
1590     }
1591     if (!(iss&1)) lib$signal(iss);
1592     result[l] = '\0';
1593 /*
1594     logicals for PPFs have a 4 byte prefix  ESC+NUL+(RMS IFI)
1595     strip it off and return the ifi, if any
1596 */
1597     ifi  = 0;
1598     if (result[0] == 0x1b && result[1] == 0x00) {
1599         memcpy(&ifi,result+2,2);
1600         strcpy(result,result+4);
1601     }
1602     return ifi;     /* this is the RMS internal file id */
1603 }
1604
1605 static void pipe_infromchild_ast(pPipe p);
1606
1607 /*
1608     I'm using LIB$(GET|FREE)_VM here so that we can allocate and deallocate
1609     inside an AST routine without worrying about reentrancy and which Perl
1610     memory allocator is being used.
1611
1612     We read data and queue up the buffers, then spit them out one at a
1613     time to the output mailbox when the output mailbox is ready for one.
1614
1615 */
1616 #define INITIAL_TOCHILDQUEUE  2
1617
1618 static pPipe
1619 pipe_tochild_setup(pTHX_ char *rmbx, char *wmbx)
1620 {
1621     pPipe p;
1622     pCBuf b;
1623     char mbx1[64], mbx2[64];
1624     struct dsc$descriptor_s d_mbx1 = {sizeof mbx1, DSC$K_DTYPE_T,
1625                                       DSC$K_CLASS_S, mbx1},
1626                             d_mbx2 = {sizeof mbx2, DSC$K_DTYPE_T,
1627                                       DSC$K_CLASS_S, mbx2};
1628     unsigned int dviitm = DVI$_DEVBUFSIZ;
1629     int j, n;
1630
1631     New(1368, p, 1, Pipe);
1632
1633     create_mbx(aTHX_ &p->chan_in , &d_mbx1);
1634     create_mbx(aTHX_ &p->chan_out, &d_mbx2);
1635     _ckvmssts(lib$getdvi(&dviitm, &p->chan_in, 0, &p->bufsize));
1636
1637     p->buf           = 0;
1638     p->shut_on_empty = FALSE;
1639     p->need_wake     = FALSE;
1640     p->type          = 0;
1641     p->retry         = 0;
1642     p->iosb.status   = SS$_NORMAL;
1643     p->iosb2.status  = SS$_NORMAL;
1644     p->free          = RQE_ZERO;
1645     p->wait          = RQE_ZERO;
1646     p->curr          = 0;
1647     p->curr2         = 0;
1648     p->info          = 0;
1649 #ifdef PERL_IMPLICIT_CONTEXT
1650     p->thx           = aTHX;
1651 #endif
1652
1653     n = sizeof(CBuf) + p->bufsize;
1654
1655     for (j = 0; j < INITIAL_TOCHILDQUEUE; j++) {
1656         _ckvmssts(lib$get_vm(&n, &b));
1657         b->buf = (char *) b + sizeof(CBuf);
1658         _ckvmssts(lib$insqhi(b, &p->free));
1659     }
1660
1661     pipe_tochild2_ast(p);
1662     pipe_tochild1_ast(p);
1663     strcpy(wmbx, mbx1);
1664     strcpy(rmbx, mbx2);
1665     return p;
1666 }
1667
1668 /*  reads the MBX Perl is writing, and queues */
1669
1670 static void
1671 pipe_tochild1_ast(pPipe p)
1672 {
1673     pCBuf b = p->curr;
1674     int iss = p->iosb.status;
1675     int eof = (iss == SS$_ENDOFFILE);
1676 #ifdef PERL_IMPLICIT_CONTEXT
1677     pTHX = p->thx;
1678 #endif
1679
1680     if (p->retry) {
1681         if (eof) {
1682             p->shut_on_empty = TRUE;
1683             b->eof     = TRUE;
1684             _ckvmssts(sys$dassgn(p->chan_in));
1685         } else  {
1686             _ckvmssts(iss);
1687         }
1688
1689         b->eof  = eof;
1690         b->size = p->iosb.count;
1691         _ckvmssts(lib$insqhi(b, &p->wait));
1692         if (p->need_wake) {
1693             p->need_wake = FALSE;
1694             _ckvmssts(sys$dclast(pipe_tochild2_ast,p,0));
1695         }
1696     } else {
1697         p->retry = 1;   /* initial call */
1698     }
1699
1700     if (eof) {                  /* flush the free queue, return when done */
1701         int n = sizeof(CBuf) + p->bufsize;
1702         while (1) {
1703             iss = lib$remqti(&p->free, &b);
1704             if (iss == LIB$_QUEWASEMP) return;
1705             _ckvmssts(iss);
1706             _ckvmssts(lib$free_vm(&n, &b));
1707         }
1708     }
1709
1710     iss = lib$remqti(&p->free, &b);
1711     if (iss == LIB$_QUEWASEMP) {
1712         int n = sizeof(CBuf) + p->bufsize;
1713         _ckvmssts(lib$get_vm(&n, &b));
1714         b->buf = (char *) b + sizeof(CBuf);
1715     } else {
1716        _ckvmssts(iss);
1717     }
1718
1719     p->curr = b;
1720     iss = sys$qio(0,p->chan_in,
1721              IO$_READVBLK|(p->shut_on_empty ? IO$M_NOWAIT : 0),
1722              &p->iosb,
1723              pipe_tochild1_ast, p, b->buf, p->bufsize, 0, 0, 0, 0);
1724     if (iss == SS$_ENDOFFILE && p->shut_on_empty) iss = SS$_NORMAL;
1725     _ckvmssts(iss);
1726 }
1727
1728
1729 /* writes queued buffers to output, waits for each to complete before
1730    doing the next */
1731
1732 static void
1733 pipe_tochild2_ast(pPipe p)
1734 {
1735     pCBuf b = p->curr2;
1736     int iss = p->iosb2.status;
1737     int n = sizeof(CBuf) + p->bufsize;
1738     int done = (p->info && p->info->done) ||
1739               iss == SS$_CANCEL || iss == SS$_ABORT;
1740 #if defined(PERL_IMPLICIT_CONTEXT)
1741     pTHX = p->thx;
1742 #endif
1743
1744     do {
1745         if (p->type) {         /* type=1 has old buffer, dispose */
1746             if (p->shut_on_empty) {
1747                 _ckvmssts(lib$free_vm(&n, &b));
1748             } else {
1749                 _ckvmssts(lib$insqhi(b, &p->free));
1750             }
1751             p->type = 0;
1752         }
1753
1754         iss = lib$remqti(&p->wait, &b);
1755         if (iss == LIB$_QUEWASEMP) {
1756             if (p->shut_on_empty) {
1757                 if (done) {
1758                     _ckvmssts(sys$dassgn(p->chan_out));
1759                     *p->pipe_done = TRUE;
1760                     _ckvmssts(sys$setef(pipe_ef));
1761                 } else {
1762                     _ckvmssts(sys$qio(0,p->chan_out,IO$_WRITEOF,
1763                         &p->iosb2, pipe_tochild2_ast, p, 0, 0, 0, 0, 0, 0));
1764                 }
1765                 return;
1766             }
1767             p->need_wake = TRUE;
1768             return;
1769         }
1770         _ckvmssts(iss);
1771         p->type = 1;
1772     } while (done);
1773
1774
1775     p->curr2 = b;
1776     if (b->eof) {
1777         _ckvmssts(sys$qio(0,p->chan_out,IO$_WRITEOF,
1778             &p->iosb2, pipe_tochild2_ast, p, 0, 0, 0, 0, 0, 0));
1779     } else {
1780         _ckvmssts(sys$qio(0,p->chan_out,IO$_WRITEVBLK,
1781             &p->iosb2, pipe_tochild2_ast, p, b->buf, b->size, 0, 0, 0, 0));
1782     }
1783
1784     return;
1785
1786 }
1787
1788
1789 static pPipe
1790 pipe_infromchild_setup(pTHX_ char *rmbx, char *wmbx)
1791 {
1792     pPipe p;
1793     char mbx1[64], mbx2[64];
1794     struct dsc$descriptor_s d_mbx1 = {sizeof mbx1, DSC$K_DTYPE_T,
1795                                       DSC$K_CLASS_S, mbx1},
1796                             d_mbx2 = {sizeof mbx2, DSC$K_DTYPE_T,
1797                                       DSC$K_CLASS_S, mbx2};
1798     unsigned int dviitm = DVI$_DEVBUFSIZ;
1799
1800     New(1367, p, 1, Pipe);
1801     create_mbx(aTHX_ &p->chan_in , &d_mbx1);
1802     create_mbx(aTHX_ &p->chan_out, &d_mbx2);
1803
1804     _ckvmssts(lib$getdvi(&dviitm, &p->chan_in, 0, &p->bufsize));
1805     New(1367, p->buf, p->bufsize, char);
1806     p->shut_on_empty = FALSE;
1807     p->info   = 0;
1808     p->type   = 0;
1809     p->iosb.status = SS$_NORMAL;
1810 #if defined(PERL_IMPLICIT_CONTEXT)
1811     p->thx = aTHX;
1812 #endif
1813     pipe_infromchild_ast(p);
1814
1815     strcpy(wmbx, mbx1);
1816     strcpy(rmbx, mbx2);
1817     return p;
1818 }
1819
1820 static void
1821 pipe_infromchild_ast(pPipe p)
1822 {
1823     int iss = p->iosb.status;
1824     int eof = (iss == SS$_ENDOFFILE);
1825     int myeof = (eof && (p->iosb.dvispec == mypid || p->iosb.dvispec == 0));
1826     int kideof = (eof && (p->iosb.dvispec == p->info->pid));
1827 #if defined(PERL_IMPLICIT_CONTEXT)
1828     pTHX = p->thx;
1829 #endif
1830
1831     if (p->info && p->info->closing && p->chan_out)  {           /* output shutdown */
1832         _ckvmssts(sys$dassgn(p->chan_out));
1833         p->chan_out = 0;
1834     }
1835
1836     /* read completed:
1837             input shutdown if EOF from self (done or shut_on_empty)
1838             output shutdown if closing flag set (my_pclose)
1839             send data/eof from child or eof from self
1840             otherwise, re-read (snarf of data from child)
1841     */
1842
1843     if (p->type == 1) {
1844         p->type = 0;
1845         if (myeof && p->chan_in) {                  /* input shutdown */
1846             _ckvmssts(sys$dassgn(p->chan_in));
1847             p->chan_in = 0;
1848         }
1849
1850         if (p->chan_out) {
1851             if (myeof || kideof) {      /* pass EOF to parent */
1852                 _ckvmssts(sys$qio(0,p->chan_out,IO$_WRITEOF, &p->iosb,
1853                               pipe_infromchild_ast, p,
1854                               0, 0, 0, 0, 0, 0));
1855                 return;
1856             } else if (eof) {       /* eat EOF --- fall through to read*/
1857
1858             } else {                /* transmit data */
1859                 _ckvmssts(sys$qio(0,p->chan_out,IO$_WRITEVBLK,&p->iosb,
1860                               pipe_infromchild_ast,p,
1861                               p->buf, p->iosb.count, 0, 0, 0, 0));
1862                 return;
1863             }
1864         }
1865     }
1866
1867     /*  everything shut? flag as done */
1868
1869     if (!p->chan_in && !p->chan_out) {
1870         *p->pipe_done = TRUE;
1871         _ckvmssts(sys$setef(pipe_ef));
1872         return;
1873     }
1874
1875     /* write completed (or read, if snarfing from child)
1876             if still have input active,
1877                queue read...immediate mode if shut_on_empty so we get EOF if empty
1878             otherwise,
1879                check if Perl reading, generate EOFs as needed
1880     */
1881
1882     if (p->type == 0) {
1883         p->type = 1;
1884         if (p->chan_in) {
1885             iss = sys$qio(0,p->chan_in,IO$_READVBLK|(p->shut_on_empty ? IO$M_NOW : 0),&p->iosb,
1886                           pipe_infromchild_ast,p,
1887                           p->buf, p->bufsize, 0, 0, 0, 0);
1888             if (p->shut_on_empty && iss == SS$_ENDOFFILE) iss = SS$_NORMAL;
1889             _ckvmssts(iss);
1890         } else {           /* send EOFs for extra reads */
1891             p->iosb.status = SS$_ENDOFFILE;
1892             p->iosb.dvispec = 0;
1893             _ckvmssts(sys$qio(0,p->chan_out,IO$_SETMODE|IO$M_READATTN,
1894                       0, 0, 0,
1895                       pipe_infromchild_ast, p, 0, 0, 0, 0));
1896         }
1897     }
1898 }
1899
1900 static pPipe
1901 pipe_mbxtofd_setup(pTHX_ int fd, char *out)
1902 {
1903     pPipe p;
1904     char mbx[64];
1905     unsigned long dviitm = DVI$_DEVBUFSIZ;
1906     struct stat s;
1907     struct dsc$descriptor_s d_mbx = {sizeof mbx, DSC$K_DTYPE_T,
1908                                       DSC$K_CLASS_S, mbx};
1909
1910     /* things like terminals and mbx's don't need this filter */
1911     if (fd && fstat(fd,&s) == 0) {
1912         unsigned long dviitm = DVI$_DEVCHAR, devchar;
1913         struct dsc$descriptor_s d_dev = {strlen(s.st_dev), DSC$K_DTYPE_T,
1914                                          DSC$K_CLASS_S, s.st_dev};
1915
1916         _ckvmssts(lib$getdvi(&dviitm,0,&d_dev,&devchar,0,0));
1917         if (!(devchar & DEV$M_DIR)) {  /* non directory structured...*/
1918             strcpy(out, s.st_dev);
1919             return 0;
1920         }
1921     }
1922
1923     New(1366, p, 1, Pipe);
1924     p->fd_out = dup(fd);
1925     create_mbx(aTHX_ &p->chan_in, &d_mbx);
1926     _ckvmssts(lib$getdvi(&dviitm, &p->chan_in, 0, &p->bufsize));
1927     New(1366, p->buf, p->bufsize+1, char);
1928     p->shut_on_empty = FALSE;
1929     p->retry = 0;
1930     p->info  = 0;
1931     strcpy(out, mbx);
1932
1933     _ckvmssts(sys$qio(0, p->chan_in, IO$_READVBLK, &p->iosb,
1934                   pipe_mbxtofd_ast, p,
1935                   p->buf, p->bufsize, 0, 0, 0, 0));
1936
1937     return p;
1938 }
1939
1940 static void
1941 pipe_mbxtofd_ast(pPipe p)
1942 {
1943     int iss = p->iosb.status;
1944     int done = p->info->done;
1945     int iss2;
1946     int eof = (iss == SS$_ENDOFFILE);
1947     int myeof = eof && ((p->iosb.dvispec == mypid)||(p->iosb.dvispec == 0));
1948     int err = !(iss&1) && !eof;
1949 #if defined(PERL_IMPLICIT_CONTEXT)
1950     pTHX = p->thx;
1951 #endif
1952
1953     if (done && myeof) {               /* end piping */
1954         close(p->fd_out);
1955         sys$dassgn(p->chan_in);
1956         *p->pipe_done = TRUE;
1957         _ckvmssts(sys$setef(pipe_ef));
1958         return;
1959     }
1960
1961     if (!err && !eof) {             /* good data to send to file */
1962         p->buf[p->iosb.count] = '\n';
1963         iss2 = write(p->fd_out, p->buf, p->iosb.count+1);
1964         if (iss2 < 0) {
1965             p->retry++;
1966             if (p->retry < MAX_RETRY) {
1967                 _ckvmssts(sys$setimr(0,delaytime,pipe_mbxtofd_ast,p));
1968                 return;
1969             }
1970         }
1971         p->retry = 0;
1972     } else if (err) {
1973         _ckvmssts(iss);
1974     }
1975
1976
1977     iss = sys$qio(0, p->chan_in, IO$_READVBLK|(p->shut_on_empty ? IO$M_NOW : 0), &p->iosb,
1978           pipe_mbxtofd_ast, p,
1979           p->buf, p->bufsize, 0, 0, 0, 0);
1980     if (p->shut_on_empty && (iss == SS$_ENDOFFILE)) iss = SS$_NORMAL;
1981     _ckvmssts(iss);
1982 }
1983
1984
1985 typedef struct _pipeloc     PLOC;
1986 typedef struct _pipeloc*   pPLOC;
1987
1988 struct _pipeloc {
1989     pPLOC   next;
1990     char    dir[NAM$C_MAXRSS+1];
1991 };
1992 static pPLOC  head_PLOC = 0;
1993
1994 void
1995 free_pipelocs(pTHX_ void *head)
1996 {
1997     pPLOC p, pnext;
1998     pPLOC *pHead = (pPLOC *)head;
1999
2000     p = *pHead;
2001     while (p) {
2002         pnext = p->next;
2003         Safefree(p);
2004         p = pnext;
2005     }
2006     *pHead = 0;
2007 }
2008
2009 static void
2010 store_pipelocs(pTHX)
2011 {
2012     int    i;
2013     pPLOC  p;
2014     AV    *av = 0;
2015     SV    *dirsv;
2016     GV    *gv;
2017     char  *dir, *x;
2018     char  *unixdir;
2019     char  temp[NAM$C_MAXRSS+1];
2020     STRLEN n_a;
2021
2022     if (head_PLOC)  
2023         free_pipelocs(aTHX_ &head_PLOC);
2024
2025 /*  the . directory from @INC comes last */
2026
2027     New(1370,p,1,PLOC);
2028     p->next = head_PLOC;
2029     head_PLOC = p;
2030     strcpy(p->dir,"./");
2031
2032 /*  get the directory from $^X */
2033
2034 #ifdef PERL_IMPLICIT_CONTEXT
2035     if (aTHX && PL_origargv && PL_origargv[0]) {    /* maybe nul if embedded Perl */
2036 #else
2037     if (PL_origargv && PL_origargv[0]) {    /* maybe nul if embedded Perl */
2038 #endif
2039         strcpy(temp, PL_origargv[0]);
2040         x = strrchr(temp,']');
2041         if (x) x[1] = '\0';
2042
2043         if ((unixdir = tounixpath(temp, Nullch)) != Nullch) {
2044             New(1370,p,1,PLOC);
2045             p->next = head_PLOC;
2046             head_PLOC = p;
2047             strncpy(p->dir,unixdir,sizeof(p->dir)-1);
2048             p->dir[NAM$C_MAXRSS] = '\0';
2049         }
2050     }
2051
2052 /*  reverse order of @INC entries, skip "." since entered above */
2053
2054 #ifdef PERL_IMPLICIT_CONTEXT
2055     if (aTHX)
2056 #endif
2057     if (PL_incgv) av = GvAVn(PL_incgv);
2058
2059     for (i = 0; av && i <= AvFILL(av); i++) {
2060         dirsv = *av_fetch(av,i,TRUE);
2061
2062         if (SvROK(dirsv)) continue;
2063         dir = SvPVx(dirsv,n_a);
2064         if (strcmp(dir,".") == 0) continue;
2065         if ((unixdir = tounixpath(dir, Nullch)) == Nullch)
2066             continue;
2067
2068         New(1370,p,1,PLOC);
2069         p->next = head_PLOC;
2070         head_PLOC = p;
2071         strncpy(p->dir,unixdir,sizeof(p->dir)-1);
2072         p->dir[NAM$C_MAXRSS] = '\0';
2073     }
2074
2075 /* most likely spot (ARCHLIB) put first in the list */
2076
2077 #ifdef ARCHLIB_EXP
2078     if ((unixdir = tounixpath(ARCHLIB_EXP, Nullch)) != Nullch) {
2079         New(1370,p,1,PLOC);
2080         p->next = head_PLOC;
2081         head_PLOC = p;
2082         strncpy(p->dir,unixdir,sizeof(p->dir)-1);
2083         p->dir[NAM$C_MAXRSS] = '\0';
2084     }
2085 #endif
2086 }
2087
2088
2089 static char *
2090 find_vmspipe(pTHX)
2091 {
2092     static int   vmspipe_file_status = 0;
2093     static char  vmspipe_file[NAM$C_MAXRSS+1];
2094
2095     /* already found? Check and use ... need read+execute permission */
2096
2097     if (vmspipe_file_status == 1) {
2098         if (cando_by_name(S_IRUSR, 0, vmspipe_file)
2099          && cando_by_name(S_IXUSR, 0, vmspipe_file)) {
2100             return vmspipe_file;
2101         }
2102         vmspipe_file_status = 0;
2103     }
2104
2105     /* scan through stored @INC, $^X */
2106
2107     if (vmspipe_file_status == 0) {
2108         char file[NAM$C_MAXRSS+1];
2109         pPLOC  p = head_PLOC;
2110
2111         while (p) {
2112             strcpy(file, p->dir);
2113             strncat(file, "vmspipe.com",NAM$C_MAXRSS);
2114             file[NAM$C_MAXRSS] = '\0';
2115             p = p->next;
2116
2117             if (!do_tovmsspec(file,vmspipe_file,0)) continue;
2118
2119             if (cando_by_name(S_IRUSR, 0, vmspipe_file)
2120              && cando_by_name(S_IXUSR, 0, vmspipe_file)) {
2121                 vmspipe_file_status = 1;
2122                 return vmspipe_file;
2123             }
2124         }
2125         vmspipe_file_status = -1;   /* failed, use tempfiles */
2126     }
2127
2128     return 0;
2129 }
2130
2131 static FILE *
2132 vmspipe_tempfile(pTHX)
2133 {
2134     char file[NAM$C_MAXRSS+1];
2135     FILE *fp;
2136     static int index = 0;
2137     stat_t s0, s1;
2138
2139     /* create a tempfile */
2140
2141     /* we can't go from   W, shr=get to  R, shr=get without
2142        an intermediate vulnerable state, so don't bother trying...
2143
2144        and lib$spawn doesn't shr=put, so have to close the write
2145
2146        So... match up the creation date/time and the FID to
2147        make sure we're dealing with the same file
2148
2149     */
2150
2151     index++;
2152     sprintf(file,"sys$scratch:perlpipe_%08.8x_%d.com",mypid,index);
2153     fp = fopen(file,"w");
2154     if (!fp) {
2155         sprintf(file,"sys$login:perlpipe_%08.8x_%d.com",mypid,index);
2156         fp = fopen(file,"w");
2157         if (!fp) {
2158             sprintf(file,"sys$disk:[]perlpipe_%08.8x_%d.com",mypid,index);
2159             fp = fopen(file,"w");
2160         }
2161     }
2162     if (!fp) return 0;  /* we're hosed */
2163
2164     fprintf(fp,"$! 'f$verify(0)\n");
2165     fprintf(fp,"$!  ---  protect against nonstandard definitions ---\n");
2166     fprintf(fp,"$ perl_cfile  = f$environment(\"procedure\")\n");
2167     fprintf(fp,"$ perl_define = \"define/nolog\"\n");
2168     fprintf(fp,"$ perl_on     = \"set noon\"\n");
2169     fprintf(fp,"$ perl_exit   = \"exit\"\n");
2170     fprintf(fp,"$ perl_del    = \"delete\"\n");
2171     fprintf(fp,"$ pif         = \"if\"\n");
2172     fprintf(fp,"$!  --- define i/o redirection (sys$output set by lib$spawn)\n");
2173     fprintf(fp,"$ pif perl_popen_in  .nes. \"\" then perl_define/user/name_attributes=confine sys$input  'perl_popen_in'\n");
2174     fprintf(fp,"$ pif perl_popen_err .nes. \"\" then perl_define/user/name_attributes=confine sys$error  'perl_popen_err'\n");
2175     fprintf(fp,"$ pif perl_popen_out .nes. \"\" then perl_define      sys$output 'perl_popen_out'\n");
2176     fprintf(fp,"$!  --- build command line to get max possible length\n");
2177     fprintf(fp,"$c=perl_popen_cmd0\n"); 
2178     fprintf(fp,"$c=c+perl_popen_cmd1\n"); 
2179     fprintf(fp,"$c=c+perl_popen_cmd2\n"); 
2180     fprintf(fp,"$x=perl_popen_cmd3\n"); 
2181     fprintf(fp,"$c=c+x\n"); 
2182     fprintf(fp,"$!  --- get rid of global symbols\n");
2183     fprintf(fp,"$ perl_del/symbol/global perl_popen_in\n");
2184     fprintf(fp,"$ perl_del/symbol/global perl_popen_err\n");
2185     fprintf(fp,"$ perl_del/symbol/global perl_popen_out\n");
2186     fprintf(fp,"$ perl_del/symbol/global perl_popen_cmd0\n");
2187     fprintf(fp,"$ perl_del/symbol/global perl_popen_cmd1\n");
2188     fprintf(fp,"$ perl_del/symbol/global perl_popen_cmd2\n");
2189     fprintf(fp,"$ perl_del/symbol/global perl_popen_cmd3\n");
2190     fprintf(fp,"$ perl_on\n");
2191     fprintf(fp,"$ 'c\n");
2192     fprintf(fp,"$ perl_status = $STATUS\n");
2193     fprintf(fp,"$ perl_del  'perl_cfile'\n");
2194     fprintf(fp,"$ perl_exit 'perl_status'\n");
2195     fsync(fileno(fp));
2196
2197     fgetname(fp, file, 1);
2198     fstat(fileno(fp), &s0);
2199     fclose(fp);
2200
2201     fp = fopen(file,"r","shr=get");
2202     if (!fp) return 0;
2203     fstat(fileno(fp), &s1);
2204
2205     if (s0.st_ino[0] != s1.st_ino[0] ||
2206         s0.st_ino[1] != s1.st_ino[1] ||
2207         s0.st_ino[2] != s1.st_ino[2] ||
2208         s0.st_ctime  != s1.st_ctime  )  {
2209         fclose(fp);
2210         return 0;
2211     }
2212
2213     return fp;
2214 }
2215
2216
2217
2218 static PerlIO *
2219 safe_popen(pTHX_ char *cmd, char *in_mode, int *psts)
2220 {
2221     static int handler_set_up = FALSE;
2222     unsigned long int sts, flags = CLI$M_NOWAIT;
2223     unsigned int table = LIB$K_CLI_GLOBAL_SYM;
2224     int j, wait = 0;
2225     char *p, mode[10], symbol[MAX_DCL_SYMBOL+1], *vmspipe;
2226     char in[512], out[512], err[512], mbx[512];
2227     FILE *tpipe = 0;
2228     char tfilebuf[NAM$C_MAXRSS+1];
2229     pInfo info;
2230     char cmd_sym_name[20];
2231     struct dsc$descriptor_s d_symbol= {0, DSC$K_DTYPE_T,
2232                                       DSC$K_CLASS_S, symbol};
2233     struct dsc$descriptor_s vmspipedsc = {0, DSC$K_DTYPE_T,
2234                                       DSC$K_CLASS_S, 0};
2235     struct dsc$descriptor_s d_sym_cmd = {0, DSC$K_DTYPE_T,
2236                                       DSC$K_CLASS_S, cmd_sym_name};
2237     struct dsc$descriptor_s *vmscmd;
2238     $DESCRIPTOR(d_sym_in ,"PERL_POPEN_IN");
2239     $DESCRIPTOR(d_sym_out,"PERL_POPEN_OUT");
2240     $DESCRIPTOR(d_sym_err,"PERL_POPEN_ERR");
2241                             
2242     if (!head_PLOC) store_pipelocs(aTHX);   /* at least TRY to use a static vmspipe file */
2243
2244     /* once-per-program initialization...
2245        note that the SETAST calls and the dual test of pipe_ef
2246        makes sure that only the FIRST thread through here does
2247        the initialization...all other threads wait until it's
2248        done.
2249
2250        Yeah, uglier than a pthread call, it's got all the stuff inline
2251        rather than in a separate routine.
2252     */
2253
2254     if (!pipe_ef) {
2255         _ckvmssts(sys$setast(0));
2256         if (!pipe_ef) {
2257             unsigned long int pidcode = JPI$_PID;
2258             $DESCRIPTOR(d_delay, RETRY_DELAY);
2259             _ckvmssts(lib$get_ef(&pipe_ef));
2260             _ckvmssts(lib$getjpi(&pidcode,0,0,&mypid,0,0));
2261             _ckvmssts(sys$bintim(&d_delay, delaytime));
2262         }
2263         if (!handler_set_up) {
2264           _ckvmssts(sys$dclexh(&pipe_exitblock));
2265           handler_set_up = TRUE;
2266         }
2267         _ckvmssts(sys$setast(1));
2268     }
2269
2270     /* see if we can find a VMSPIPE.COM */
2271
2272     tfilebuf[0] = '@';
2273     vmspipe = find_vmspipe(aTHX);
2274     if (vmspipe) {
2275         strcpy(tfilebuf+1,vmspipe);
2276     } else {        /* uh, oh...we're in tempfile hell */
2277         tpipe = vmspipe_tempfile(aTHX);
2278         if (!tpipe) {       /* a fish popular in Boston */
2279             if (ckWARN(WARN_PIPE)) {
2280                 Perl_warner(aTHX_ packWARN(WARN_PIPE),"unable to find VMSPIPE.COM for i/o piping");
2281             }
2282         return Nullfp;
2283         }
2284         fgetname(tpipe,tfilebuf+1,1);
2285     }
2286     vmspipedsc.dsc$a_pointer = tfilebuf;
2287     vmspipedsc.dsc$w_length  = strlen(tfilebuf);
2288
2289     sts = setup_cmddsc(aTHX_ cmd,0,0,&vmscmd);
2290     if (!(sts & 1)) { 
2291       switch (sts) {
2292         case RMS$_FNF:  case RMS$_DNF:
2293           set_errno(ENOENT); break;
2294         case RMS$_DIR:
2295           set_errno(ENOTDIR); break;
2296         case RMS$_DEV:
2297           set_errno(ENODEV); break;
2298         case RMS$_PRV:
2299           set_errno(EACCES); break;
2300         case RMS$_SYN:
2301           set_errno(EINVAL); break;
2302         case CLI$_BUFOVF: case RMS$_RTB: case CLI$_TKNOVF: case CLI$_RSLOVF:
2303           set_errno(E2BIG); break;
2304         case LIB$_INVARG: case LIB$_INVSTRDES: case SS$_ACCVIO: /* shouldn't happen */
2305           _ckvmssts(sts); /* fall through */
2306         default:  /* SS$_DUPLNAM, SS$_CLI, resource exhaustion, etc. */
2307           set_errno(EVMSERR); 
2308       }
2309       set_vaxc_errno(sts);
2310       if (*mode != 'n' && ckWARN(WARN_PIPE)) {
2311         Perl_warner(aTHX_ packWARN(WARN_PIPE),"Can't pipe \"%*s\": %s", strlen(cmd), cmd, Strerror(errno));
2312       }
2313       *psts = sts;
2314       return Nullfp; 
2315     }
2316     New(1301,info,1,Info);
2317         
2318     strcpy(mode,in_mode);
2319     info->mode = *mode;
2320     info->done = FALSE;
2321     info->completion = 0;
2322     info->closing    = FALSE;
2323     info->in         = 0;
2324     info->out        = 0;
2325     info->err        = 0;
2326     info->fp         = Nullfp;
2327     info->useFILE    = 0;
2328     info->waiting    = 0;
2329     info->in_done    = TRUE;
2330     info->out_done   = TRUE;
2331     info->err_done   = TRUE;
2332     in[0] = out[0] = err[0] = '\0';
2333
2334     if ((p = strchr(mode,'F')) != NULL) {   /* F -> use FILE* */
2335         info->useFILE = 1;
2336         strcpy(p,p+1);
2337     }
2338     if ((p = strchr(mode,'W')) != NULL) {   /* W -> wait for completion */
2339         wait = 1;
2340         strcpy(p,p+1);
2341     }
2342
2343     if (*mode == 'r') {             /* piping from subroutine */
2344
2345         info->out = pipe_infromchild_setup(aTHX_ mbx,out);
2346         if (info->out) {
2347             info->out->pipe_done = &info->out_done;
2348             info->out_done = FALSE;
2349             info->out->info = info;
2350         }
2351         if (!info->useFILE) {
2352         info->fp  = PerlIO_open(mbx, mode);
2353         } else {
2354             info->fp = (PerlIO *) freopen(mbx, mode, stdin);
2355             Perl_vmssetuserlnm(aTHX_ "SYS$INPUT",mbx);
2356         }
2357
2358         if (!info->fp && info->out) {
2359             sys$cancel(info->out->chan_out);
2360         
2361             while (!info->out_done) {
2362                 int done;
2363                 _ckvmssts(sys$setast(0));
2364                 done = info->out_done;
2365                 if (!done) _ckvmssts(sys$clref(pipe_ef));
2366                 _ckvmssts(sys$setast(1));
2367                 if (!done) _ckvmssts(sys$waitfr(pipe_ef));
2368             }
2369
2370             if (info->out->buf) Safefree(info->out->buf);
2371             Safefree(info->out);
2372             Safefree(info);
2373             *psts = RMS$_FNF;
2374             return Nullfp;
2375         }
2376
2377         info->err = pipe_mbxtofd_setup(aTHX_ fileno(stderr), err);
2378         if (info->err) {
2379             info->err->pipe_done = &info->err_done;
2380             info->err_done = FALSE;
2381             info->err->info = info;
2382         }
2383
2384     } else if (*mode == 'w') {      /* piping to subroutine */
2385
2386         info->out = pipe_mbxtofd_setup(aTHX_ fileno(stdout), out);
2387         if (info->out) {
2388             info->out->pipe_done = &info->out_done;
2389             info->out_done = FALSE;
2390             info->out->info = info;
2391         }
2392
2393         info->err = pipe_mbxtofd_setup(aTHX_ fileno(stderr), err);
2394         if (info->err) {
2395             info->err->pipe_done = &info->err_done;
2396             info->err_done = FALSE;
2397             info->err->info = info;
2398         }
2399
2400         info->in = pipe_tochild_setup(aTHX_ in,mbx);
2401         if (!info->useFILE) {
2402         info->fp  = PerlIO_open(mbx, mode);
2403         } else {
2404             info->fp = (PerlIO *) freopen(mbx, mode, stdout);
2405             Perl_vmssetuserlnm(aTHX_ "SYS$OUTPUT",mbx);
2406         }
2407
2408         if (info->in) {
2409             info->in->pipe_done = &info->in_done;
2410             info->in_done = FALSE;
2411             info->in->info = info;
2412         }
2413
2414         /* error cleanup */
2415         if (!info->fp && info->in) {
2416             info->done = TRUE;
2417             _ckvmssts(sys$qiow(0,info->in->chan_in, IO$_WRITEOF, 0,
2418                               0, 0, 0, 0, 0, 0, 0, 0));
2419
2420             while (!info->in_done) {
2421                 int done;
2422                 _ckvmssts(sys$setast(0));
2423                 done = info->in_done;
2424                 if (!done) _ckvmssts(sys$clref(pipe_ef));
2425                 _ckvmssts(sys$setast(1));
2426                 if (!done) _ckvmssts(sys$waitfr(pipe_ef));
2427             }
2428
2429             if (info->in->buf) Safefree(info->in->buf);
2430             Safefree(info->in);
2431             Safefree(info);
2432             *psts = RMS$_FNF;
2433             return Nullfp;
2434         }
2435         
2436
2437     } else if (*mode == 'n') {       /* separate subprocess, no Perl i/o */
2438         info->out = pipe_mbxtofd_setup(aTHX_ fileno(stdout), out);
2439         if (info->out) {
2440             info->out->pipe_done = &info->out_done;
2441             info->out_done = FALSE;
2442             info->out->info = info;
2443         }
2444
2445         info->err = pipe_mbxtofd_setup(aTHX_ fileno(stderr), err);
2446         if (info->err) {
2447             info->err->pipe_done = &info->err_done;
2448             info->err_done = FALSE;
2449             info->err->info = info;
2450         }
2451     }
2452
2453     symbol[MAX_DCL_SYMBOL] = '\0';
2454
2455     strncpy(symbol, in, MAX_DCL_SYMBOL);
2456     d_symbol.dsc$w_length = strlen(symbol);
2457     _ckvmssts(lib$set_symbol(&d_sym_in, &d_symbol, &table));
2458
2459     strncpy(symbol, err, MAX_DCL_SYMBOL);
2460     d_symbol.dsc$w_length = strlen(symbol);
2461     _ckvmssts(lib$set_symbol(&d_sym_err, &d_symbol, &table));
2462
2463     strncpy(symbol, out, MAX_DCL_SYMBOL);
2464     d_symbol.dsc$w_length = strlen(symbol);
2465     _ckvmssts(lib$set_symbol(&d_sym_out, &d_symbol, &table));
2466
2467     p = vmscmd->dsc$a_pointer;
2468     while (*p && *p != '\n') p++;
2469     *p = '\0';                                  /* truncate on \n */
2470     p = vmscmd->dsc$a_pointer;
2471     while (*p == ' ' || *p == '\t') p++;        /* remove leading whitespace */
2472     if (*p == '$') p++;                         /* remove leading $ */
2473     while (*p == ' ' || *p == '\t') p++;
2474
2475     for (j = 0; j < 4; j++) {
2476         sprintf(cmd_sym_name,"PERL_POPEN_CMD%d",j);
2477         d_sym_cmd.dsc$w_length = strlen(cmd_sym_name);
2478
2479     strncpy(symbol, p, MAX_DCL_SYMBOL);
2480     d_symbol.dsc$w_length = strlen(symbol);
2481     _ckvmssts(lib$set_symbol(&d_sym_cmd, &d_symbol, &table));
2482
2483         if (strlen(p) > MAX_DCL_SYMBOL) {
2484             p += MAX_DCL_SYMBOL;
2485         } else {
2486             p += strlen(p);
2487         }
2488     }
2489     _ckvmssts(sys$setast(0));
2490     info->next=open_pipes;  /* prepend to list */
2491     open_pipes=info;
2492     _ckvmssts(sys$setast(1));
2493     /* Omit arg 2 (input file) so the child will get the parent's SYS$INPUT
2494      * and SYS$COMMAND.  vmspipe.com will redefine SYS$INPUT, but we'll still
2495      * have SYS$COMMAND if we need it.
2496      */
2497     _ckvmssts(lib$spawn(&vmspipedsc, 0, &nl_desc, &flags,
2498                       0, &info->pid, &info->completion,
2499                       0, popen_completion_ast,info,0,0,0));
2500
2501     /* if we were using a tempfile, close it now */
2502
2503     if (tpipe) fclose(tpipe);
2504
2505     /* once the subprocess is spawned, it has copied the symbols and
2506        we can get rid of ours */
2507
2508     for (j = 0; j < 4; j++) {
2509         sprintf(cmd_sym_name,"PERL_POPEN_CMD%d",j);
2510         d_sym_cmd.dsc$w_length = strlen(cmd_sym_name);
2511     _ckvmssts(lib$delete_symbol(&d_sym_cmd, &table));
2512     }
2513     _ckvmssts(lib$delete_symbol(&d_sym_in,  &table));
2514     _ckvmssts(lib$delete_symbol(&d_sym_err, &table));
2515     _ckvmssts(lib$delete_symbol(&d_sym_out, &table));
2516     vms_execfree(vmscmd);
2517         
2518 #ifdef PERL_IMPLICIT_CONTEXT
2519     if (aTHX) 
2520 #endif
2521     PL_forkprocess = info->pid;
2522
2523     if (wait) {
2524          int done = 0;
2525          while (!done) {
2526              _ckvmssts(sys$setast(0));
2527              done = info->done;
2528              if (!done) _ckvmssts(sys$clref(pipe_ef));
2529              _ckvmssts(sys$setast(1));
2530              if (!done) _ckvmssts(sys$waitfr(pipe_ef));
2531          }
2532         *psts = info->completion;
2533         my_pclose(info->fp);
2534     } else { 
2535         *psts = SS$_NORMAL;
2536     }
2537     return info->fp;
2538 }  /* end of safe_popen */
2539
2540
2541 /*{{{  PerlIO *my_popen(char *cmd, char *mode)*/
2542 PerlIO *
2543 Perl_my_popen(pTHX_ char *cmd, char *mode)
2544 {
2545     int sts;
2546     TAINT_ENV();
2547     TAINT_PROPER("popen");
2548     PERL_FLUSHALL_FOR_CHILD;
2549     return safe_popen(aTHX_ cmd,mode,&sts);
2550 }
2551
2552 /*}}}*/
2553
2554 /*{{{  I32 my_pclose(PerlIO *fp)*/
2555 I32 Perl_my_pclose(pTHX_ PerlIO *fp)
2556 {
2557     pInfo info, last = NULL;
2558     unsigned long int retsts;
2559     int done, iss;
2560     
2561     for (info = open_pipes; info != NULL; last = info, info = info->next)
2562         if (info->fp == fp) break;
2563
2564     if (info == NULL) {  /* no such pipe open */
2565       set_errno(ECHILD); /* quoth POSIX */
2566       set_vaxc_errno(SS$_NONEXPR);
2567       return -1;
2568     }
2569
2570     /* If we were writing to a subprocess, insure that someone reading from
2571      * the mailbox gets an EOF.  It looks like a simple fclose() doesn't
2572      * produce an EOF record in the mailbox.
2573      *
2574      *  well, at least sometimes it *does*, so we have to watch out for
2575      *  the first EOF closing the pipe (and DASSGN'ing the channel)...
2576      */
2577      if (info->fp) {
2578         if (!info->useFILE) 
2579      PerlIO_flush(info->fp);   /* first, flush data */
2580         else 
2581             fflush((FILE *)info->fp);
2582     }
2583
2584     _ckvmssts(sys$setast(0));
2585      info->closing = TRUE;
2586      done = info->done && info->in_done && info->out_done && info->err_done;
2587      /* hanging on write to Perl's input? cancel it */
2588      if (info->mode == 'r' && info->out && !info->out_done) {
2589         if (info->out->chan_out) {
2590             _ckvmssts(sys$cancel(info->out->chan_out));
2591             if (!info->out->chan_in) {   /* EOF generation, need AST */
2592                 _ckvmssts(sys$dclast(pipe_infromchild_ast,info->out,0));
2593             }
2594         }
2595      }
2596      if (info->in && !info->in_done && !info->in->shut_on_empty)  /* EOF if hasn't had one yet */
2597          _ckvmssts(sys$qio(0,info->in->chan_in,IO$_WRITEOF,0,0,0,
2598                            0, 0, 0, 0, 0, 0));
2599     _ckvmssts(sys$setast(1));
2600     if (info->fp) {
2601      if (!info->useFILE) 
2602     PerlIO_close(info->fp);
2603      else 
2604         fclose((FILE *)info->fp);
2605     }
2606      /*
2607         we have to wait until subprocess completes, but ALSO wait until all
2608         the i/o completes...otherwise we'll be freeing the "info" structure
2609         that the i/o ASTs could still be using...
2610      */
2611
2612      while (!done) {
2613          _ckvmssts(sys$setast(0));
2614          done = info->done && info->in_done && info->out_done && info->err_done;
2615          if (!done) _ckvmssts(sys$clref(pipe_ef));
2616          _ckvmssts(sys$setast(1));
2617          if (!done) _ckvmssts(sys$waitfr(pipe_ef));
2618      }
2619      retsts = info->completion;
2620
2621     /* remove from list of open pipes */
2622     _ckvmssts(sys$setast(0));
2623     if (last) last->next = info->next;
2624     else open_pipes = info->next;
2625     _ckvmssts(sys$setast(1));
2626
2627     /* free buffers and structures */
2628
2629     if (info->in) {
2630         if (info->in->buf) Safefree(info->in->buf);
2631         Safefree(info->in);
2632     }
2633     if (info->out) {
2634         if (info->out->buf) Safefree(info->out->buf);
2635         Safefree(info->out);
2636     }
2637     if (info->err) {
2638         if (info->err->buf) Safefree(info->err->buf);
2639         Safefree(info->err);
2640     }
2641     Safefree(info);
2642
2643     return retsts;
2644
2645 }  /* end of my_pclose() */
2646
2647 #if defined(__CRTL_VER) && __CRTL_VER >= 70100322
2648   /* Roll our own prototype because we want this regardless of whether
2649    * _VMS_WAIT is defined.
2650    */
2651   __pid_t __vms_waitpid( __pid_t __pid, int *__stat_loc, int __options );
2652 #endif
2653 /* sort-of waitpid; special handling of pipe clean-up for subprocesses 
2654    created with popen(); otherwise partially emulate waitpid() unless 
2655    we have a suitable one from the CRTL that came with VMS 7.2 and later.
2656    Also check processes not considered by the CRTL waitpid().
2657  */
2658 /*{{{Pid_t my_waitpid(Pid_t pid, int *statusp, int flags)*/
2659 Pid_t
2660 Perl_my_waitpid(pTHX_ Pid_t pid, int *statusp, int flags)
2661 {
2662     pInfo info;
2663     int done;
2664     int sts;
2665     int j;
2666     
2667     if (statusp) *statusp = 0;
2668     
2669     for (info = open_pipes; info != NULL; info = info->next)
2670         if (info->pid == pid) break;
2671
2672     if (info != NULL) {  /* we know about this child */
2673       while (!info->done) {
2674           _ckvmssts(sys$setast(0));
2675           done = info->done;
2676           if (!done) _ckvmssts(sys$clref(pipe_ef));
2677           _ckvmssts(sys$setast(1));
2678           if (!done) _ckvmssts(sys$waitfr(pipe_ef));
2679       }
2680
2681       if (statusp) *statusp = info->completion;
2682       return pid;
2683     }
2684
2685     /* child that already terminated? */
2686
2687     for (j = 0; j < NKEEPCLOSED && j < closed_num; j++) {
2688         if (closed_list[j].pid == pid) {
2689             if (statusp) *statusp = closed_list[j].completion;
2690             return pid;
2691         }
2692     }
2693
2694     /* fall through if this child is not one of our own pipe children */
2695
2696 #if defined(__CRTL_VER) && __CRTL_VER >= 70100322
2697
2698       /* waitpid() became available in the CRTL as of VMS 7.0, but only
2699        * in 7.2 did we get a version that fills in the VMS completion
2700        * status as Perl has always tried to do.
2701        */
2702
2703       sts = __vms_waitpid( pid, statusp, flags );
2704
2705       if ( sts == 0 || !(sts == -1 && errno == ECHILD) ) 
2706          return sts;
2707
2708       /* If the real waitpid tells us the child does not exist, we 
2709        * fall through here to implement waiting for a child that 
2710        * was created by some means other than exec() (say, spawned
2711        * from DCL) or to wait for a process that is not a subprocess 
2712        * of the current process.
2713        */
2714
2715 #endif /* defined(__CRTL_VER) && __CRTL_VER >= 70100322 */
2716
2717       $DESCRIPTOR(intdsc,"0 00:00:01");
2718       unsigned long int ownercode = JPI$_OWNER, ownerpid;
2719       unsigned long int pidcode = JPI$_PID, mypid;
2720       unsigned long int interval[2];
2721       unsigned int jpi_iosb[2];
2722       struct itmlst_3 jpilist[2] = { 
2723           {sizeof(ownerpid),        JPI$_OWNER, &ownerpid,        0},
2724           {                      0,         0,                 0, 0} 
2725       };
2726
2727       if (pid <= 0) {
2728         /* Sorry folks, we don't presently implement rooting around for 
2729            the first child we can find, and we definitely don't want to
2730            pass a pid of -1 to $getjpi, where it is a wildcard operation.
2731          */
2732         set_errno(ENOTSUP); 
2733         return -1;
2734       }
2735
2736       /* Get the owner of the child so I can warn if it's not mine. If the 
2737        * process doesn't exist or I don't have the privs to look at it, 
2738        * I can go home early.
2739        */
2740       sts = sys$getjpiw(0,&pid,NULL,&jpilist,&jpi_iosb,NULL,NULL);
2741       if (sts & 1) sts = jpi_iosb[0];
2742       if (!(sts & 1)) {
2743         switch (sts) {
2744             case SS$_NONEXPR:
2745                 set_errno(ECHILD);
2746                 break;
2747             case SS$_NOPRIV:
2748                 set_errno(EACCES);
2749                 break;
2750             default:
2751                 _ckvmssts(sts);
2752         }
2753         set_vaxc_errno(sts);
2754         return -1;
2755       }
2756
2757       if (ckWARN(WARN_EXEC)) {
2758         /* remind folks they are asking for non-standard waitpid behavior */
2759         _ckvmssts(lib$getjpi(&pidcode,0,0,&mypid,0,0));
2760         if (ownerpid != mypid)
2761           Perl_warner(aTHX_ packWARN(WARN_EXEC),
2762                       "waitpid: process %x is not a child of process %x",
2763                       pid,mypid);
2764       }
2765
2766       /* simply check on it once a second until it's not there anymore. */
2767
2768       _ckvmssts(sys$bintim(&intdsc,interval));
2769       while ((sts=lib$getjpi(&ownercode,&pid,0,&ownerpid,0,0)) & 1) {
2770             _ckvmssts(sys$schdwk(0,0,interval,0));
2771             _ckvmssts(sys$hiber());
2772       }
2773       if (sts == SS$_NONEXPR) sts = SS$_NORMAL;
2774
2775       _ckvmssts(sts);
2776       return pid;
2777
2778 }  /* end of waitpid() */
2779 /*}}}*/
2780 /*}}}*/
2781 /*}}}*/
2782
2783 /*{{{ char *my_gconvert(double val, int ndig, int trail, char *buf) */
2784 char *
2785 my_gconvert(double val, int ndig, int trail, char *buf)
2786 {
2787   static char __gcvtbuf[DBL_DIG+1];
2788   char *loc;
2789
2790   loc = buf ? buf : __gcvtbuf;
2791
2792 #ifndef __DECC  /* VAXCRTL gcvt uses E format for numbers < 1 */
2793   if (val < 1) {
2794     sprintf(loc,"%.*g",ndig,val);
2795     return loc;
2796   }
2797 #endif
2798
2799   if (val) {
2800     if (!buf && ndig > DBL_DIG) ndig = DBL_DIG;
2801     return gcvt(val,ndig,loc);
2802   }
2803   else {
2804     loc[0] = '0'; loc[1] = '\0';
2805     return loc;
2806   }
2807
2808 }
2809 /*}}}*/
2810
2811
2812 /*{{{char *do_rmsexpand(char *fspec, char *out, int ts, char *def, unsigned opts)*/
2813 /* Shortcut for common case of simple calls to $PARSE and $SEARCH
2814  * to expand file specification.  Allows for a single default file
2815  * specification and a simple mask of options.  If outbuf is non-NULL,
2816  * it must point to a buffer at least NAM$C_MAXRSS bytes long, into which
2817  * the resultant file specification is placed.  If outbuf is NULL, the
2818  * resultant file specification is placed into a static buffer.
2819  * The third argument, if non-NULL, is taken to be a default file
2820  * specification string.  The fourth argument is unused at present.
2821  * rmesexpand() returns the address of the resultant string if
2822  * successful, and NULL on error.
2823  */
2824 static char *mp_do_tounixspec(pTHX_ char *, char *, int);
2825
2826 static char *
2827 mp_do_rmsexpand(pTHX_ char *filespec, char *outbuf, int ts, char *defspec, unsigned opts)
2828 {
2829   static char __rmsexpand_retbuf[NAM$C_MAXRSS+1];
2830   char vmsfspec[NAM$C_MAXRSS+1], tmpfspec[NAM$C_MAXRSS+1];
2831   char esa[NAM$C_MAXRSS], *cp, *out = NULL;
2832   struct FAB myfab = cc$rms_fab;
2833   struct NAM mynam = cc$rms_nam;
2834   STRLEN speclen;
2835   unsigned long int retsts, trimver, trimtype, haslower = 0, isunix = 0;
2836
2837   if (!filespec || !*filespec) {
2838     set_vaxc_errno(LIB$_INVARG); set_errno(EINVAL);
2839     return NULL;
2840   }
2841   if (!outbuf) {
2842     if (ts) out = New(1319,outbuf,NAM$C_MAXRSS+1,char);
2843     else    outbuf = __rmsexpand_retbuf;
2844   }
2845   if ((isunix = (strchr(filespec,'/') != NULL))) {
2846     if (do_tovmsspec(filespec,vmsfspec,0) == NULL) return NULL;
2847     filespec = vmsfspec;
2848   }
2849
2850   myfab.fab$l_fna = filespec;
2851   myfab.fab$b_fns = strlen(filespec);
2852   myfab.fab$l_nam = &mynam;
2853
2854   if (defspec && *defspec) {
2855     if (strchr(defspec,'/') != NULL) {
2856       if (do_tovmsspec(defspec,tmpfspec,0) == NULL) return NULL;
2857       defspec = tmpfspec;
2858     }
2859     myfab.fab$l_dna = defspec;
2860     myfab.fab$b_dns = strlen(defspec);
2861   }
2862
2863   mynam.nam$l_esa = esa;
2864   mynam.nam$b_ess = sizeof esa;
2865   mynam.nam$l_rsa = outbuf;
2866   mynam.nam$b_rss = NAM$C_MAXRSS;
2867
2868   retsts = sys$parse(&myfab,0,0);
2869   if (!(retsts & 1)) {
2870     mynam.nam$b_nop |= NAM$M_SYNCHK;
2871     if (retsts == RMS$_DNF || retsts == RMS$_DIR || retsts == RMS$_DEV) {
2872       retsts = sys$parse(&myfab,0,0);
2873       if (retsts & 1) goto expanded;
2874     }  
2875     mynam.nam$l_rlf = NULL; myfab.fab$b_dns = 0;
2876     (void) sys$parse(&myfab,0,0);  /* Free search context */
2877     if (out) Safefree(out);
2878     set_vaxc_errno(retsts);
2879     if      (retsts == RMS$_PRV) set_errno(EACCES);
2880     else if (retsts == RMS$_DEV) set_errno(ENODEV);
2881     else if (retsts == RMS$_DIR) set_errno(ENOTDIR);
2882     else                         set_errno(EVMSERR);
2883     return NULL;
2884   }
2885   retsts = sys$search(&myfab,0,0);
2886   if (!(retsts & 1) && retsts != RMS$_FNF) {
2887     mynam.nam$b_nop |= NAM$M_SYNCHK; mynam.nam$l_rlf = NULL;
2888     myfab.fab$b_dns = 0; (void) sys$parse(&myfab,0,0);  /* Free search context */
2889     if (out) Safefree(out);
2890     set_vaxc_errno(retsts);
2891     if      (retsts == RMS$_PRV) set_errno(EACCES);
2892     else                         set_errno(EVMSERR);
2893     return NULL;
2894   }
2895
2896   /* If the input filespec contained any lowercase characters,
2897    * downcase the result for compatibility with Unix-minded code. */
2898   expanded:
2899   for (out = myfab.fab$l_fna; *out; out++)
2900     if (islower(*out)) { haslower = 1; break; }
2901   if (mynam.nam$b_rsl) { out = outbuf; speclen = mynam.nam$b_rsl; }
2902   else                 { out = esa;    speclen = mynam.nam$b_esl; }
2903   /* Trim off null fields added by $PARSE
2904    * If type > 1 char, must have been specified in original or default spec
2905    * (not true for version; $SEARCH may have added version of existing file).
2906    */
2907   trimver  = !(mynam.nam$l_fnb & NAM$M_EXP_VER);
2908   trimtype = !(mynam.nam$l_fnb & NAM$M_EXP_TYPE) &&
2909              (mynam.nam$l_ver - mynam.nam$l_type == 1);
2910   if (trimver || trimtype) {
2911     if (defspec && *defspec) {
2912       char defesa[NAM$C_MAXRSS];
2913       struct FAB deffab = cc$rms_fab;
2914       struct NAM defnam = cc$rms_nam;
2915      
2916       deffab.fab$l_nam = &defnam;
2917       deffab.fab$l_fna = defspec;  deffab.fab$b_fns = myfab.fab$b_dns;
2918       defnam.nam$l_esa = defesa;   defnam.nam$b_ess = sizeof defesa;
2919       defnam.nam$b_nop = NAM$M_SYNCHK;
2920       if (sys$parse(&deffab,0,0) & 1) {
2921         if (trimver)  trimver  = !(defnam.nam$l_fnb & NAM$M_EXP_VER);
2922         if (trimtype) trimtype = !(defnam.nam$l_fnb & NAM$M_EXP_TYPE); 
2923       }
2924     }
2925     if (trimver) speclen = mynam.nam$l_ver - out;
2926     if (trimtype) {
2927       /* If we didn't already trim version, copy down */
2928       if (speclen > mynam.nam$l_ver - out)
2929         memcpy(mynam.nam$l_type, mynam.nam$l_ver, 
2930                speclen - (mynam.nam$l_ver - out));
2931       speclen -= mynam.nam$l_ver - mynam.nam$l_type; 
2932     }
2933   }
2934   /* If we just had a directory spec on input, $PARSE "helpfully"
2935    * adds an empty name and type for us */
2936   if (mynam.nam$l_name == mynam.nam$l_type &&
2937       mynam.nam$l_ver  == mynam.nam$l_type + 1 &&
2938       !(mynam.nam$l_fnb & NAM$M_EXP_NAME))
2939     speclen = mynam.nam$l_name - out;
2940   out[speclen] = '\0';
2941   if (haslower) __mystrtolower(out);
2942
2943   /* Have we been working with an expanded, but not resultant, spec? */
2944   /* Also, convert back to Unix syntax if necessary. */
2945   if (!mynam.nam$b_rsl) {
2946     if (isunix) {
2947       if (do_tounixspec(esa,outbuf,0) == NULL) return NULL;
2948     }
2949     else strcpy(outbuf,esa);
2950   }
2951   else if (isunix) {
2952     if (do_tounixspec(outbuf,tmpfspec,0) == NULL) return NULL;
2953     strcpy(outbuf,tmpfspec);
2954   }
2955   mynam.nam$b_nop |= NAM$M_SYNCHK; mynam.nam$l_rlf = NULL;
2956   mynam.nam$l_rsa = NULL; mynam.nam$b_rss = 0;
2957   myfab.fab$b_dns = 0; (void) sys$parse(&myfab,0,0);  /* Free search context */
2958   return outbuf;
2959 }
2960 /*}}}*/
2961 /* External entry points */
2962 char *Perl_rmsexpand(pTHX_ char *spec, char *buf, char *def, unsigned opt)
2963 { return do_rmsexpand(spec,buf,0,def,opt); }
2964 char *Perl_rmsexpand_ts(pTHX_ char *spec, char *buf, char *def, unsigned opt)
2965 { return do_rmsexpand(spec,buf,1,def,opt); }
2966
2967
2968 /*
2969 ** The following routines are provided to make life easier when
2970 ** converting among VMS-style and Unix-style directory specifications.
2971 ** All will take input specifications in either VMS or Unix syntax. On
2972 ** failure, all return NULL.  If successful, the routines listed below
2973 ** return a pointer to a buffer containing the appropriately
2974 ** reformatted spec (and, therefore, subsequent calls to that routine
2975 ** will clobber the result), while the routines of the same names with
2976 ** a _ts suffix appended will return a pointer to a mallocd string
2977 ** containing the appropriately reformatted spec.
2978 ** In all cases, only explicit syntax is altered; no check is made that
2979 ** the resulting string is valid or that the directory in question
2980 ** actually exists.
2981 **
2982 **   fileify_dirspec() - convert a directory spec into the name of the
2983 **     directory file (i.e. what you can stat() to see if it's a dir).
2984 **     The style (VMS or Unix) of the result is the same as the style
2985 **     of the parameter passed in.
2986 **   pathify_dirspec() - convert a directory spec into a path (i.e.
2987 **     what you prepend to a filename to indicate what directory it's in).
2988 **     The style (VMS or Unix) of the result is the same as the style
2989 **     of the parameter passed in.
2990 **   tounixpath() - convert a directory spec into a Unix-style path.
2991 **   tovmspath() - convert a directory spec into a VMS-style path.
2992 **   tounixspec() - convert any file spec into a Unix-style file spec.
2993 **   tovmsspec() - convert any file spec into a VMS-style spec.
2994 **
2995 ** Copyright 1996 by Charles Bailey  <bailey@newman.upenn.edu>
2996 ** Permission is given to distribute this code as part of the Perl
2997 ** standard distribution under the terms of the GNU General Public
2998 ** License or the Perl Artistic License.  Copies of each may be
2999 ** found in the Perl standard distribution.
3000  */
3001
3002 /*{{{ char *fileify_dirspec[_ts](char *path, char *buf)*/
3003 static char *mp_do_fileify_dirspec(pTHX_ char *dir,char *buf,int ts)
3004 {
3005     static char __fileify_retbuf[NAM$C_MAXRSS+1];
3006     unsigned long int dirlen, retlen, addmfd = 0, hasfilename = 0;
3007     char *retspec, *cp1, *cp2, *lastdir;
3008     char trndir[NAM$C_MAXRSS+2], vmsdir[NAM$C_MAXRSS+1];
3009
3010     if (!dir || !*dir) {
3011       set_errno(EINVAL); set_vaxc_errno(SS$_BADPARAM); return NULL;
3012     }
3013     dirlen = strlen(dir);
3014     while (dirlen && dir[dirlen-1] == '/') --dirlen;
3015     if (!dirlen) { /* We had Unixish '/' -- substitute top of current tree */
3016       strcpy(trndir,"/sys$disk/000000");
3017       dir = trndir;
3018       dirlen = 16;
3019     }
3020     if (dirlen > NAM$C_MAXRSS) {
3021       set_errno(ENAMETOOLONG); set_vaxc_errno(RMS$_SYN); return NULL;
3022     }
3023     if (!strpbrk(dir+1,"/]>:")) {
3024       strcpy(trndir,*dir == '/' ? dir + 1: dir);
3025       while (!strpbrk(trndir,"/]>:>") && my_trnlnm(trndir,trndir,0)) ;
3026       dir = trndir;
3027       dirlen = strlen(dir);
3028     }
3029     else {
3030       strncpy(trndir,dir,dirlen);
3031       trndir[dirlen] = '\0';
3032       dir = trndir;
3033     }
3034     /* If we were handed a rooted logical name or spec, treat it like a
3035      * simple directory, so that
3036      *    $ Define myroot dev:[dir.]
3037      *    ... do_fileify_dirspec("myroot",buf,1) ...
3038      * does something useful.
3039      */
3040     if (dirlen >= 2 && !strcmp(dir+dirlen-2,".]")) {
3041       dir[--dirlen] = '\0';
3042       dir[dirlen-1] = ']';
3043     }
3044     if (dirlen >= 2 && !strcmp(dir+dirlen-2,".>")) {
3045       dir[--dirlen] = '\0';
3046       dir[dirlen-1] = '>';
3047     }
3048
3049     if ((cp1 = strrchr(dir,']')) != NULL || (cp1 = strrchr(dir,'>')) != NULL) {
3050       /* If we've got an explicit filename, we can just shuffle the string. */
3051       if (*(cp1+1)) hasfilename = 1;
3052       /* Similarly, we can just back up a level if we've got multiple levels
3053          of explicit directories in a VMS spec which ends with directories. */
3054       else {
3055         for (cp2 = cp1; cp2 > dir; cp2--) {
3056           if (*cp2 == '.') {
3057             *cp2 = *cp1; *cp1 = '\0';
3058             hasfilename = 1;
3059             break;
3060           }
3061           if (*cp2 == '[' || *cp2 == '<') break;
3062         }
3063       }
3064     }
3065
3066     if (hasfilename || !strpbrk(dir,"]:>")) { /* Unix-style path or filename */
3067       if (dir[0] == '.') {
3068         if (dir[1] == '\0' || (dir[1] == '/' && dir[2] == '\0'))
3069           return do_fileify_dirspec("[]",buf,ts);
3070         else if (dir[1] == '.' &&
3071                  (dir[2] == '\0' || (dir[2] == '/' && dir[3] == '\0')))
3072           return do_fileify_dirspec("[-]",buf,ts);
3073       }
3074       if (dirlen && dir[dirlen-1] == '/') {    /* path ends with '/'; just add .dir;1 */
3075         dirlen -= 1;                 /* to last element */
3076         lastdir = strrchr(dir,'/');
3077       }
3078       else if ((cp1 = strstr(dir,"/.")) != NULL) {
3079         /* If we have "/." or "/..", VMSify it and let the VMS code
3080          * below expand it, rather than repeating the code to handle
3081          * relative components of a filespec here */
3082         do {
3083           if (*(cp1+2) == '.') cp1++;
3084           if (*(cp1+2) == '/' || *(cp1+2) == '\0') {
3085             if (do_tovmsspec(dir,vmsdir,0) == NULL) return NULL;
3086             if (strchr(vmsdir,'/') != NULL) {
3087               /* If do_tovmsspec() returned it, it must have VMS syntax
3088                * delimiters in it, so it's a mixed VMS/Unix spec.  We take
3089                * the time to check this here only so we avoid a recursion
3090                * loop; otherwise, gigo.
3091                */
3092               set_errno(EINVAL);  set_vaxc_errno(RMS$_SYN);  return NULL;
3093             }
3094             if (do_fileify_dirspec(vmsdir,trndir,0) == NULL) return NULL;
3095             return do_tounixspec(trndir,buf,ts);
3096           }
3097           cp1++;
3098         } while ((cp1 = strstr(cp1,"/.")) != NULL);
3099         lastdir = strrchr(dir,'/');
3100       }
3101       else if (dirlen >= 7 && !strcmp(&dir[dirlen-7],"/000000")) {
3102         /* Ditto for specs that end in an MFD -- let the VMS code
3103          * figure out whether it's a real device or a rooted logical. */
3104         dir[dirlen] = '/'; dir[dirlen+1] = '\0';
3105         if (do_tovmsspec(dir,vmsdir,0) == NULL) return NULL;
3106         if (do_fileify_dirspec(vmsdir,trndir,0) == NULL) return NULL;
3107         return do_tounixspec(trndir,buf,ts);
3108       }
3109       else {
3110         if ( !(lastdir = cp1 = strrchr(dir,'/')) &&
3111              !(lastdir = cp1 = strrchr(dir,']')) &&
3112              !(lastdir = cp1 = strrchr(dir,'>'))) cp1 = dir;
3113         if ((cp2 = strchr(cp1,'.'))) {  /* look for explicit type */
3114           int ver; char *cp3;
3115           if (!*(cp2+1) || toupper(*(cp2+1)) != 'D' ||  /* Wrong type. */
3116               !*(cp2+2) || toupper(*(cp2+2)) != 'I' ||  /* Bzzt. */
3117               !*(cp2+3) || toupper(*(cp2+3)) != 'R' ||
3118               (*(cp2+4) && ((*(cp2+4) != ';' && *(cp2+4) != '.')  ||
3119               (*(cp2+5) && ((ver = strtol(cp2+5,&cp3,10)) != 1 &&
3120                             (ver || *cp3)))))) {
3121             set_errno(ENOTDIR);
3122             set_vaxc_errno(RMS$_DIR);
3123             return NULL;
3124           }
3125           dirlen = cp2 - dir;
3126         }
3127       }
3128       /* If we lead off with a device or rooted logical, add the MFD
3129          if we're specifying a top-level directory. */
3130       if (lastdir && *dir == '/') {
3131         addmfd = 1;
3132         for (cp1 = lastdir - 1; cp1 > dir; cp1--) {
3133           if (*cp1 == '/') {
3134             addmfd = 0;
3135             break;
3136           }
3137         }
3138       }
3139       retlen = dirlen + (addmfd ? 13 : 6);
3140       if (buf) retspec = buf;
3141       else if (ts) New(1309,retspec,retlen+1,char);
3142       else retspec = __fileify_retbuf;
3143       if (addmfd) {
3144         dirlen = lastdir - dir;
3145         memcpy(retspec,dir,dirlen);
3146         strcpy(&retspec[dirlen],"/000000");
3147         strcpy(&retspec[dirlen+7],lastdir);
3148       }
3149       else {
3150         memcpy(retspec,dir,dirlen);
3151         retspec[dirlen] = '\0';
3152       }
3153       /* We've picked up everything up to the directory file name.
3154          Now just add the type and version, and we're set. */
3155       strcat(retspec,".dir;1");
3156       return retspec;
3157     }
3158     else {  /* VMS-style directory spec */
3159       char esa[NAM$C_MAXRSS+1], term, *cp;
3160       unsigned long int sts, cmplen, haslower = 0;
3161       struct FAB dirfab = cc$rms_fab;
3162       struct NAM savnam, dirnam = cc$rms_nam;
3163
3164       dirfab.fab$b_fns = strlen(dir);
3165       dirfab.fab$l_fna = dir;
3166       dirfab.fab$l_nam = &dirnam;
3167       dirfab.fab$l_dna = ".DIR;1";
3168       dirfab.fab$b_dns = 6;
3169       dirnam.nam$b_ess = NAM$C_MAXRSS;
3170       dirnam.nam$l_esa = esa;
3171
3172       for (cp = dir; *cp; cp++)
3173         if (islower(*cp)) { haslower = 1; break; }
3174       if (!((sts = sys$parse(&dirfab))&1)) {
3175         if (dirfab.fab$l_sts == RMS$_DIR) {
3176           dirnam.nam$b_nop |= NAM$M_SYNCHK;
3177           sts = sys$parse(&dirfab) & 1;
3178         }
3179         if (!sts) {
3180           set_errno(EVMSERR);
3181           set_vaxc_errno(dirfab.fab$l_sts);
3182           return NULL;
3183         }
3184       }
3185       else {
3186         savnam = dirnam;
3187         if (sys$search(&dirfab)&1) {  /* Does the file really exist? */
3188           /* Yes; fake the fnb bits so we'll check type below */
3189           dirnam.nam$l_fnb |= NAM$M_EXP_TYPE | NAM$M_EXP_VER;
3190         }
3191         else { /* No; just work with potential name */
3192           if (dirfab.fab$l_sts == RMS$_FNF) dirnam = savnam;
3193           else { 
3194             set_errno(EVMSERR);  set_vaxc_errno(dirfab.fab$l_sts);
3195             dirnam.nam$b_nop |= NAM$M_SYNCHK;  dirnam.nam$l_rlf = NULL;
3196             dirfab.fab$b_dns = 0;  (void) sys$parse(&dirfab,0,0);
3197             return NULL;
3198           }
3199         }
3200       }
3201       if (!(dirnam.nam$l_fnb & (NAM$M_EXP_DEV | NAM$M_EXP_DIR))) {
3202         cp1 = strchr(esa,']');
3203         if (!cp1) cp1 = strchr(esa,'>');
3204         if (cp1) {  /* Should always be true */
3205           dirnam.nam$b_esl -= cp1 - esa - 1;
3206           memcpy(esa,cp1 + 1,dirnam.nam$b_esl);
3207         }
3208       }
3209       if (dirnam.nam$l_fnb & NAM$M_EXP_TYPE) {  /* Was type specified? */
3210         /* Yep; check version while we're at it, if it's there. */
3211         cmplen = (dirnam.nam$l_fnb & NAM$M_EXP_VER) ? 6 : 4;
3212         if (strncmp(dirnam.nam$l_type,".DIR;1",cmplen)) { 
3213           /* Something other than .DIR[;1].  Bzzt. */
3214           dirnam.nam$b_nop |= NAM$M_SYNCHK;  dirnam.nam$l_rlf = NULL;
3215           dirfab.fab$b_dns = 0;  (void) sys$parse(&dirfab,0,0);
3216           set_errno(ENOTDIR);
3217           set_vaxc_errno(RMS$_DIR);
3218           return NULL;
3219         }
3220       }
3221       esa[dirnam.nam$b_esl] = '\0';
3222       if (dirnam.nam$l_fnb & NAM$M_EXP_NAME) {
3223         /* They provided at least the name; we added the type, if necessary, */
3224         if (buf) retspec = buf;                            /* in sys$parse() */
3225         else if (ts) New(1311,retspec,dirnam.nam$b_esl+1,char);
3226         else retspec = __fileify_retbuf;
3227         strcpy(retspec,esa);
3228         dirnam.nam$b_nop |= NAM$M_SYNCHK;  dirnam.nam$l_rlf = NULL;
3229         dirfab.fab$b_dns = 0;  (void) sys$parse(&dirfab,0,0);
3230         return retspec;
3231       }
3232       if ((cp1 = strstr(esa,".][000000]")) != NULL) {
3233         for (cp2 = cp1 + 9; *cp2; cp1++,cp2++) *cp1 = *cp2;
3234         *cp1 = '\0';
3235         dirnam.nam$b_esl -= 9;
3236       }
3237       if ((cp1 = strrchr(esa,']')) == NULL) cp1 = strrchr(esa,'>');
3238       if (cp1 == NULL) { /* should never happen */
3239         dirnam.nam$b_nop |= NAM$M_SYNCHK;  dirnam.nam$l_rlf = NULL;
3240         dirfab.fab$b_dns = 0;  (void) sys$parse(&dirfab,0,0);
3241         return NULL;
3242       }
3243       term = *cp1;
3244       *cp1 = '\0';
3245       retlen = strlen(esa);
3246       if ((cp1 = strrchr(esa,'.')) != NULL) {
3247         /* There's more than one directory in the path.  Just roll back. */
3248         *cp1 = term;
3249         if (buf) retspec = buf;
3250         else if (ts) New(1311,retspec,retlen+7,char);
3251         else retspec = __fileify_retbuf;
3252         strcpy(retspec,esa);
3253       }
3254       else {
3255         if (dirnam.nam$l_fnb & NAM$M_ROOT_DIR) {
3256           /* Go back and expand rooted logical name */
3257           dirnam.nam$b_nop = NAM$M_SYNCHK | NAM$M_NOCONCEAL;
3258           if (!(sys$parse(&dirfab) & 1)) {
3259             dirnam.nam$l_rlf = NULL;
3260             dirfab.fab$b_dns = 0;  (void) sys$parse(&dirfab,0,0);
3261             set_errno(EVMSERR);
3262             set_vaxc_errno(dirfab.fab$l_sts);
3263             return NULL;
3264           }
3265           retlen = dirnam.nam$b_esl - 9; /* esa - '][' - '].DIR;1' */
3266           if (buf) retspec = buf;
3267           else if (ts) New(1312,retspec,retlen+16,char);
3268           else retspec = __fileify_retbuf;
3269           cp1 = strstr(esa,"][");
3270           if (!cp1) cp1 = strstr(esa,"]<");
3271           dirlen = cp1 - esa;
3272           memcpy(retspec,esa,dirlen);
3273           if (!strncmp(cp1+2,"000000]",7)) {
3274             retspec[dirlen-1] = '\0';
3275             for (cp1 = retspec+dirlen-1; *cp1 != '.' && *cp1 != '['; cp1--) ;
3276             if (*cp1 == '.') *cp1 = ']';
3277             else {
3278               memmove(cp1+8,cp1+1,retspec+dirlen-cp1);
3279               memcpy(cp1+1,"000000]",7);
3280             }
3281           }
3282           else {
3283             memcpy(retspec+dirlen,cp1+2,retlen-dirlen);
3284             retspec[retlen] = '\0';
3285             /* Convert last '.' to ']' */
3286             for (cp1 = retspec+retlen-1; *cp1 != '.' && *cp1 != '['; cp1--) ;
3287             if (*cp1 == '.') *cp1 = ']';
3288             else {
3289               memmove(cp1+8,cp1+1,retspec+dirlen-cp1);
3290               memcpy(cp1+1,"000000]",7);
3291             }
3292           }
3293         }
3294         else {  /* This is a top-level dir.  Add the MFD to the path. */
3295           if (buf) retspec = buf;
3296           else if (ts) New(1312,retspec,retlen+16,char);
3297           else retspec = __fileify_retbuf;
3298           cp1 = esa;
3299           cp2 = retspec;
3300           while (*cp1 != ':') *(cp2++) = *(cp1++);
3301           strcpy(cp2,":[000000]");
3302           cp1 += 2;
3303           strcpy(cp2+9,cp1);
3304         }
3305       }
3306       dirnam.nam$b_nop |= NAM$M_SYNCHK;  dirnam.nam$l_rlf = NULL;
3307       dirfab.fab$b_dns = 0;  (void) sys$parse(&dirfab,0,0);
3308       /* We've set up the string up through the filename.  Add the
3309          type and version, and we're done. */
3310       strcat(retspec,".DIR;1");
3311
3312       /* $PARSE may have upcased filespec, so convert output to lower
3313        * case if input contained any lowercase characters. */
3314       if (haslower) __mystrtolower(retspec);
3315       return retspec;
3316     }
3317 }  /* end of do_fileify_dirspec() */
3318 /*}}}*/
3319 /* External entry points */
3320 char *Perl_fileify_dirspec(pTHX_ char *dir, char *buf)
3321 { return do_fileify_dirspec(dir,buf,0); }
3322 char *Perl_fileify_dirspec_ts(pTHX_ char *dir, char *buf)
3323 { return do_fileify_dirspec(dir,buf,1); }
3324
3325 /*{{{ char *pathify_dirspec[_ts](char *path, char *buf)*/
3326 static char *mp_do_pathify_dirspec(pTHX_ char *dir,char *buf, int ts)
3327 {
3328     static char __pathify_retbuf[NAM$C_MAXRSS+1];
3329     unsigned long int retlen;
3330     char *retpath, *cp1, *cp2, trndir[NAM$C_MAXRSS+1];
3331
3332     if (!dir || !*dir) {
3333       set_errno(EINVAL); set_vaxc_errno(SS$_BADPARAM); return NULL;
3334     }
3335
3336     if (*dir) strcpy(trndir,dir);
3337     else getcwd(trndir,sizeof trndir - 1);
3338
3339     while (!strpbrk(trndir,"/]:>") && !no_translate_barewords
3340            && my_trnlnm(trndir,trndir,0)) {
3341       STRLEN trnlen = strlen(trndir);
3342
3343       /* Trap simple rooted lnms, and return lnm:[000000] */
3344       if (!strcmp(trndir+trnlen-2,".]")) {
3345         if (buf) retpath = buf;
3346         else if (ts) New(1318,retpath,strlen(dir)+10,char);
3347         else retpath = __pathify_retbuf;
3348         strcpy(retpath,dir);
3349         strcat(retpath,":[000000]");
3350         return retpath;
3351       }
3352     }
3353     dir = trndir;
3354
3355     if (!strpbrk(dir,"]:>")) { /* Unix-style path or plain name */
3356       if (*dir == '.' && (*(dir+1) == '\0' ||
3357                           (*(dir+1) == '.' && *(dir+2) == '\0')))
3358         retlen = 2 + (*(dir+1) != '\0');
3359       else {
3360         if ( !(cp1 = strrchr(dir,'/')) &&
3361              !(cp1 = strrchr(dir,']')) &&
3362              !(cp1 = strrchr(dir,'>')) ) cp1 = dir;
3363         if ((cp2 = strchr(cp1,'.')) != NULL &&
3364             (*(cp2-1) != '/' ||                /* Trailing '.', '..', */
3365              !(*(cp2+1) == '\0' ||             /* or '...' are dirs.  */
3366               (*(cp2+1) == '.' && *(cp2+2) == '\0') ||
3367               (*(cp2+1) == '.' && *(cp2+2) == '.' && *(cp2+3) == '\0')))) {
3368           int ver; char *cp3;
3369           if (!*(cp2+1) || toupper(*(cp2+1)) != 'D' ||  /* Wrong type. */
3370               !*(cp2+2) || toupper(*(cp2+2)) != 'I' ||  /* Bzzt. */
3371               !*(cp2+3) || toupper(*(cp2+3)) != 'R' ||
3372               (*(cp2+4) && ((*(cp2+4) != ';' && *(cp2+4) != '.')  ||
3373               (*(cp2+5) && ((ver = strtol(cp2+5,&cp3,10)) != 1 &&
3374                             (ver || *cp3)))))) {
3375             set_errno(ENOTDIR);
3376             set_vaxc_errno(RMS$_DIR);
3377             return NULL;
3378           }
3379           retlen = cp2 - dir + 1;
3380         }
3381         else {  /* No file type present.  Treat the filename as a directory. */
3382           retlen = strlen(dir) + 1;
3383         }
3384       }
3385       if (buf) retpath = buf;
3386       else if (ts) New(1313,retpath,retlen+1,char);
3387       else retpath = __pathify_retbuf;
3388       strncpy(retpath,dir,retlen-1);
3389       if (retpath[retlen-2] != '/') { /* If the path doesn't already end */
3390         retpath[retlen-1] = '/';      /* with '/', add it. */
3391         retpath[retlen] = '\0';
3392       }
3393       else retpath[retlen-1] = '\0';
3394     }
3395     else {  /* VMS-style directory spec */
3396       char esa[NAM$C_MAXRSS+1], *cp;
3397       unsigned long int sts, cmplen, haslower;
3398       struct FAB dirfab = cc$rms_fab;
3399       struct NAM savnam, dirnam = cc$rms_nam;
3400
3401       /* If we've got an explicit filename, we can just shuffle the string. */
3402       if ( ( (cp1 = strrchr(dir,']')) != NULL ||
3403              (cp1 = strrchr(dir,'>')) != NULL     ) && *(cp1+1)) {
3404         if ((cp2 = strchr(cp1,'.')) != NULL) {
3405           int ver; char *cp3;
3406           if (!*(cp2+1) || toupper(*(cp2+1)) != 'D' ||  /* Wrong type. */
3407               !*(cp2+2) || toupper(*(cp2+2)) != 'I' ||  /* Bzzt. */
3408               !*(cp2+3) || toupper(*(cp2+3)) != 'R' ||
3409               (*(cp2+4) && ((*(cp2+4) != ';' && *(cp2+4) != '.')  ||
3410               (*(cp2+5) && ((ver = strtol(cp2+5,&cp3,10)) != 1 &&
3411                             (ver || *cp3)))))) {
3412             set_errno(ENOTDIR);
3413             set_vaxc_errno(RMS$_DIR);
3414             return NULL;
3415           }
3416         }
3417         else {  /* No file type, so just draw name into directory part */
3418           for (cp2 = cp1; *cp2; cp2++) ;
3419         }
3420         *cp2 = *cp1;
3421         *(cp2+1) = '\0';  /* OK; trndir is guaranteed to be long enough */
3422         *cp1 = '.';
3423         /* We've now got a VMS 'path'; fall through */
3424       }
3425       dirfab.fab$b_fns = strlen(dir);
3426       dirfab.fab$l_fna = dir;
3427       if (dir[dirfab.fab$b_fns-1] == ']' ||
3428           dir[dirfab.fab$b_fns-1] == '>' ||
3429           dir[dirfab.fab$b_fns-1] == ':') { /* It's already a VMS 'path' */
3430         if (buf) retpath = buf;
3431         else if (ts) New(1314,retpath,strlen(dir)+1,char);
3432         else retpath = __pathify_retbuf;
3433         strcpy(retpath,dir);
3434         return retpath;
3435       } 
3436       dirfab.fab$l_dna = ".DIR;1";
3437       dirfab.fab$b_dns = 6;
3438       dirfab.fab$l_nam = &dirnam;
3439       dirnam.nam$b_ess = (unsigned char) sizeof esa - 1;
3440       dirnam.nam$l_esa = esa;
3441
3442       for (cp = dir; *cp; cp++)
3443         if (islower(*cp)) { haslower = 1; break; }
3444
3445       if (!(sts = (sys$parse(&dirfab)&1))) {
3446         if (dirfab.fab$l_sts == RMS$_DIR) {
3447           dirnam.nam$b_nop |= NAM$M_SYNCHK;
3448           sts = sys$parse(&dirfab) & 1;
3449         }
3450         if (!sts) {
3451           set_errno(EVMSERR);
3452           set_vaxc_errno(dirfab.fab$l_sts);
3453           return NULL;
3454         }
3455       }
3456       else {
3457         savnam = dirnam;
3458         if (!(sys$search(&dirfab)&1)) {  /* Does the file really exist? */
3459           if (dirfab.fab$l_sts != RMS$_FNF) {
3460             dirnam.nam$b_nop |= NAM$M_SYNCHK;  dirnam.nam$l_rlf = NULL;
3461             dirfab.fab$b_dns = 0;  (void) sys$parse(&dirfab,0,0);
3462             set_errno(EVMSERR);
3463             set_vaxc_errno(dirfab.fab$l_sts);
3464             return NULL;
3465           }
3466           dirnam = savnam; /* No; just work with potential name */
3467         }
3468       }
3469       if (dirnam.nam$l_fnb & NAM$M_EXP_TYPE) {  /* Was type specified? */
3470         /* Yep; check version while we're at it, if it's there. */
3471         cmplen = (dirnam.nam$l_fnb & NAM$M_EXP_VER) ? 6 : 4;
3472         if (strncmp(dirnam.nam$l_type,".DIR;1",cmplen)) { 
3473           /* Something other than .DIR[;1].  Bzzt. */
3474           dirnam.nam$b_nop |= NAM$M_SYNCHK;  dirnam.nam$l_rlf = NULL;
3475           dirfab.fab$b_dns = 0;  (void) sys$parse(&dirfab,0,0);
3476           set_errno(ENOTDIR);
3477           set_vaxc_errno(RMS$_DIR);
3478           return NULL;
3479         }
3480       }
3481       /* OK, the type was fine.  Now pull any file name into the
3482          directory path. */
3483       if ((cp1 = strrchr(esa,']'))) *dirnam.nam$l_type = ']';
3484       else {
3485         cp1 = strrchr(esa,'>');
3486         *dirnam.nam$l_type = '>';
3487       }
3488       *cp1 = '.';
3489       *(dirnam.nam$l_type + 1) = '\0';
3490       retlen = dirnam.nam$l_type - esa + 2;
3491       if (buf) retpath = buf;
3492       else if (ts) New(1314,retpath,retlen,char);
3493       else retpath = __pathify_retbuf;
3494       strcpy(retpath,esa);
3495       dirnam.nam$b_nop |= NAM$M_SYNCHK;  dirnam.nam$l_rlf = NULL;
3496       dirfab.fab$b_dns = 0;  (void) sys$parse(&dirfab,0,0);
3497       /* $PARSE may have upcased filespec, so convert output to lower
3498        * case if input contained any lowercase characters. */
3499       if (haslower) __mystrtolower(retpath);
3500     }
3501
3502     return retpath;
3503 }  /* end of do_pathify_dirspec() */
3504 /*}}}*/
3505 /* External entry points */
3506 char *Perl_pathify_dirspec(pTHX_ char *dir, char *buf)
3507 { return do_pathify_dirspec(dir,buf,0); }
3508 char *Perl_pathify_dirspec_ts(pTHX_ char *dir, char *buf)
3509 { return do_pathify_dirspec(dir,buf,1); }
3510
3511 /*{{{ char *tounixspec[_ts](char *path, char *buf)*/
3512 static char *mp_do_tounixspec(pTHX_ char *spec, char *buf, int ts)
3513 {
3514   static char __tounixspec_retbuf[NAM$C_MAXRSS+1];
3515   char *dirend, *rslt, *cp1, *cp2, *cp3, tmp[NAM$C_MAXRSS+1];
3516   int devlen, dirlen, retlen = NAM$C_MAXRSS+1, expand = 0;
3517
3518   if (spec == NULL) return NULL;
3519   if (strlen(spec) > NAM$C_MAXRSS) return NULL;
3520   if (buf) rslt = buf;
3521   else if (ts) {
3522     retlen = strlen(spec);
3523     cp1 = strchr(spec,'[');
3524     if (!cp1) cp1 = strchr(spec,'<');
3525     if (cp1) {
3526       for (cp1++; *cp1; cp1++) {
3527         if (*cp1 == '-') expand++; /* VMS  '-' ==> Unix '../' */
3528         if (*cp1 == '.' && *(cp1+1) == '.' && *(cp1+2) == '.')
3529           { expand++; cp1 +=2; } /* VMS '...' ==> Unix '/.../' */
3530       }
3531     }
3532     New(1315,rslt,retlen+2+2*expand,char);
3533   }
3534   else rslt = __tounixspec_retbuf;
3535   if (strchr(spec,'/') != NULL) {
3536     strcpy(rslt,spec);
3537     return rslt;
3538   }
3539
3540   cp1 = rslt;
3541   cp2 = spec;
3542   dirend = strrchr(spec,']');
3543   if (dirend == NULL) dirend = strrchr(spec,'>');
3544   if (dirend == NULL) dirend = strchr(spec,':');
3545   if (dirend == NULL) {
3546     strcpy(rslt,spec);
3547     return rslt;
3548   }
3549   if (*cp2 != '[' && *cp2 != '<') {
3550     *(cp1++) = '/';
3551   }
3552   else {  /* the VMS spec begins with directories */
3553     cp2++;
3554     if (*cp2 == ']' || *cp2 == '>') {
3555       *(cp1++) = '.'; *(cp1++) = '/'; *(cp1++) = '\0';
3556       return rslt;
3557     }
3558     else if ( *cp2 != '.' && *cp2 != '-') { /* add the implied device */
3559       if (getcwd(tmp,sizeof tmp,1) == NULL) {
3560         if (ts) Safefree(rslt);
3561         return NULL;
3562       }
3563       do {
3564         cp3 = tmp;
3565         while (*cp3 != ':' && *cp3) cp3++;
3566         *(cp3++) = '\0';
3567         if (strchr(cp3,']') != NULL) break;
3568       } while (vmstrnenv(tmp,tmp,0,fildev,0));
3569       if (ts && !buf &&
3570           ((devlen = strlen(tmp)) + (dirlen = strlen(cp2)) + 1 > retlen)) {
3571         retlen = devlen + dirlen;
3572         Renew(rslt,retlen+1+2*expand,char);
3573         cp1 = rslt;
3574       }
3575       cp3 = tmp;
3576       *(cp1++) = '/';
3577       while (*cp3) {
3578         *(cp1++) = *(cp3++);
3579         if (cp1 - rslt > NAM$C_MAXRSS && !ts && !buf) return NULL; /* No room */
3580       }
3581       *(cp1++) = '/';
3582     }
3583     else if ( *cp2 == '.') {
3584       if (*(cp2+1) == '.' && *(cp2+2) == '.') {
3585         *(cp1++) = '.'; *(cp1++) = '.'; *(cp1++) = '.'; *(cp1++) = '/';
3586         cp2 += 3;
3587       }
3588       else cp2++;
3589     }
3590   }
3591   for (; cp2 <= dirend; cp2++) {
3592     if (*cp2 == ':') {
3593       *(cp1++) = '/';
3594       if (*(cp2+1) == '[') cp2++;
3595     }
3596     else if (*cp2 == ']' || *cp2 == '>') {
3597       if (*(cp1-1) != '/') *(cp1++) = '/'; /* Don't double after ellipsis */
3598     }
3599     else if (*cp2 == '.') {
3600       *(cp1++) = '/';
3601       if (*(cp2+1) == ']' || *(cp2+1) == '>') {
3602         while (*(cp2+1) == ']' || *(cp2+1) == '>' ||
3603                *(cp2+1) == '[' || *(cp2+1) == '<') cp2++;
3604         if (!strncmp(cp2,"[000000",7) && (*(cp2+7) == ']' ||
3605             *(cp2+7) == '>' || *(cp2+7) == '.')) cp2 += 7;
3606       }
3607       else if ( *(cp2+1) == '.' && *(cp2+2) == '.') {
3608         *(cp1++) = '.'; *(cp1++) = '.'; *(cp1++) = '.'; *(cp1++) ='/';
3609         cp2 += 2;
3610       }
3611     }
3612     else if (*cp2 == '-') {
3613       if (*(cp2-1) == '[' || *(cp2-1) == '<' || *(cp2-1) == '.') {
3614         while (*cp2 == '-') {
3615           cp2++;
3616           *(cp1++) = '.'; *(cp1++) = '.'; *(cp1++) = '/';
3617         }
3618         if (*cp2 != '.' && *cp2 != ']' && *cp2 != '>') { /* we don't allow */
3619           if (ts) Safefree(rslt);                        /* filespecs like */
3620           set_errno(EINVAL); set_vaxc_errno(RMS$_SYN);   /* [fred.--foo.bar] */
3621           return NULL;
3622         }
3623       }
3624       else *(cp1++) = *cp2;
3625     }
3626     else *(cp1++) = *cp2;
3627   }
3628   while (*cp2) *(cp1++) = *(cp2++);
3629   *cp1 = '\0';
3630
3631   return rslt;
3632
3633 }  /* end of do_tounixspec() */
3634 /*}}}*/
3635 /* External entry points */
3636 char *Perl_tounixspec(pTHX_ char *spec, char *buf) { return do_tounixspec(spec,buf,0); }
3637 char *Perl_tounixspec_ts(pTHX_ char *spec, char *buf) { return do_tounixspec(spec,buf,1); }
3638
3639 /*{{{ char *tovmsspec[_ts](char *path, char *buf)*/
3640 static char *mp_do_tovmsspec(pTHX_ char *path, char *buf, int ts) {
3641   static char __tovmsspec_retbuf[NAM$C_MAXRSS+1];
3642   char *rslt, *dirend;
3643   register char *cp1, *cp2;
3644   unsigned long int infront = 0, hasdir = 1;
3645
3646   if (path == NULL) return NULL;
3647   if (buf) rslt = buf;
3648   else if (ts) New(1316,rslt,strlen(path)+9,char);
3649   else rslt = __tovmsspec_retbuf;
3650   if (strpbrk(path,"]:>") ||
3651       (dirend = strrchr(path,'/')) == NULL) {
3652     if (path[0] == '.') {
3653       if (path[1] == '\0') strcpy(rslt,"[]");
3654       else if (path[1] == '.' && path[2] == '\0') strcpy(rslt,"[-]");
3655       else strcpy(rslt,path); /* probably garbage */
3656     }
3657     else strcpy(rslt,path);
3658     return rslt;
3659   }
3660   if (*(dirend+1) == '.') {  /* do we have trailing "/." or "/.." or "/..."? */
3661     if (!*(dirend+2)) dirend +=2;
3662     if (*(dirend+2) == '.' && !*(dirend+3)) dirend += 3;
3663     if (*(dirend+2) == '.' && *(dirend+3) == '.' && !*(dirend+4)) dirend += 4;
3664   }
3665   cp1 = rslt;
3666   cp2 = path;
3667   if (*cp2 == '/') {
3668     char trndev[NAM$C_MAXRSS+1];
3669     int islnm, rooted;
3670     STRLEN trnend;
3671
3672     while (*(cp2+1) == '/') cp2++;  /* Skip multiple /s */
3673     if (!*(cp2+1)) {
3674       if (!buf & ts) Renew(rslt,18,char);
3675       strcpy(rslt,"sys$disk:[000000]");
3676       return rslt;
3677     }
3678     while (*(++cp2) != '/' && *cp2) *(cp1++) = *cp2;
3679     *cp1 = '\0';
3680     islnm =  my_trnlnm(rslt,trndev,0);
3681     trnend = islnm ? strlen(trndev) - 1 : 0;
3682     islnm =  trnend ? (trndev[trnend] == ']' || trndev[trnend] == '>') : 0;
3683     rooted = islnm ? (trndev[trnend-1] == '.') : 0;
3684     /* If the first element of the path is a logical name, determine
3685      * whether it has to be translated so we can add more directories. */
3686     if (!islnm || rooted) {
3687       *(cp1++) = ':';
3688       *(cp1++) = '[';
3689       if (cp2 == dirend) while (infront++ < 6) *(cp1++) = '0';
3690       else cp2++;
3691     }
3692     else {
3693       if (cp2 != dirend) {
3694         if (!buf && ts) Renew(rslt,strlen(path)-strlen(rslt)+trnend+4,char);
3695         strcpy(rslt,trndev);
3696         cp1 = rslt + trnend;
3697         *(cp1++) = '.';
3698         cp2++;
3699       }
3700       else {
3701         *(cp1++) = ':';
3702         hasdir = 0;
3703       }
3704     }
3705   }
3706   else {
3707     *(cp1++) = '[';
3708     if (*cp2 == '.') {
3709       if (*(cp2+1) == '/' || *(cp2+1) == '\0') {
3710         cp2 += 2;         /* skip over "./" - it's redundant */
3711         *(cp1++) = '.';   /* but it does indicate a relative dirspec */
3712       }
3713       else if (*(cp2+1) == '.' && (*(cp2+2) == '/' || *(cp2+2) == '\0')) {
3714         *(cp1++) = '-';                                 /* "../" --> "-" */
3715         cp2 += 3;
3716       }
3717       else if (*(cp2+1) == '.' && *(cp2+2) == '.' &&
3718                (*(cp2+3) == '/' || *(cp2+3) == '\0')) {
3719         *(cp1++) = '.'; *(cp1++) = '.'; *(cp1++) = '.'; /* ".../" --> "..." */
3720         if (!*(cp2+4)) *(cp1++) = '.'; /* Simulate trailing '/' for later */
3721         cp2 += 4;
3722       }
3723       if (cp2 > dirend) cp2 = dirend;
3724     }
3725     else *(cp1++) = '.';
3726   }
3727   for (; cp2 < dirend; cp2++) {
3728     if (*cp2 == '/') {
3729       if (*(cp2-1) == '/') continue;
3730       if (*(cp1-1) != '.') *(cp1++) = '.';
3731       infront = 0;
3732     }
3733     else if (!infront && *cp2 == '.') {
3734       if (cp2+1 == dirend || *(cp2+1) == '\0') { cp2++; break; }
3735       else if (*(cp2+1) == '/') cp2++;   /* skip over "./" - it's redundant */
3736       else if (*(cp2+1) == '.' && (*(cp2+2) == '/' || *(cp2+2) == '\0')) {
3737         if (*(cp1-1) == '-' || *(cp1-1) == '[') *(cp1++) = '-'; /* handle "../" */
3738         else if (*(cp1-2) == '[') *(cp1-1) = '-';
3739         else {  /* back up over previous directory name */
3740           cp1--;
3741           while (*(cp1-1) != '.' && *(cp1-1) != '[') cp1--;
3742           if (*(cp1-1) == '[') {
3743             memcpy(cp1,"000000.",7);
3744             cp1 += 7;
3745           }
3746         }
3747         cp2 += 2;
3748         if (cp2 == dirend) break;
3749       }
3750       else if ( *(cp2+1) == '.' && *(cp2+2) == '.' &&
3751                 (*(cp2+3) == '/' || *(cp2+3) == '\0') ) {
3752         if (*(cp1-1) != '.') *(cp1++) = '.'; /* May already have 1 from '/' */
3753         *(cp1++) = '.'; *(cp1++) = '.'; /* ".../" --> "..." */
3754         if (!*(cp2+3)) { 
3755           *(cp1++) = '.';  /* Simulate trailing '/' */
3756           cp2 += 2;  /* for loop will incr this to == dirend */
3757         }
3758         else cp2 += 3;  /* Trailing '/' was there, so skip it, too */
3759       }
3760       else *(cp1++) = '_';  /* fix up syntax - '.' in name not allowed */
3761     }
3762     else {
3763       if (!infront && *(cp1-1) == '-')  *(cp1++) = '.';
3764       if (*cp2 == '.')      *(cp1++) = '_';
3765       else                  *(cp1++) =  *cp2;
3766       infront = 1;
3767     }
3768   }
3769   if (*(cp1-1) == '.') cp1--; /* Unix spec ending in '/' ==> trailing '.' */
3770   if (hasdir) *(cp1++) = ']';
3771   if (*cp2) cp2++;  /* check in case we ended with trailing '..' */
3772   while (*cp2) *(cp1++) = *(cp2++);
3773   *cp1 = '\0';
3774
3775   return rslt;
3776
3777 }  /* end of do_tovmsspec() */
3778 /*}}}*/
3779 /* External entry points */
3780 char *Perl_tovmsspec(pTHX_ char *path, char *buf) { return do_tovmsspec(path,buf,0); }
3781 char *Perl_tovmsspec_ts(pTHX_ char *path, char *buf) { return do_tovmsspec(path,buf,1); }
3782
3783 /*{{{ char *tovmspath[_ts](char *path, char *buf)*/
3784 static char *mp_do_tovmspath(pTHX_ char *path, char *buf, int ts) {
3785   static char __tovmspath_retbuf[NAM$C_MAXRSS+1];
3786   int vmslen;
3787   char pathified[NAM$C_MAXRSS+1], vmsified[NAM$C_MAXRSS+1], *cp;
3788
3789   if (path == NULL) return NULL;
3790   if (do_pathify_dirspec(path,pathified,0) == NULL) return NULL;
3791   if (do_tovmsspec(pathified,buf ? buf : vmsified,0) == NULL) return NULL;
3792   if (buf) return buf;
3793   else if (ts) {
3794     vmslen = strlen(vmsified);
3795     New(1317,cp,vmslen+1,char);
3796     memcpy(cp,vmsified,vmslen);
3797     cp[vmslen] = '\0';
3798     return cp;
3799   }
3800   else {
3801     strcpy(__tovmspath_retbuf,vmsified);
3802     return __tovmspath_retbuf;
3803   }
3804
3805 }  /* end of do_tovmspath() */
3806 /*}}}*/
3807 /* External entry points */
3808 char *Perl_tovmspath(pTHX_ char *path, char *buf) { return do_tovmspath(path,buf,0); }
3809 char *Perl_tovmspath_ts(pTHX_ char *path, char *buf) { return do_tovmspath(path,buf,1); }
3810
3811
3812 /*{{{ char *tounixpath[_ts](char *path, char *buf)*/
3813 static char *mp_do_tounixpath(pTHX_ char *path, char *buf, int ts) {
3814   static char __tounixpath_retbuf[NAM$C_MAXRSS+1];
3815   int unixlen;
3816   char pathified[NAM$C_MAXRSS+1], unixified[NAM$C_MAXRSS+1], *cp;
3817
3818   if (path == NULL) return NULL;
3819   if (do_pathify_dirspec(path,pathified,0) == NULL) return NULL;
3820   if (do_tounixspec(pathified,buf ? buf : unixified,0) == NULL) return NULL;
3821   if (buf) return buf;
3822   else if (ts) {
3823     unixlen = strlen(unixified);
3824     New(1317,cp,unixlen+1,char);
3825     memcpy(cp,unixified,unixlen);
3826     cp[unixlen] = '\0';
3827     return cp;
3828   }
3829   else {
3830     strcpy(__tounixpath_retbuf,unixified);
3831     return __tounixpath_retbuf;
3832   }
3833
3834 }  /* end of do_tounixpath() */
3835 /*}}}*/
3836 /* External entry points */
3837 char *Perl_tounixpath(pTHX_ char *path, char *buf) { return do_tounixpath(path,buf,0); }
3838 char *Perl_tounixpath_ts(pTHX_ char *path, char *buf) { return do_tounixpath(path,buf,1); }
3839
3840 /*
3841  * @(#)argproc.c 2.2 94/08/16   Mark Pizzolato (mark@infocomm.com)
3842  *
3843  *****************************************************************************
3844  *                                                                           *
3845  *  Copyright (C) 1989-1994 by                                               *
3846  *  Mark Pizzolato - INFO COMM, Danville, California  (510) 837-5600         *
3847  *                                                                           *
3848  *  Permission is hereby  granted for the reproduction of this software,     *
3849  *  on condition that this copyright notice is included in the reproduction, *
3850  *  and that such reproduction is not for purposes of profit or material     *
3851  *  gain.                                                                    *
3852  *                                                                           *
3853  *  27-Aug-1994 Modified for inclusion in perl5                              *
3854  *              by Charles Bailey  bailey@newman.upenn.edu                   *
3855  *****************************************************************************
3856  */
3857
3858 /*
3859  * getredirection() is intended to aid in porting C programs
3860  * to VMS (Vax-11 C).  The native VMS environment does not support 
3861  * '>' and '<' I/O redirection, or command line wild card expansion, 
3862  * or a command line pipe mechanism using the '|' AND background 
3863  * command execution '&'.  All of these capabilities are provided to any
3864  * C program which calls this procedure as the first thing in the 
3865  * main program.
3866  * The piping mechanism will probably work with almost any 'filter' type
3867  * of program.  With suitable modification, it may useful for other
3868  * portability problems as well.
3869  *
3870  * Author:  Mark Pizzolato      mark@infocomm.com
3871  */
3872 struct list_item
3873     {
3874     struct list_item *next;
3875     char *value;
3876     };
3877
3878 static void add_item(struct list_item **head,
3879                      struct list_item **tail,
3880                      char *value,
3881                      int *count);
3882
3883 static void mp_expand_wild_cards(pTHX_ char *item,
3884                                 struct list_item **head,
3885                                 struct list_item **tail,
3886                                 int *count);
3887
3888 static int background_process(int argc, char **argv);
3889
3890 static void pipe_and_fork(pTHX_ char **cmargv);
3891
3892 /*{{{ void getredirection(int *ac, char ***av)*/
3893 static void
3894 mp_getredirection(pTHX_ int *ac, char ***av)
3895 /*
3896  * Process vms redirection arg's.  Exit if any error is seen.
3897  * If getredirection() processes an argument, it is erased
3898  * from the vector.  getredirection() returns a new argc and argv value.
3899  * In the event that a background command is requested (by a trailing "&"),
3900  * this routine creates a background subprocess, and simply exits the program.
3901  *
3902  * Warning: do not try to simplify the code for vms.  The code
3903  * presupposes that getredirection() is called before any data is
3904  * read from stdin or written to stdout.
3905  *
3906  * Normal usage is as follows:
3907  *
3908  *      main(argc, argv)
3909  *      int             argc;
3910  *      char            *argv[];
3911  *      {
3912  *              getredirection(&argc, &argv);
3913  *      }
3914  */
3915 {
3916     int                 argc = *ac;     /* Argument Count         */
3917     char                **argv = *av;   /* Argument Vector        */
3918     char                *ap;            /* Argument pointer       */
3919     int                 j;              /* argv[] index           */
3920     int                 item_count = 0; /* Count of Items in List */
3921     struct list_item    *list_head = 0; /* First Item in List       */
3922     struct list_item    *list_tail;     /* Last Item in List        */
3923     char                *in = NULL;     /* Input File Name          */
3924     char                *out = NULL;    /* Output File Name         */
3925     char                *outmode = "w"; /* Mode to Open Output File */
3926     char                *err = NULL;    /* Error File Name          */
3927     char                *errmode = "w"; /* Mode to Open Error File  */
3928     int                 cmargc = 0;     /* Piped Command Arg Count  */
3929     char                **cmargv = NULL;/* Piped Command Arg Vector */
3930
3931     /*
3932      * First handle the case where the last thing on the line ends with
3933      * a '&'.  This indicates the desire for the command to be run in a
3934      * subprocess, so we satisfy that desire.
3935      */
3936     ap = argv[argc-1];
3937     if (0 == strcmp("&", ap))
3938         exit(background_process(--argc, argv));
3939     if (*ap && '&' == ap[strlen(ap)-1])
3940         {
3941         ap[strlen(ap)-1] = '\0';
3942         exit(background_process(argc, argv));
3943         }
3944     /*
3945      * Now we handle the general redirection cases that involve '>', '>>',
3946      * '<', and pipes '|'.
3947      */
3948     for (j = 0; j < argc; ++j)
3949         {
3950         if (0 == strcmp("<", argv[j]))
3951             {
3952             if (j+1 >= argc)
3953                 {
3954                 fprintf(stderr,"No input file after < on command line");
3955                 exit(LIB$_WRONUMARG);
3956                 }
3957             in = argv[++j];
3958             continue;
3959             }
3960         if ('<' == *(ap = argv[j]))
3961             {
3962             in = 1 + ap;
3963             continue;
3964             }
3965         if (0 == strcmp(">", ap))
3966             {
3967             if (j+1 >= argc)
3968                 {
3969                 fprintf(stderr,"No output file after > on command line");
3970                 exit(LIB$_WRONUMARG);
3971                 }
3972             out = argv[++j];
3973             continue;
3974             }
3975         if ('>' == *ap)
3976             {
3977             if ('>' == ap[1])
3978                 {
3979                 outmode = "a";
3980                 if ('\0' == ap[2])
3981                     out = argv[++j];
3982                 else
3983                     out = 2 + ap;
3984                 }
3985             else
3986                 out = 1 + ap;
3987             if (j >= argc)
3988                 {
3989                 fprintf(stderr,"No output file after > or >> on command line");
3990                 exit(LIB$_WRONUMARG);
3991                 }
3992             continue;
3993             }
3994         if (('2' == *ap) && ('>' == ap[1]))
3995             {
3996             if ('>' == ap[2])
3997                 {
3998                 errmode = "a";
3999                 if ('\0' == ap[3])
4000                     err = argv[++j];
4001                 else
4002                     err = 3 + ap;
4003                 }
4004             else
4005                 if ('\0' == ap[2])
4006                     err = argv[++j];
4007                 else
4008                     err = 2 + ap;
4009             if (j >= argc)
4010                 {
4011                 fprintf(stderr,"No output file after 2> or 2>> on command line");
4012                 exit(LIB$_WRONUMARG);
4013                 }
4014             continue;
4015             }
4016         if (0 == strcmp("|", argv[j]))
4017             {
4018             if (j+1 >= argc)
4019                 {
4020                 fprintf(stderr,"No command into which to pipe on command line");
4021                 exit(LIB$_WRONUMARG);
4022                 }
4023             cmargc = argc-(j+1);
4024             cmargv = &argv[j+1];
4025             argc = j;
4026             continue;
4027             }
4028         if ('|' == *(ap = argv[j]))
4029             {
4030             ++argv[j];
4031             cmargc = argc-j;
4032             cmargv = &argv[j];
4033             argc = j;
4034             continue;
4035             }
4036         expand_wild_cards(ap, &list_head, &list_tail, &item_count);
4037         }
4038     /*
4039      * Allocate and fill in the new argument vector, Some Unix's terminate
4040      * the list with an extra null pointer.
4041      */
4042     New(1302, argv, item_count+1, char *);
4043     *av = argv;
4044     for (j = 0; j < item_count; ++j, list_head = list_head->next)
4045         argv[j] = list_head->value;
4046     *ac = item_count;
4047     if (cmargv != NULL)
4048         {
4049         if (out != NULL)
4050             {
4051             fprintf(stderr,"'|' and '>' may not both be specified on command line");
4052             exit(LIB$_INVARGORD);
4053             }
4054         pipe_and_fork(aTHX_ cmargv);
4055         }
4056         
4057     /* Check for input from a pipe (mailbox) */
4058
4059     if (in == NULL && 1 == isapipe(0))
4060         {
4061         char mbxname[L_tmpnam];
4062         long int bufsize;
4063         long int dvi_item = DVI$_DEVBUFSIZ;
4064         $DESCRIPTOR(mbxnam, "");
4065         $DESCRIPTOR(mbxdevnam, "");
4066
4067         /* Input from a pipe, reopen it in binary mode to disable       */
4068         /* carriage control processing.                                 */
4069
4070         fgetname(stdin, mbxname);
4071         mbxnam.dsc$a_pointer = mbxname;
4072         mbxnam.dsc$w_length = strlen(mbxnam.dsc$a_pointer);     
4073         lib$getdvi(&dvi_item, 0, &mbxnam, &bufsize, 0, 0);
4074         mbxdevnam.dsc$a_pointer = mbxname;
4075         mbxdevnam.dsc$w_length = sizeof(mbxname);
4076         dvi_item = DVI$_DEVNAM;
4077         lib$getdvi(&dvi_item, 0, &mbxnam, 0, &mbxdevnam, &mbxdevnam.dsc$w_length);
4078         mbxdevnam.dsc$a_pointer[mbxdevnam.dsc$w_length] = '\0';
4079         set_errno(0);
4080         set_vaxc_errno(1);
4081         freopen(mbxname, "rb", stdin);
4082         if (errno != 0)
4083             {
4084             fprintf(stderr,"Can't reopen input pipe (name: %s) in binary mode",mbxname);
4085             exit(vaxc$errno);
4086             }
4087         }
4088     if ((in != NULL) && (NULL == freopen(in, "r", stdin, "mbc=32", "mbf=2")))
4089         {
4090         fprintf(stderr,"Can't open input file %s as stdin",in);
4091         exit(vaxc$errno);
4092         }
4093     if ((out != NULL) && (NULL == freopen(out, outmode, stdout, "mbc=32", "mbf=2")))
4094         {       
4095         fprintf(stderr,"Can't open output file %s as stdout",out);
4096         exit(vaxc$errno);
4097         }
4098         if (out != NULL) Perl_vmssetuserlnm(aTHX_ "SYS$OUTPUT",out);
4099
4100     if (err != NULL) {
4101         if (strcmp(err,"&1") == 0) {
4102             dup2(fileno(stdout), fileno(stderr));
4103             Perl_vmssetuserlnm(aTHX_ "SYS$ERROR","SYS$OUTPUT");
4104         } else {
4105         FILE *tmperr;
4106         if (NULL == (tmperr = fopen(err, errmode, "mbc=32", "mbf=2")))
4107             {
4108             fprintf(stderr,"Can't open error file %s as stderr",err);
4109             exit(vaxc$errno);
4110             }
4111             fclose(tmperr);
4112            if (NULL == freopen(err, "a", stderr, "mbc=32", "mbf=2"))
4113                 {
4114                 exit(vaxc$errno);
4115                 }
4116             Perl_vmssetuserlnm(aTHX_ "SYS$ERROR",err);
4117         }
4118         }
4119 #ifdef ARGPROC_DEBUG
4120     PerlIO_printf(Perl_debug_log, "Arglist:\n");
4121     for (j = 0; j < *ac;  ++j)
4122         PerlIO_printf(Perl_debug_log, "argv[%d] = '%s'\n", j, argv[j]);
4123 #endif
4124    /* Clear errors we may have hit expanding wildcards, so they don't
4125       show up in Perl's $! later */
4126    set_errno(0); set_vaxc_errno(1);
4127 }  /* end of getredirection() */
4128 /*}}}*/
4129
4130 static void add_item(struct list_item **head,
4131                      struct list_item **tail,
4132                      char *value,
4133                      int *count)
4134 {
4135     if (*head == 0)
4136         {
4137         New(1303,*head,1,struct list_item);
4138         *tail = *head;
4139         }
4140     else {
4141         New(1304,(*tail)->next,1,struct list_item);
4142         *tail = (*tail)->next;
4143         }
4144     (*tail)->value = value;
4145     ++(*count);
4146 }
4147
4148 static void mp_expand_wild_cards(pTHX_ char *item,
4149                               struct list_item **head,
4150                               struct list_item **tail,
4151                               int *count)
4152 {
4153 int expcount = 0;
4154 unsigned long int context = 0;
4155 int isunix = 0;
4156 char *had_version;
4157 char *had_device;
4158 int had_directory;
4159 char *devdir,*cp;
4160 char vmsspec[NAM$C_MAXRSS+1];
4161 $DESCRIPTOR(filespec, "");
4162 $DESCRIPTOR(defaultspec, "SYS$DISK:[]");
4163 $DESCRIPTOR(resultspec, "");
4164 unsigned long int zero = 0, sts;
4165
4166     for (cp = item; *cp; cp++) {
4167         if (*cp == '*' || *cp == '%' || isspace(*cp)) break;
4168         if (*cp == '.' && *(cp-1) == '.' && *(cp-2) =='.') break;
4169     }
4170     if (!*cp || isspace(*cp))
4171         {
4172         add_item(head, tail, item, count);
4173         return;
4174         }
4175     resultspec.dsc$b_dtype = DSC$K_DTYPE_T;
4176     resultspec.dsc$b_class = DSC$K_CLASS_D;
4177     resultspec.dsc$a_pointer = NULL;
4178     if ((isunix = (int) strchr(item,'/')) != (int) NULL)
4179       filespec.dsc$a_pointer = do_tovmsspec(item,vmsspec,0);
4180     if (!isunix || !filespec.dsc$a_pointer)
4181       filespec.dsc$a_pointer = item;
4182     filespec.dsc$w_length = strlen(filespec.dsc$a_pointer);
4183     /*
4184      * Only return version specs, if the caller specified a version
4185      */
4186     had_version = strchr(item, ';');
4187     /*
4188      * Only return device and directory specs, if the caller specifed either.
4189      */
4190     had_device = strchr(item, ':');
4191     had_directory = (isunix || NULL != strchr(item, '[')) || (NULL != strchr(item, '<'));
4192     
4193     while (1 == (1 & (sts = lib$find_file(&filespec, &resultspec, &context,
4194                                   &defaultspec, 0, 0, &zero))))
4195         {
4196         char *string;
4197         char *c;
4198
4199         New(1305,string,resultspec.dsc$w_length+1,char);
4200         strncpy(string, resultspec.dsc$a_pointer, resultspec.dsc$w_length);
4201         string[resultspec.dsc$w_length] = '\0';
4202         if (NULL == had_version)
4203             *((char *)strrchr(string, ';')) = '\0';
4204         if ((!had_directory) && (had_device == NULL))
4205             {
4206             if (NULL == (devdir = strrchr(string, ']')))
4207                 devdir = strrchr(string, '>');
4208             strcpy(string, devdir + 1);
4209             }
4210         /*
4211          * Be consistent with what the C RTL has already done to the rest of
4212          * the argv items and lowercase all of these names.
4213          */
4214         for (c = string; *c; ++c)
4215             if (isupper(*c))
4216                 *c = tolower(*c);
4217         if (isunix) trim_unixpath(string,item,1);
4218         add_item(head, tail, string, count);
4219         ++expcount;
4220         }
4221     if (sts != RMS$_NMF)
4222         {
4223         set_vaxc_errno(sts);
4224         switch (sts)
4225             {
4226             case RMS$_FNF: case RMS$_DNF:
4227                 set_errno(ENOENT); break;
4228             case RMS$_DIR:
4229                 set_errno(ENOTDIR); break;
4230             case RMS$_DEV:
4231                 set_errno(ENODEV); break;
4232             case RMS$_FNM: case RMS$_SYN:
4233                 set_errno(EINVAL); break;
4234             case RMS$_PRV:
4235                 set_errno(EACCES); break;
4236             default:
4237                 _ckvmssts_noperl(sts);
4238             }
4239         }
4240     if (expcount == 0)
4241         add_item(head, tail, item, count);
4242     _ckvmssts_noperl(lib$sfree1_dd(&resultspec));
4243     _ckvmssts_noperl(lib$find_file_end(&context));
4244 }
4245
4246 static int child_st[2];/* Event Flag set when child process completes   */
4247
4248 static unsigned short child_chan;/* I/O Channel for Pipe Mailbox                */
4249
4250 static unsigned long int exit_handler(int *status)
4251 {
4252 short iosb[4];
4253
4254     if (0 == child_st[0])
4255         {
4256 #ifdef ARGPROC_DEBUG
4257         PerlIO_printf(Perl_debug_log, "Waiting for Child Process to Finish . . .\n");
4258 #endif
4259         fflush(stdout);     /* Have to flush pipe for binary data to    */
4260                             /* terminate properly -- <tp@mccall.com>    */
4261         sys$qiow(0, child_chan, IO$_WRITEOF, iosb, 0, 0, 0, 0, 0, 0, 0, 0);
4262         sys$dassgn(child_chan);
4263         fclose(stdout);
4264         sys$synch(0, child_st);
4265         }
4266     return(1);
4267 }
4268
4269 static void sig_child(int chan)
4270 {
4271 #ifdef ARGPROC_DEBUG
4272     PerlIO_printf(Perl_debug_log, "Child Completion AST\n");
4273 #endif
4274     if (child_st[0] == 0)
4275         child_st[0] = 1;
4276 }
4277
4278 static struct exit_control_block exit_block =
4279     {
4280     0,
4281     exit_handler,
4282     1,
4283     &exit_block.exit_status,
4284     0
4285     };
4286
4287 static void 
4288 pipe_and_fork(pTHX_ char **cmargv)
4289 {
4290     PerlIO *fp;
4291     struct dsc$descriptor_s *vmscmd;
4292     char subcmd[2*MAX_DCL_LINE_LENGTH], *p, *q;
4293     int sts, j, l, ismcr, quote, tquote = 0;
4294
4295     sts = setup_cmddsc(aTHX_ cmargv[0],0,&quote,&vmscmd);
4296     vms_execfree(vmscmd);
4297
4298     j = l = 0;
4299     p = subcmd;
4300     q = cmargv[0];
4301     ismcr = q && toupper(*q) == 'M'     && toupper(*(q+1)) == 'C' 
4302               && toupper(*(q+2)) == 'R' && !*(q+3);
4303
4304     while (q && l < MAX_DCL_LINE_LENGTH) {
4305         if (!*q) {
4306             if (j > 0 && quote) {
4307                 *p++ = '"';
4308                 l++;
4309             }
4310             q = cmargv[++j];
4311             if (q) {
4312                 if (ismcr && j > 1) quote = 1;
4313                 tquote =  (strchr(q,' ')) != NULL || *q == '\0';
4314                 *p++ = ' ';
4315                 l++;
4316                 if (quote || tquote) {
4317                     *p++ = '"';
4318                     l++;
4319                 }
4320         }
4321         } else {
4322             if ((quote||tquote) && *q == '"') {
4323                 *p++ = '"';
4324                 l++;
4325         }
4326             *p++ = *q++;
4327             l++;
4328         }
4329     }
4330     *p = '\0';
4331
4332     fp = safe_popen(aTHX_ subcmd,"wbF",&sts);
4333     if (fp == Nullfp) {
4334         PerlIO_printf(Perl_debug_log,"Can't open output pipe (status %d)",sts);
4335         }
4336 }
4337
4338 static int background_process(int argc, char **argv)
4339 {
4340 char command[2048] = "$";
4341 $DESCRIPTOR(value, "");
4342 static $DESCRIPTOR(cmd, "BACKGROUND$COMMAND");
4343 static $DESCRIPTOR(null, "NLA0:");
4344 static $DESCRIPTOR(pidsymbol, "SHELL_BACKGROUND_PID");
4345 char pidstring[80];
4346 $DESCRIPTOR(pidstr, "");
4347 int pid;
4348 unsigned long int flags = 17, one = 1, retsts;
4349
4350     strcat(command, argv[0]);
4351     while (--argc)
4352         {
4353         strcat(command, " \"");
4354         strcat(command, *(++argv));
4355         strcat(command, "\"");
4356         }
4357     value.dsc$a_pointer = command;
4358     value.dsc$w_length = strlen(value.dsc$a_pointer);
4359     _ckvmssts_noperl(lib$set_symbol(&cmd, &value));
4360     retsts = lib$spawn(&cmd, &null, 0, &flags, 0, &pid);
4361     if (retsts == 0x38250) { /* DCL-W-NOTIFY - We must be BATCH, so retry */
4362         _ckvmssts_noperl(lib$spawn(&cmd, &null, 0, &one, 0, &pid));
4363     }
4364     else {
4365         _ckvmssts_noperl(retsts);
4366     }
4367 #ifdef ARGPROC_DEBUG
4368     PerlIO_printf(Perl_debug_log, "%s\n", command);
4369 #endif
4370     sprintf(pidstring, "%08X", pid);
4371     PerlIO_printf(Perl_debug_log, "%s\n", pidstring);
4372     pidstr.dsc$a_pointer = pidstring;
4373     pidstr.dsc$w_length = strlen(pidstr.dsc$a_pointer);
4374     lib$set_symbol(&pidsymbol, &pidstr);
4375     return(SS$_NORMAL);
4376 }
4377 /*}}}*/
4378 /***** End of code taken from Mark Pizzolato's argproc.c package *****/
4379
4380
4381 /* OS-specific initialization at image activation (not thread startup) */
4382 /* Older VAXC header files lack these constants */
4383 #ifndef JPI$_RIGHTS_SIZE
4384 #  define JPI$_RIGHTS_SIZE 817
4385 #endif
4386 #ifndef KGB$M_SUBSYSTEM
4387 #  define KGB$M_SUBSYSTEM 0x8
4388 #endif
4389
4390 /*{{{void vms_image_init(int *, char ***)*/
4391 void
4392 vms_image_init(int *argcp, char ***argvp)
4393 {
4394   char eqv[LNM$C_NAMLENGTH+1] = "";
4395   unsigned int len, tabct = 8, tabidx = 0;
4396   unsigned long int *mask, iosb[2], i, rlst[128], rsz;
4397   unsigned long int iprv[(sizeof(union prvdef) + sizeof(unsigned long int) - 1) / sizeof(unsigned long int)];
4398   unsigned short int dummy, rlen;
4399   struct dsc$descriptor_s **tabvec;
4400 #if defined(PERL_IMPLICIT_CONTEXT)
4401   pTHX = NULL;
4402 #endif
4403   struct itmlst_3 jpilist[4] = { {sizeof iprv,    JPI$_IMAGPRIV, iprv, &dummy},
4404                                  {sizeof rlst,  JPI$_RIGHTSLIST, rlst,  &rlen},
4405                                  { sizeof rsz, JPI$_RIGHTS_SIZE, &rsz, &dummy},
4406                                  {          0,                0,    0,      0} };
4407
4408 #ifdef KILL_BY_SIGPRC
4409     (void) Perl_csighandler_init();
4410 #endif
4411
4412   _ckvmssts_noperl(sys$getjpiw(0,NULL,NULL,jpilist,iosb,NULL,NULL));
4413   _ckvmssts_noperl(iosb[0]);
4414   for (i = 0; i < sizeof iprv / sizeof(unsigned long int); i++) {
4415     if (iprv[i]) {           /* Running image installed with privs? */
4416       _ckvmssts_noperl(sys$setprv(0,iprv,0,NULL));       /* Turn 'em off. */
4417       will_taint = TRUE;
4418       break;
4419     }
4420   }
4421   /* Rights identifiers might trigger tainting as well. */
4422   if (!will_taint && (rlen || rsz)) {
4423     while (rlen < rsz) {
4424       /* We didn't get all the identifiers on the first pass.  Allocate a
4425        * buffer much larger than $GETJPI wants (rsz is size in bytes that
4426        * were needed to hold all identifiers at time of last call; we'll
4427        * allocate that many unsigned long ints), and go back and get 'em.
4428        * If it gave us less than it wanted to despite ample buffer space, 
4429        * something's broken.  Is your system missing a system identifier?
4430        */
4431       if (rsz <= jpilist[1].buflen) { 
4432          /* Perl_croak accvios when used this early in startup. */
4433          fprintf(stderr, "vms_image_init: $getjpiw refuses to store RIGHTSLIST of %u bytes in buffer of %u bytes.\n%s", 
4434                          rsz, (unsigned long) jpilist[1].buflen,
4435                          "Check your rights database for corruption.\n");
4436          exit(SS$_ABORT);
4437       }
4438       if (jpilist[1].bufadr != rlst) Safefree(jpilist[1].bufadr);
4439       jpilist[1].bufadr = New(1320,mask,rsz,unsigned long int);
4440       jpilist[1].buflen = rsz * sizeof(unsigned long int);
4441       _ckvmssts_noperl(sys$getjpiw(0,NULL,NULL,&jpilist[1],iosb,NULL,NULL));
4442       _ckvmssts_noperl(iosb[0]);
4443     }
4444     mask = jpilist[1].bufadr;
4445     /* Check attribute flags for each identifier (2nd longword); protected
4446      * subsystem identifiers trigger tainting.
4447      */
4448     for (i = 1; i < (rlen + sizeof(unsigned long int) - 1) / sizeof(unsigned long int); i += 2) {
4449       if (mask[i] & KGB$M_SUBSYSTEM) {
4450         will_taint = TRUE;
4451         break;
4452       }
4453     }
4454     if (mask != rlst) Safefree(mask);
4455   }
4456   /* We need to use this hack to tell Perl it should run with tainting,
4457    * since its tainting flag may be part of the PL_curinterp struct, which
4458    * hasn't been allocated when vms_image_init() is called.
4459    */
4460   if (will_taint) {
4461     char ***newap;
4462     New(1320,newap,*argcp+2,char **);
4463     newap[0] = argvp[0];
4464     *newap[1] = "-T";
4465     Copy(argvp[1],newap[2],*argcp-1,char **);
4466     /* We orphan the old argv, since we don't know where it's come from,
4467      * so we don't know how to free it.
4468      */
4469     *argcp++; argvp = newap;
4470   }
4471   else {  /* Did user explicitly request tainting? */
4472     int i;
4473     char *cp, **av = *argvp;
4474     for (i = 1; i < *argcp; i++) {
4475       if (*av[i] != '-') break;
4476       for (cp = av[i]+1; *cp; cp++) {
4477         if (*cp == 'T') { will_taint = 1; break; }
4478         else if ( (*cp == 'd' || *cp == 'V') && *(cp+1) == ':' ||
4479                   strchr("DFIiMmx",*cp)) break;
4480       }
4481       if (will_taint) break;
4482     }
4483   }
4484
4485   for (tabidx = 0;
4486        len = my_trnlnm("PERL_ENV_TABLES",eqv,tabidx);
4487        tabidx++) {
4488     if (!tabidx) New(1321,tabvec,tabct,struct dsc$descriptor_s *);
4489     else if (tabidx >= tabct) {
4490       tabct += 8;
4491       Renew(tabvec,tabct,struct dsc$descriptor_s *);
4492     }
4493     New(1322,tabvec[tabidx],1,struct dsc$descriptor_s);
4494     tabvec[tabidx]->dsc$w_length  = 0;
4495     tabvec[tabidx]->dsc$b_dtype   = DSC$K_DTYPE_T;
4496     tabvec[tabidx]->dsc$b_class   = DSC$K_CLASS_D;
4497     tabvec[tabidx]->dsc$a_pointer = NULL;
4498     _ckvmssts_noperl(lib$scopy_r_dx(&len,eqv,tabvec[tabidx]));
4499   }
4500   if (tabidx) { tabvec[tabidx] = NULL; env_tables = tabvec; }
4501
4502   getredirection(argcp,argvp);
4503 #if defined(USE_5005THREADS) && ( defined(__DECC) || defined(__DECCXX) )
4504   {
4505 # include <reentrancy.h>
4506   (void) decc$set_reentrancy(C$C_MULTITHREAD);
4507   }
4508 #endif
4509   return;
4510 }
4511 /*}}}*/
4512
4513
4514 /* trim_unixpath()
4515  * Trim Unix-style prefix off filespec, so it looks like what a shell
4516  * glob expansion would return (i.e. from specified prefix on, not
4517  * full path).  Note that returned filespec is Unix-style, regardless
4518  * of whether input filespec was VMS-style or Unix-style.
4519  *
4520  * fspec is filespec to be trimmed, and wildspec is wildcard spec used to
4521  * determine prefix (both may be in VMS or Unix syntax).  opts is a bit
4522  * vector of options; at present, only bit 0 is used, and if set tells
4523  * trim unixpath to try the current default directory as a prefix when
4524  * presented with a possibly ambiguous ... wildcard.
4525  *
4526  * Returns !=0 on success, with trimmed filespec replacing contents of
4527  * fspec, and 0 on failure, with contents of fpsec unchanged.
4528  */
4529 /*{{{int trim_unixpath(char *fspec, char *wildspec, int opts)*/
4530 int
4531 Perl_trim_unixpath(pTHX_ char *fspec, char *wildspec, int opts)
4532 {
4533   char unixified[NAM$C_MAXRSS+1], unixwild[NAM$C_MAXRSS+1],
4534        *template, *base, *end, *cp1, *cp2;
4535   register int tmplen, reslen = 0, dirs = 0;
4536
4537   if (!wildspec || !fspec) return 0;
4538   if (strpbrk(wildspec,"]>:") != NULL) {
4539     if (do_tounixspec(wildspec,unixwild,0) == NULL) return 0;
4540     else template = unixwild;
4541   }
4542   else template = wildspec;
4543   if (strpbrk(fspec,"]>:") != NULL) {
4544     if (do_tounixspec(fspec,unixified,0) == NULL) return 0;
4545     else base = unixified;
4546     /* reslen != 0 ==> we had to unixify resultant filespec, so we must
4547      * check to see that final result fits into (isn't longer than) fspec */
4548     reslen = strlen(fspec);
4549   }
4550   else base = fspec;
4551
4552   /* No prefix or absolute path on wildcard, so nothing to remove */
4553   if (!*template || *template == '/') {
4554     if (base == fspec) return 1;
4555     tmplen = strlen(unixified);
4556     if (tmplen > reslen) return 0;  /* not enough space */
4557     /* Copy unixified resultant, including trailing NUL */
4558     memmove(fspec,unixified,tmplen+1);
4559     return 1;
4560   }
4561
4562   for (end = base; *end; end++) ;  /* Find end of resultant filespec */
4563   if ((cp1 = strstr(template,".../")) == NULL) { /* No ...; just count elts */
4564     for (cp1 = template; *cp1; cp1++) if (*cp1 == '/') dirs++;
4565     for (cp1 = end ;cp1 >= base; cp1--)
4566       if ((*cp1 == '/') && !dirs--) /* postdec so we get front of rel path */
4567         { cp1++; break; }
4568     if (cp1 != fspec) memmove(fspec,cp1, end - cp1 + 1);
4569     return 1;
4570   }
4571   else {
4572     char tpl[NAM$C_MAXRSS+1], lcres[NAM$C_MAXRSS+1];
4573     char *front, *nextell, *lcend, *lcfront, *ellipsis = cp1;
4574     int ells = 1, totells, segdirs, match;
4575     struct dsc$descriptor_s wilddsc = {0, DSC$K_DTYPE_T, DSC$K_CLASS_S, tpl},
4576                             resdsc =  {0, DSC$K_DTYPE_T, DSC$K_CLASS_S, 0};
4577
4578     while ((cp1 = strstr(ellipsis+4,".../")) != NULL) {ellipsis = cp1; ells++;}
4579     totells = ells;
4580     for (cp1 = ellipsis+4; *cp1; cp1++) if (*cp1 == '/') dirs++;
4581     if (ellipsis == template && opts & 1) {
4582       /* Template begins with an ellipsis.  Since we can't tell how many
4583        * directory names at the front of the resultant to keep for an
4584        * arbitrary starting point, we arbitrarily choose the current
4585        * default directory as a starting point.  If it's there as a prefix,
4586        * clip it off.  If not, fall through and act as if the leading
4587        * ellipsis weren't there (i.e. return shortest possible path that
4588        * could match template).
4589        */
4590       if (getcwd(tpl, sizeof tpl,0) == NULL) return 0;
4591       for (cp1 = tpl, cp2 = base; *cp1 && *cp2; cp1++,cp2++)
4592         if (_tolower(*cp1) != _tolower(*cp2)) break;
4593       segdirs = dirs - totells;  /* Min # of dirs we must have left */
4594       for (front = cp2+1; *front; front++) if (*front == '/') segdirs--;
4595       if (*cp1 == '\0' && *cp2 == '/' && segdirs < 1) {
4596         memcpy(fspec,cp2+1,end - cp2);
4597         return 1;
4598       }
4599     }
4600     /* First off, back up over constant elements at end of path */
4601     if (dirs) {
4602       for (front = end ; front >= base; front--)
4603          if (*front == '/' && !dirs--) { front++; break; }
4604     }
4605     for (cp1=template,cp2=lcres; *cp1 && cp2 <= lcres + sizeof lcres;
4606          cp1++,cp2++) *cp2 = _tolower(*cp1);  /* Make lc copy for match */
4607     if (cp1 != '\0') return 0;  /* Path too long. */
4608     lcend = cp2;
4609     *cp2 = '\0';  /* Pick up with memcpy later */
4610     lcfront = lcres + (front - base);
4611     /* Now skip over each ellipsis and try to match the path in front of it. */
4612     while (ells--) {
4613       for (cp1 = ellipsis - 2; cp1 >= template; cp1--)
4614         if (*(cp1)   == '.' && *(cp1+1) == '.' &&
4615             *(cp1+2) == '.' && *(cp1+3) == '/'    ) break;
4616       if (cp1 < template) break; /* template started with an ellipsis */
4617       if (cp1 + 4 == ellipsis) { /* Consecutive ellipses */
4618         ellipsis = cp1; continue;
4619       }
4620       wilddsc.dsc$w_length = resdsc.dsc$w_length = ellipsis - 1 - cp1;
4621       nextell = cp1;
4622       for (segdirs = 0, cp2 = tpl;
4623            cp1 <= ellipsis - 1 && cp2 <= tpl + sizeof tpl;
4624            cp1++, cp2++) {
4625          if (*cp1 == '?') *cp2 = '%'; /* Substitute VMS' wildcard for Unix' */
4626          else *cp2 = _tolower(*cp1);  /* else lowercase for match */
4627          if (*cp2 == '/') segdirs++;
4628       }
4629       if (cp1 != ellipsis - 1) return 0; /* Path too long */
4630       /* Back up at least as many dirs as in template before matching */
4631       for (cp1 = lcfront - 1; segdirs && cp1 >= lcres; cp1--)
4632         if (*cp1 == '/' && !segdirs--) { cp1++; break; }
4633       for (match = 0; cp1 > lcres;) {
4634         resdsc.dsc$a_pointer = cp1;
4635         if (str$match_wild(&wilddsc,&resdsc) == STR$_MATCH) { 
4636           match++;
4637           if (match == 1) lcfront = cp1;
4638         }
4639         for ( ; cp1 >= lcres; cp1--) if (*cp1 == '/') { cp1++; break; }
4640       }
4641       if (!match) return 0;  /* Can't find prefix ??? */
4642       if (match > 1 && opts & 1) {
4643         /* This ... wildcard could cover more than one set of dirs (i.e.
4644          * a set of similar dir names is repeated).  If the template
4645          * contains more than 1 ..., upstream elements could resolve the
4646          * ambiguity, but it's not worth a full backtracking setup here.
4647          * As a quick heuristic, clip off the current default directory
4648          * if it's present to find the trimmed spec, else use the
4649          * shortest string that this ... could cover.
4650          */
4651         char def[NAM$C_MAXRSS+1], *st;
4652
4653         if (getcwd(def, sizeof def,0) == NULL) return 0;
4654         for (cp1 = def, cp2 = base; *cp1 && *cp2; cp1++,cp2++)
4655           if (_tolower(*cp1) != _tolower(*cp2)) break;
4656         segdirs = dirs - totells;  /* Min # of dirs we must have left */
4657         for (st = cp2+1; *st; st++) if (*st == '/') segdirs--;
4658         if (*cp1 == '\0' && *cp2 == '/') {
4659           memcpy(fspec,cp2+1,end - cp2);
4660           return 1;
4661         }
4662         /* Nope -- stick with lcfront from above and keep going. */
4663       }
4664     }
4665     memcpy(fspec,base + (lcfront - lcres), lcend - lcfront + 1);
4666     return 1;
4667     ellipsis = nextell;
4668   }
4669
4670 }  /* end of trim_unixpath() */
4671 /*}}}*/
4672
4673
4674 /*
4675  *  VMS readdir() routines.
4676  *  Written by Rich $alz, <rsalz@bbn.com> in August, 1990.
4677  *
4678  *  21-Jul-1994  Charles Bailey  bailey@newman.upenn.edu
4679  *  Minor modifications to original routines.
4680  */
4681
4682     /* Number of elements in vms_versions array */
4683 #define VERSIZE(e)      (sizeof e->vms_versions / sizeof e->vms_versions[0])
4684
4685 /*
4686  *  Open a directory, return a handle for later use.
4687  */
4688 /*{{{ DIR *opendir(char*name) */
4689 DIR *
4690 Perl_opendir(pTHX_ char *name)
4691 {
4692     DIR *dd;
4693     char dir[NAM$C_MAXRSS+1];
4694     Stat_t sb;
4695
4696     if (do_tovmspath(name,dir,0) == NULL) {
4697       return NULL;
4698     }
4699     /* Check access before stat; otherwise stat does not
4700      * accurately report whether it's a directory.
4701      */
4702     if (!cando_by_name(S_IRUSR,0,dir)) {
4703       set_errno(EACCES); set_vaxc_errno(RMS$_PRV);
4704       return NULL;
4705     }
4706     if (flex_stat(dir,&sb) == -1) return NULL;
4707     if (!S_ISDIR(sb.st_mode)) {
4708       set_errno(ENOTDIR);  set_vaxc_errno(RMS$_DIR);
4709       return NULL;
4710     }
4711     /* Get memory for the handle, and the pattern. */
4712     New(1306,dd,1,DIR);
4713     New(1307,dd->pattern,strlen(dir)+sizeof "*.*" + 1,char);
4714
4715     /* Fill in the fields; mainly playing with the descriptor. */
4716     (void)sprintf(dd->pattern, "%s*.*",dir);
4717     dd->context = 0;
4718     dd->count = 0;
4719     dd->vms_wantversions = 0;
4720     dd->pat.dsc$a_pointer = dd->pattern;
4721     dd->pat.dsc$w_length = strlen(dd->pattern);
4722     dd->pat.dsc$b_dtype = DSC$K_DTYPE_T;
4723     dd->pat.dsc$b_class = DSC$K_CLASS_S;
4724
4725     return dd;
4726 }  /* end of opendir() */
4727 /*}}}*/
4728
4729 /*
4730  *  Set the flag to indicate we want versions or not.
4731  */
4732 /*{{{ void vmsreaddirversions(DIR *dd, int flag)*/
4733 void
4734 vmsreaddirversions(DIR *dd, int flag)
4735 {
4736     dd->vms_wantversions = flag;
4737 }
4738 /*}}}*/
4739
4740 /*
4741  *  Free up an opened directory.
4742  */
4743 /*{{{ void closedir(DIR *dd)*/
4744 void
4745 closedir(DIR *dd)
4746 {
4747     (void)lib$find_file_end(&dd->context);
4748     Safefree(dd->pattern);
4749     Safefree((char *)dd);
4750 }
4751 /*}}}*/
4752
4753 /*
4754  *  Collect all the version numbers for the current file.
4755  */
4756 static void
4757 collectversions(pTHX_ DIR *dd)
4758 {
4759     struct dsc$descriptor_s     pat;
4760     struct dsc$descriptor_s     res;
4761     struct dirent *e;
4762     char *p, *text, buff[sizeof dd->entry.d_name];
4763     int i;
4764     unsigned long context, tmpsts;
4765
4766     /* Convenient shorthand. */
4767     e = &dd->entry;
4768
4769     /* Add the version wildcard, ignoring the "*.*" put on before */
4770     i = strlen(dd->pattern);
4771     New(1308,text,i + e->d_namlen + 3,char);
4772     (void)strcpy(text, dd->pattern);
4773     (void)sprintf(&text[i - 3], "%s;*", e->d_name);
4774
4775     /* Set up the pattern descriptor. */
4776     pat.dsc$a_pointer = text;
4777     pat.dsc$w_length = i + e->d_namlen - 1;
4778     pat.dsc$b_dtype = DSC$K_DTYPE_T;
4779     pat.dsc$b_class = DSC$K_CLASS_S;
4780
4781     /* Set up result descriptor. */
4782     res.dsc$a_pointer = buff;
4783     res.dsc$w_length = sizeof buff - 2;
4784     res.dsc$b_dtype = DSC$K_DTYPE_T;
4785     res.dsc$b_class = DSC$K_CLASS_S;
4786
4787     /* Read files, collecting versions. */
4788     for (context = 0, e->vms_verscount = 0;
4789          e->vms_verscount < VERSIZE(e);
4790          e->vms_verscount++) {
4791         tmpsts = lib$find_file(&pat, &res, &context);
4792         if (tmpsts == RMS$_NMF || context == 0) break;
4793         _ckvmssts(tmpsts);
4794         buff[sizeof buff - 1] = '\0';
4795         if ((p = strchr(buff, ';')))
4796             e->vms_versions[e->vms_verscount] = atoi(p + 1);
4797         else
4798             e->vms_versions[e->vms_verscount] = -1;
4799     }
4800
4801     _ckvmssts(lib$find_file_end(&context));
4802     Safefree(text);
4803
4804 }  /* end of collectversions() */
4805
4806 /*
4807  *  Read the next entry from the directory.
4808  */
4809 /*{{{ struct dirent *readdir(DIR *dd)*/
4810 struct dirent *
4811 Perl_readdir(pTHX_ DIR *dd)
4812 {
4813     struct dsc$descriptor_s     res;
4814     char *p, buff[sizeof dd->entry.d_name];
4815     unsigned long int tmpsts;
4816
4817     /* Set up result descriptor, and get next file. */
4818     res.dsc$a_pointer = buff;
4819     res.dsc$w_length = sizeof buff - 2;
4820     res.dsc$b_dtype = DSC$K_DTYPE_T;
4821     res.dsc$b_class = DSC$K_CLASS_S;
4822     tmpsts = lib$find_file(&dd->pat, &res, &dd->context);
4823     if ( tmpsts == RMS$_NMF || dd->context == 0) return NULL;  /* None left. */
4824     if (!(tmpsts & 1)) {
4825       set_vaxc_errno(tmpsts);
4826       switch (tmpsts) {
4827         case RMS$_PRV:
4828           set_errno(EACCES); break;
4829         case RMS$_DEV:
4830           set_errno(ENODEV); break;
4831         case RMS$_DIR:
4832           set_errno(ENOTDIR); break;
4833         case RMS$_FNF: case RMS$_DNF:
4834           set_errno(ENOENT); break;
4835         default:
4836           set_errno(EVMSERR);
4837       }
4838       return NULL;
4839     }
4840     dd->count++;
4841     /* Force the buffer to end with a NUL, and downcase name to match C convention. */
4842     buff[sizeof buff - 1] = '\0';
4843     for (p = buff; *p; p++) *p = _tolower(*p);
4844     while (--p >= buff) if (!isspace(*p)) break;  /* Do we really need this? */
4845     *p = '\0';
4846
4847     /* Skip any directory component and just copy the name. */
4848     if ((p = strchr(buff, ']'))) (void)strcpy(dd->entry.d_name, p + 1);
4849     else (void)strcpy(dd->entry.d_name, buff);
4850
4851     /* Clobber the version. */
4852     if ((p = strchr(dd->entry.d_name, ';'))) *p = '\0';
4853
4854     dd->entry.d_namlen = strlen(dd->entry.d_name);
4855     dd->entry.vms_verscount = 0;
4856     if (dd->vms_wantversions) collectversions(aTHX_ dd);
4857     return &dd->entry;
4858
4859 }  /* end of readdir() */
4860 /*}}}*/
4861
4862 /*
4863  *  Return something that can be used in a seekdir later.
4864  */
4865 /*{{{ long telldir(DIR *dd)*/
4866 long
4867 telldir(DIR *dd)
4868 {
4869     return dd->count;
4870 }
4871 /*}}}*/
4872
4873 /*
4874  *  Return to a spot where we used to be.  Brute force.
4875  */
4876 /*{{{ void seekdir(DIR *dd,long count)*/
4877 void
4878 Perl_seekdir(pTHX_ DIR *dd, long count)
4879 {
4880     int vms_wantversions;
4881
4882     /* If we haven't done anything yet... */
4883     if (dd->count == 0)
4884         return;
4885
4886     /* Remember some state, and clear it. */
4887     vms_wantversions = dd->vms_wantversions;
4888     dd->vms_wantversions = 0;
4889     _ckvmssts(lib$find_file_end(&dd->context));
4890     dd->context = 0;
4891
4892     /* The increment is in readdir(). */
4893     for (dd->count = 0; dd->count < count; )
4894         (void)readdir(dd);
4895
4896     dd->vms_wantversions = vms_wantversions;
4897
4898 }  /* end of seekdir() */
4899 /*}}}*/
4900
4901 /* VMS subprocess management
4902  *
4903  * my_vfork() - just a vfork(), after setting a flag to record that
4904  * the current script is trying a Unix-style fork/exec.
4905  *
4906  * vms_do_aexec() and vms_do_exec() are called in response to the
4907  * perl 'exec' function.  If this follows a vfork call, then they
4908  * call out the the regular perl routines in doio.c which do an
4909  * execvp (for those who really want to try this under VMS).
4910  * Otherwise, they do exactly what the perl docs say exec should
4911  * do - terminate the current script and invoke a new command
4912  * (See below for notes on command syntax.)
4913  *
4914  * do_aspawn() and do_spawn() implement the VMS side of the perl
4915  * 'system' function.
4916  *
4917  * Note on command arguments to perl 'exec' and 'system': When handled
4918  * in 'VMSish fashion' (i.e. not after a call to vfork) The args
4919  * are concatenated to form a DCL command string.  If the first arg
4920  * begins with '$' (i.e. the perl script had "\$ Type" or some such),
4921  * the the command string is handed off to DCL directly.  Otherwise,
4922  * the first token of the command is taken as the filespec of an image
4923  * to run.  The filespec is expanded using a default type of '.EXE' and
4924  * the process defaults for device, directory, etc., and if found, the resultant
4925  * filespec is invoked using the DCL verb 'MCR', and passed the rest of
4926  * the command string as parameters.  This is perhaps a bit complicated,
4927  * but I hope it will form a happy medium between what VMS folks expect
4928  * from lib$spawn and what Unix folks expect from exec.
4929  */
4930
4931 static int vfork_called;
4932
4933 /*{{{int my_vfork()*/
4934 int
4935 my_vfork()
4936 {
4937   vfork_called++;
4938   return vfork();
4939 }
4940 /*}}}*/
4941
4942
4943 static void
4944 vms_execfree(struct dsc$descriptor_s *vmscmd) 
4945 {
4946   if (vmscmd) {
4947       if (vmscmd->dsc$a_pointer) {
4948           Safefree(vmscmd->dsc$a_pointer);
4949       }
4950       Safefree(vmscmd);
4951   }
4952 }
4953
4954 static char *
4955 setup_argstr(pTHX_ SV *really, SV **mark, SV **sp)
4956 {
4957   char *junk, *tmps = Nullch;
4958   register size_t cmdlen = 0;
4959   size_t rlen;
4960   register SV **idx;
4961   STRLEN n_a;
4962
4963   idx = mark;
4964   if (really) {
4965     tmps = SvPV(really,rlen);
4966     if (*tmps) {
4967       cmdlen += rlen + 1;
4968       idx++;
4969     }
4970   }
4971   
4972   for (idx++; idx <= sp; idx++) {
4973     if (*idx) {
4974       junk = SvPVx(*idx,rlen);
4975       cmdlen += rlen ? rlen + 1 : 0;
4976     }
4977   }
4978   New(401,PL_Cmd,cmdlen+1,char);
4979
4980   if (tmps && *tmps) {
4981     strcpy(PL_Cmd,tmps);
4982     mark++;
4983   }
4984   else *PL_Cmd = '\0';
4985   while (++mark <= sp) {
4986     if (*mark) {
4987       char *s = SvPVx(*mark,n_a);
4988       if (!*s) continue;
4989       if (*PL_Cmd) strcat(PL_Cmd," ");
4990       strcat(PL_Cmd,s);
4991     }
4992   }
4993   return PL_Cmd;
4994
4995 }  /* end of setup_argstr() */
4996
4997
4998 static unsigned long int
4999 setup_cmddsc(pTHX_ char *cmd, int check_img, int *suggest_quote,
5000                    struct dsc$descriptor_s **pvmscmd)
5001 {
5002   char vmsspec[NAM$C_MAXRSS+1], resspec[NAM$C_MAXRSS+1];
5003   $DESCRIPTOR(defdsc,".EXE");
5004   $DESCRIPTOR(defdsc2,".");
5005   $DESCRIPTOR(resdsc,resspec);
5006   struct dsc$descriptor_s *vmscmd;
5007   struct dsc$descriptor_s imgdsc = {0, DSC$K_DTYPE_T, DSC$K_CLASS_S, 0};
5008   unsigned long int cxt = 0, flags = 1, retsts = SS$_NORMAL;
5009   register char *s, *rest, *cp, *wordbreak;
5010   register int isdcl;
5011
5012   New(402,vmscmd,sizeof(struct dsc$descriptor_s),struct dsc$descriptor_s);
5013   vmscmd->dsc$a_pointer = NULL;
5014   vmscmd->dsc$b_dtype  = DSC$K_DTYPE_T;
5015   vmscmd->dsc$b_class  = DSC$K_CLASS_S;
5016   vmscmd->dsc$w_length = 0;
5017   if (pvmscmd) *pvmscmd = vmscmd;
5018
5019   if (suggest_quote) *suggest_quote = 0;
5020
5021   if (strlen(cmd) > MAX_DCL_LINE_LENGTH)
5022     return CLI$_BUFOVF;                /* continuation lines currently unsupported */
5023   s = cmd;
5024   while (*s && isspace(*s)) s++;
5025
5026   if (*s == '@' || *s == '$') {
5027     vmsspec[0] = *s;  rest = s + 1;
5028     for (cp = &vmsspec[1]; *rest && isspace(*rest); rest++,cp++) *cp = *rest;
5029   }
5030   else { cp = vmsspec; rest = s; }
5031   if (*rest == '.' || *rest == '/') {
5032     char *cp2;
5033     for (cp2 = resspec;
5034          *rest && !isspace(*rest) && cp2 - resspec < sizeof resspec;
5035          rest++, cp2++) *cp2 = *rest;
5036     *cp2 = '\0';
5037     if (do_tovmsspec(resspec,cp,0)) { 
5038       s = vmsspec;
5039       if (*rest) {
5040         for (cp2 = vmsspec + strlen(vmsspec);
5041              *rest && cp2 - vmsspec < sizeof vmsspec;
5042              rest++, cp2++) *cp2 = *rest;
5043         *cp2 = '\0';
5044       }
5045     }
5046   }
5047   /* Intuit whether verb (first word of cmd) is a DCL command:
5048    *   - if first nonspace char is '@', it's a DCL indirection
5049    * otherwise
5050    *   - if verb contains a filespec separator, it's not a DCL command
5051    *   - if it doesn't, caller tells us whether to default to a DCL
5052    *     command, or to a local image unless told it's DCL (by leading '$')
5053    */
5054   if (*s == '@') {
5055       isdcl = 1;
5056       if (suggest_quote) *suggest_quote = 1;
5057   } else {
5058     register char *filespec = strpbrk(s,":<[.;");
5059     rest = wordbreak = strpbrk(s," \"\t/");
5060     if (!wordbreak) wordbreak = s + strlen(s);
5061     if (*s == '$') check_img = 0;
5062     if (filespec && (filespec < wordbreak)) isdcl = 0;
5063     else isdcl = !check_img;
5064   }
5065
5066   if (!isdcl) {
5067     imgdsc.dsc$a_pointer = s;
5068     imgdsc.dsc$w_length = wordbreak - s;
5069     retsts = lib$find_file(&imgdsc,&resdsc,&cxt,&defdsc,0,0,&flags);
5070     if (!(retsts&1)) {
5071         _ckvmssts(lib$find_file_end(&cxt));
5072         retsts = lib$find_file(&imgdsc,&resdsc,&cxt,&defdsc2,0,0,&flags);
5073     if (!(retsts & 1) && *s == '$') {
5074           _ckvmssts(lib$find_file_end(&cxt));
5075       imgdsc.dsc$a_pointer++; imgdsc.dsc$w_length--;
5076       retsts = lib$find_file(&imgdsc,&resdsc,&cxt,&defdsc,0,0,&flags);
5077           if (!(retsts&1)) {
5078       _ckvmssts(lib$find_file_end(&cxt));
5079             retsts = lib$find_file(&imgdsc,&resdsc,&cxt,&defdsc2,0,0,&flags);
5080           }
5081     }
5082     }
5083     _ckvmssts(lib$find_file_end(&cxt));
5084
5085     if (retsts & 1) {
5086       FILE *fp;
5087       s = resspec;
5088       while (*s && !isspace(*s)) s++;
5089       *s = '\0';
5090
5091       /* check that it's really not DCL with no file extension */
5092       fp = fopen(resspec,"r","ctx=bin,shr=get");
5093       if (fp) {
5094         char b[4] = {0,0,0,0};
5095         read(fileno(fp),b,4);
5096         isdcl = isprint(b[0]) && isprint(b[1]) && isprint(b[2]) && isprint(b[3]);
5097         fclose(fp);
5098       }
5099       if (check_img && isdcl) return RMS$_FNF;
5100
5101       if (cando_by_name(S_IXUSR,0,resspec)) {
5102         New(402,vmscmd->dsc$a_pointer,7 + s - resspec + (rest ? strlen(rest) : 0),char);
5103         if (!isdcl) {
5104             strcpy(vmscmd->dsc$a_pointer,"$ MCR ");
5105             if (suggest_quote) *suggest_quote = 1;
5106         } else {
5107             strcpy(vmscmd->dsc$a_pointer,"@");
5108             if (suggest_quote) *suggest_quote = 1;
5109         }
5110         strcat(vmscmd->dsc$a_pointer,resspec);
5111         if (rest) strcat(vmscmd->dsc$a_pointer,rest);
5112         vmscmd->dsc$w_length = strlen(vmscmd->dsc$a_pointer);
5113         return (vmscmd->dsc$w_length > MAX_DCL_LINE_LENGTH ? CLI$_BUFOVF : retsts);
5114       }
5115       else retsts = RMS$_PRV;
5116     }
5117   }
5118   /* It's either a DCL command or we couldn't find a suitable image */
5119   vmscmd->dsc$w_length = strlen(cmd);
5120 /*  if (cmd == PL_Cmd) {
5121       vmscmd->dsc$a_pointer = PL_Cmd;
5122       if (suggest_quote) *suggest_quote = 1;
5123   }
5124   else  */
5125       vmscmd->dsc$a_pointer = savepvn(cmd,vmscmd->dsc$w_length);
5126
5127   /* check if it's a symbol (for quoting purposes) */
5128   if (suggest_quote && !*suggest_quote) { 
5129     int iss;     
5130     char equiv[LNM$C_NAMLENGTH];
5131     struct dsc$descriptor_s eqvdsc = {sizeof(equiv), DSC$K_DTYPE_T, DSC$K_CLASS_S, 0};
5132     eqvdsc.dsc$a_pointer = equiv;
5133
5134     iss = lib$get_symbol(vmscmd,&eqvdsc);
5135     if (iss&1 && (*equiv == '$' || *equiv == '@')) *suggest_quote = 1;
5136   }
5137   if (!(retsts & 1)) {
5138     /* just hand off status values likely to be due to user error */
5139     if (retsts == RMS$_FNF || retsts == RMS$_DNF || retsts == RMS$_PRV ||
5140         retsts == RMS$_DEV || retsts == RMS$_DIR || retsts == RMS$_SYN ||
5141        (retsts & STS$M_CODE) == (SHR$_NOWILD & STS$M_CODE)) return retsts;
5142     else { _ckvmssts(retsts); }
5143   }
5144
5145   return (vmscmd->dsc$w_length > MAX_DCL_LINE_LENGTH ? CLI$_BUFOVF : retsts);
5146
5147 }  /* end of setup_cmddsc() */
5148
5149
5150 /* {{{ bool vms_do_aexec(SV *really,SV **mark,SV **sp) */
5151 bool
5152 Perl_vms_do_aexec(pTHX_ SV *really,SV **mark,SV **sp)
5153 {
5154   if (sp > mark) {
5155     if (vfork_called) {           /* this follows a vfork - act Unixish */
5156       vfork_called--;
5157       if (vfork_called < 0) {
5158         Perl_warn(aTHX_ "Internal inconsistency in tracking vforks");
5159         vfork_called = 0;
5160       }
5161       else return do_aexec(really,mark,sp);
5162     }
5163                                            /* no vfork - act VMSish */
5164     return vms_do_exec(setup_argstr(aTHX_ really,mark,sp));
5165
5166   }
5167
5168   return FALSE;
5169 }  /* end of vms_do_aexec() */
5170 /*}}}*/
5171
5172 /* {{{bool vms_do_exec(char *cmd) */
5173 bool
5174 Perl_vms_do_exec(pTHX_ char *cmd)
5175 {
5176   struct dsc$descriptor_s *vmscmd;
5177
5178   if (vfork_called) {             /* this follows a vfork - act Unixish */
5179     vfork_called--;
5180     if (vfork_called < 0) {
5181       Perl_warn(aTHX_ "Internal inconsistency in tracking vforks");
5182       vfork_called = 0;
5183     }
5184     else return do_exec(cmd);
5185   }
5186
5187   {                               /* no vfork - act VMSish */
5188     unsigned long int retsts;
5189
5190     TAINT_ENV();
5191     TAINT_PROPER("exec");
5192     if ((retsts = setup_cmddsc(aTHX_ cmd,1,0,&vmscmd)) & 1)
5193       retsts = lib$do_command(vmscmd);
5194
5195     switch (retsts) {
5196       case RMS$_FNF: case RMS$_DNF:
5197         set_errno(ENOENT); break;
5198       case RMS$_DIR:
5199         set_errno(ENOTDIR); break;
5200       case RMS$_DEV:
5201         set_errno(ENODEV); break;
5202       case RMS$_PRV:
5203         set_errno(EACCES); break;
5204       case RMS$_SYN:
5205         set_errno(EINVAL); break;
5206       case CLI$_BUFOVF: case RMS$_RTB: case CLI$_TKNOVF: case CLI$_RSLOVF:
5207         set_errno(E2BIG); break;
5208       case LIB$_INVARG: case LIB$_INVSTRDES: case SS$_ACCVIO: /* shouldn't happen */
5209         _ckvmssts(retsts); /* fall through */
5210       default:  /* SS$_DUPLNAM, SS$_CLI, resource exhaustion, etc. */
5211         set_errno(EVMSERR); 
5212     }
5213     set_vaxc_errno(retsts);
5214     if (ckWARN(WARN_EXEC)) {
5215       Perl_warner(aTHX_ packWARN(WARN_EXEC),"Can't exec \"%*s\": %s",
5216              vmscmd->dsc$w_length, vmscmd->dsc$a_pointer, Strerror(errno));
5217     }
5218     vms_execfree(vmscmd);
5219   }
5220
5221   return FALSE;
5222
5223 }  /* end of vms_do_exec() */
5224 /*}}}*/
5225
5226 unsigned long int Perl_do_spawn(pTHX_ char *);
5227
5228 /* {{{ unsigned long int do_aspawn(void *really,void **mark,void **sp) */
5229 unsigned long int
5230 Perl_do_aspawn(pTHX_ void *really,void **mark,void **sp)
5231 {
5232   if (sp > mark) return do_spawn(setup_argstr(aTHX_ (SV *)really,(SV **)mark,(SV **)sp));
5233
5234   return SS$_ABORT;
5235 }  /* end of do_aspawn() */
5236 /*}}}*/
5237
5238 /* {{{unsigned long int do_spawn(char *cmd) */
5239 unsigned long int
5240 Perl_do_spawn(pTHX_ char *cmd)
5241 {
5242   unsigned long int sts, substs;
5243
5244   TAINT_ENV();
5245   TAINT_PROPER("spawn");
5246   if (!cmd || !*cmd) {
5247     sts = lib$spawn(0,0,0,0,0,0,&substs,0,0,0,0,0,0);
5248     if (!(sts & 1)) {
5249       switch (sts) {
5250         case RMS$_FNF:  case RMS$_DNF:
5251           set_errno(ENOENT); break;
5252         case RMS$_DIR:
5253           set_errno(ENOTDIR); break;
5254         case RMS$_DEV:
5255           set_errno(ENODEV); break;
5256         case RMS$_PRV:
5257           set_errno(EACCES); break;
5258         case RMS$_SYN:
5259           set_errno(EINVAL); break;
5260         case CLI$_BUFOVF: case RMS$_RTB: case CLI$_TKNOVF: case CLI$_RSLOVF:
5261           set_errno(E2BIG); break;
5262         case LIB$_INVARG: case LIB$_INVSTRDES: case SS$_ACCVIO: /* shouldn't happen */
5263           _ckvmssts(sts); /* fall through */
5264         default:  /* SS$_DUPLNAM, SS$_CLI, resource exhaustion, etc. */
5265           set_errno(EVMSERR);
5266       }
5267       set_vaxc_errno(sts);
5268       if (ckWARN(WARN_EXEC)) {
5269         Perl_warner(aTHX_ packWARN(WARN_EXEC),"Can't spawn: %s",
5270                     Strerror(errno));
5271       }
5272     }
5273     sts = substs;
5274   }
5275   else {
5276     (void) safe_popen(aTHX_ cmd, "nW", (int *)&sts);
5277   }
5278   return sts;
5279 }  /* end of do_spawn() */
5280 /*}}}*/
5281
5282
5283 static unsigned int *sockflags, sockflagsize;
5284
5285 /*
5286  * Shim fdopen to identify sockets for my_fwrite later, since the stdio
5287  * routines found in some versions of the CRTL can't deal with sockets.
5288  * We don't shim the other file open routines since a socket isn't
5289  * likely to be opened by a name.
5290  */
5291 /*{{{ FILE *my_fdopen(int fd, const char *mode)*/
5292 FILE *my_fdopen(int fd, const char *mode)
5293 {
5294   FILE *fp = fdopen(fd, (char *) mode);
5295
5296   if (fp) {
5297     unsigned int fdoff = fd / sizeof(unsigned int);
5298     struct stat sbuf; /* native stat; we don't need flex_stat */
5299     if (!sockflagsize || fdoff > sockflagsize) {
5300       if (sockflags) Renew(     sockflags,fdoff+2,unsigned int);
5301       else           New  (1324,sockflags,fdoff+2,unsigned int);
5302       memset(sockflags+sockflagsize,0,fdoff + 2 - sockflagsize);
5303       sockflagsize = fdoff + 2;
5304     }
5305     if (fstat(fd,&sbuf) == 0 && S_ISSOCK(sbuf.st_mode))
5306       sockflags[fdoff] |= 1 << (fd % sizeof(unsigned int));
5307   }
5308   return fp;
5309
5310 }
5311 /*}}}*/
5312
5313
5314 /*
5315  * Clear the corresponding bit when the (possibly) socket stream is closed.
5316  * There still a small hole: we miss an implicit close which might occur
5317  * via freopen().  >> Todo
5318  */
5319 /*{{{ int my_fclose(FILE *fp)*/
5320 int my_fclose(FILE *fp) {
5321   if (fp) {
5322     unsigned int fd = fileno(fp);
5323     unsigned int fdoff = fd / sizeof(unsigned int);
5324
5325     if (sockflagsize && fdoff <= sockflagsize)
5326       sockflags[fdoff] &= ~(1 << fd % sizeof(unsigned int));
5327   }
5328   return fclose(fp);
5329 }
5330 /*}}}*/
5331
5332
5333 /* 
5334  * A simple fwrite replacement which outputs itmsz*nitm chars without
5335  * introducing record boundaries every itmsz chars.
5336  * We are using fputs, which depends on a terminating null.  We may
5337  * well be writing binary data, so we need to accommodate not only
5338  * data with nulls sprinkled in the middle but also data with no null 
5339  * byte at the end.
5340  */
5341 /*{{{ int my_fwrite(const void *src, size_t itmsz, size_t nitm, FILE *dest)*/
5342 int
5343 my_fwrite(const void *src, size_t itmsz, size_t nitm, FILE *dest)
5344 {
5345   register char *cp, *end, *cpd, *data;
5346   register unsigned int fd = fileno(dest);
5347   register unsigned int fdoff = fd / sizeof(unsigned int);
5348   int retval;
5349   int bufsize = itmsz * nitm + 1;
5350
5351   if (fdoff < sockflagsize &&
5352       (sockflags[fdoff] | 1 << (fd % sizeof(unsigned int)))) {
5353     if (write(fd, src, itmsz * nitm) == EOF) return EOF;
5354     return nitm;
5355   }
5356
5357   _ckvmssts_noperl(lib$get_vm(&bufsize, &data));
5358   memcpy( data, src, itmsz*nitm );
5359   data[itmsz*nitm] = '\0';
5360
5361   end = data + itmsz * nitm;
5362   retval = (int) nitm; /* on success return # items written */
5363
5364   cpd = data;
5365   while (cpd <= end) {
5366     for (cp = cpd; cp <= end; cp++) if (!*cp) break;
5367     if (fputs(cpd,dest) == EOF) { retval = EOF; break; }
5368     if (cp < end)
5369       if (fputc('\0',dest) == EOF) { retval = EOF; break; }
5370     cpd = cp + 1;
5371   }
5372
5373   if (data) _ckvmssts_noperl(lib$free_vm(&bufsize, &data));
5374   return retval;
5375
5376 }  /* end of my_fwrite() */
5377 /*}}}*/
5378
5379 /*{{{ int my_flush(FILE *fp)*/
5380 int
5381 Perl_my_flush(pTHX_ FILE *fp)
5382 {
5383     int res;
5384     if ((res = fflush(fp)) == 0 && fp) {
5385 #ifdef VMS_DO_SOCKETS
5386         Stat_t s;
5387         if (Fstat(fileno(fp), &s) == 0 && !S_ISSOCK(s.st_mode))
5388 #endif
5389             res = fsync(fileno(fp));
5390     }
5391 /*
5392  * If the flush succeeded but set end-of-file, we need to clear
5393  * the error because our caller may check ferror().  BTW, this 
5394  * probably means we just flushed an empty file.
5395  */
5396     if (res == 0 && vaxc$errno == RMS$_EOF) clearerr(fp);
5397
5398     return res;
5399 }
5400 /*}}}*/
5401
5402 /*
5403  * Here are replacements for the following Unix routines in the VMS environment:
5404  *      getpwuid    Get information for a particular UIC or UID
5405  *      getpwnam    Get information for a named user
5406  *      getpwent    Get information for each user in the rights database
5407  *      setpwent    Reset search to the start of the rights database
5408  *      endpwent    Finish searching for users in the rights database
5409  *
5410  * getpwuid, getpwnam, and getpwent return a pointer to the passwd structure
5411  * (defined in pwd.h), which contains the following fields:-
5412  *      struct passwd {
5413  *              char        *pw_name;    Username (in lower case)
5414  *              char        *pw_passwd;  Hashed password
5415  *              unsigned int pw_uid;     UIC
5416  *              unsigned int pw_gid;     UIC group  number
5417  *              char        *pw_unixdir; Default device/directory (VMS-style)
5418  *              char        *pw_gecos;   Owner name
5419  *              char        *pw_dir;     Default device/directory (Unix-style)
5420  *              char        *pw_shell;   Default CLI name (eg. DCL)
5421  *      };
5422  * If the specified user does not exist, getpwuid and getpwnam return NULL.
5423  *
5424  * pw_uid is the full UIC (eg. what's returned by stat() in st_uid).
5425  * not the UIC member number (eg. what's returned by getuid()),
5426  * getpwuid() can accept either as input (if uid is specified, the caller's
5427  * UIC group is used), though it won't recognise gid=0.
5428  *
5429  * Note that in VMS it is necessary to have GRPPRV or SYSPRV to return
5430  * information about other users in your group or in other groups, respectively.
5431  * If the required privilege is not available, then these routines fill only
5432  * the pw_name, pw_uid, and pw_gid fields (the others point to an empty
5433  * string).
5434  *
5435  * By Tim Adye (T.J.Adye@rl.ac.uk), 10th February 1995.
5436  */
5437
5438 /* sizes of various UAF record fields */
5439 #define UAI$S_USERNAME 12
5440 #define UAI$S_IDENT    31
5441 #define UAI$S_OWNER    31
5442 #define UAI$S_DEFDEV   31
5443 #define UAI$S_DEFDIR   63
5444 #define UAI$S_DEFCLI   31
5445 #define UAI$S_PWD       8
5446
5447 #define valid_uic(uic) ((uic).uic$v_format == UIC$K_UIC_FORMAT  && \
5448                         (uic).uic$v_member != UIC$K_WILD_MEMBER && \
5449                         (uic).uic$v_group  != UIC$K_WILD_GROUP)
5450
5451 static char __empty[]= "";
5452 static struct passwd __passwd_empty=
5453     {(char *) __empty, (char *) __empty, 0, 0,
5454      (char *) __empty, (char *) __empty, (char *) __empty, (char *) __empty};
5455 static int contxt= 0;
5456 static struct passwd __pwdcache;
5457 static char __pw_namecache[UAI$S_IDENT+1];
5458
5459 /*
5460  * This routine does most of the work extracting the user information.
5461  */
5462 static int fillpasswd (pTHX_ const char *name, struct passwd *pwd)
5463 {
5464     static struct {
5465         unsigned char length;
5466         char pw_gecos[UAI$S_OWNER+1];
5467     } owner;
5468     static union uicdef uic;
5469     static struct {
5470         unsigned char length;
5471         char pw_dir[UAI$S_DEFDEV+UAI$S_DEFDIR+1];
5472     } defdev;
5473     static struct {
5474         unsigned char length;
5475         char unixdir[UAI$_DEFDEV+UAI$S_DEFDIR+1];
5476     } defdir;
5477     static struct {
5478         unsigned char length;
5479         char pw_shell[UAI$S_DEFCLI+1];
5480     } defcli;
5481     static char pw_passwd[UAI$S_PWD+1];
5482
5483     static unsigned short lowner, luic, ldefdev, ldefdir, ldefcli, lpwd;
5484     struct dsc$descriptor_s name_desc;
5485     unsigned long int sts;
5486
5487     static struct itmlst_3 itmlst[]= {
5488         {UAI$S_OWNER+1,    UAI$_OWNER,  &owner,    &lowner},
5489         {sizeof(uic),      UAI$_UIC,    &uic,      &luic},
5490         {UAI$S_DEFDEV+1,   UAI$_DEFDEV, &defdev,   &ldefdev},
5491         {UAI$S_DEFDIR+1,   UAI$_DEFDIR, &defdir,   &ldefdir},
5492         {UAI$S_DEFCLI+1,   UAI$_DEFCLI, &defcli,   &ldefcli},
5493         {UAI$S_PWD,        UAI$_PWD,    pw_passwd, &lpwd},
5494         {0,                0,           NULL,    NULL}};
5495
5496     name_desc.dsc$w_length=  strlen(name);
5497     name_desc.dsc$b_dtype=   DSC$K_DTYPE_T;
5498     name_desc.dsc$b_class=   DSC$K_CLASS_S;
5499     name_desc.dsc$a_pointer= (char *) name;
5500
5501 /*  Note that sys$getuai returns many fields as counted strings. */
5502     sts= sys$getuai(0, 0, &name_desc, &itmlst, 0, 0, 0);
5503     if (sts == SS$_NOSYSPRV || sts == SS$_NOGRPPRV || sts == RMS$_RNF) {
5504       set_vaxc_errno(sts); set_errno(sts == RMS$_RNF ? EINVAL : EACCES);
5505     }
5506     else { _ckvmssts(sts); }
5507     if (!(sts & 1)) return 0;  /* out here in case _ckvmssts() doesn't abort */
5508
5509     if ((int) owner.length  < lowner)  lowner=  (int) owner.length;
5510     if ((int) defdev.length < ldefdev) ldefdev= (int) defdev.length;
5511     if ((int) defdir.length < ldefdir) ldefdir= (int) defdir.length;
5512     if ((int) defcli.length < ldefcli) ldefcli= (int) defcli.length;
5513     memcpy(&defdev.pw_dir[ldefdev], &defdir.unixdir[0], ldefdir);
5514     owner.pw_gecos[lowner]=            '\0';
5515     defdev.pw_dir[ldefdev+ldefdir]= '\0';
5516     defcli.pw_shell[ldefcli]=          '\0';
5517     if (valid_uic(uic)) {
5518         pwd->pw_uid= uic.uic$l_uic;
5519         pwd->pw_gid= uic.uic$v_group;
5520     }
5521     else
5522       Perl_warn(aTHX_ "getpwnam returned invalid UIC %#o for user \"%s\"");
5523     pwd->pw_passwd=  pw_passwd;
5524     pwd->pw_gecos=   owner.pw_gecos;
5525     pwd->pw_dir=     defdev.pw_dir;
5526     pwd->pw_unixdir= do_tounixpath(defdev.pw_dir, defdir.unixdir,1);
5527     pwd->pw_shell=   defcli.pw_shell;
5528     if (pwd->pw_unixdir && pwd->pw_unixdir[0]) {
5529         int ldir;
5530         ldir= strlen(pwd->pw_unixdir) - 1;
5531         if (pwd->pw_unixdir[ldir]=='/') pwd->pw_unixdir[ldir]= '\0';
5532     }
5533     else
5534         strcpy(pwd->pw_unixdir, pwd->pw_dir);
5535     __mystrtolower(pwd->pw_unixdir);
5536     return 1;
5537 }
5538
5539 /*
5540  * Get information for a named user.
5541 */
5542 /*{{{struct passwd *getpwnam(char *name)*/
5543 struct passwd *Perl_my_getpwnam(pTHX_ char *name)
5544 {
5545     struct dsc$descriptor_s name_desc;
5546     union uicdef uic;
5547     unsigned long int status, sts;
5548                                   
5549     __pwdcache = __passwd_empty;
5550     if (!fillpasswd(aTHX_ name, &__pwdcache)) {
5551       /* We still may be able to determine pw_uid and pw_gid */
5552       name_desc.dsc$w_length=  strlen(name);
5553       name_desc.dsc$b_dtype=   DSC$K_DTYPE_T;
5554       name_desc.dsc$b_class=   DSC$K_CLASS_S;
5555       name_desc.dsc$a_pointer= (char *) name;
5556       if ((sts = sys$asctoid(&name_desc, &uic, 0)) == SS$_NORMAL) {
5557         __pwdcache.pw_uid= uic.uic$l_uic;
5558         __pwdcache.pw_gid= uic.uic$v_group;
5559       }
5560       else {
5561         if (sts == SS$_NOSUCHID || sts == SS$_IVIDENT || sts == RMS$_PRV) {
5562           set_vaxc_errno(sts);
5563           set_errno(sts == RMS$_PRV ? EACCES : EINVAL);
5564           return NULL;
5565         }
5566         else { _ckvmssts(sts); }
5567       }
5568     }
5569     strncpy(__pw_namecache, name, sizeof(__pw_namecache));
5570     __pw_namecache[sizeof __pw_namecache - 1] = '\0';
5571     __pwdcache.pw_name= __pw_namecache;
5572     return &__pwdcache;
5573 }  /* end of my_getpwnam() */
5574 /*}}}*/
5575
5576 /*
5577  * Get information for a particular UIC or UID.
5578  * Called by my_getpwent with uid=-1 to list all users.
5579 */
5580 /*{{{struct passwd *my_getpwuid(Uid_t uid)*/
5581 struct passwd *Perl_my_getpwuid(pTHX_ Uid_t uid)
5582 {
5583     const $DESCRIPTOR(name_desc,__pw_namecache);
5584     unsigned short lname;
5585     union uicdef uic;
5586     unsigned long int status;
5587
5588     if (uid == (unsigned int) -1) {
5589       do {
5590         status = sys$idtoasc(-1, &lname, &name_desc, &uic, 0, &contxt);
5591         if (status == SS$_NOSUCHID || status == RMS$_PRV) {
5592           set_vaxc_errno(status);
5593           set_errno(status == RMS$_PRV ? EACCES : EINVAL);
5594           my_endpwent();
5595           return NULL;
5596         }
5597         else { _ckvmssts(status); }
5598       } while (!valid_uic (uic));
5599     }
5600     else {
5601       uic.uic$l_uic= uid;
5602       if (!uic.uic$v_group)
5603         uic.uic$v_group= PerlProc_getgid();
5604       if (valid_uic(uic))
5605         status = sys$idtoasc(uic.uic$l_uic, &lname, &name_desc, 0, 0, 0);
5606       else status = SS$_IVIDENT;
5607       if (status == SS$_IVIDENT || status == SS$_NOSUCHID ||
5608           status == RMS$_PRV) {
5609         set_vaxc_errno(status); set_errno(status == RMS$_PRV ? EACCES : EINVAL);
5610         return NULL;
5611       }
5612       else { _ckvmssts(status); }
5613     }
5614     __pw_namecache[lname]= '\0';
5615     __mystrtolower(__pw_namecache);
5616
5617     __pwdcache = __passwd_empty;
5618     __pwdcache.pw_name = __pw_namecache;
5619
5620 /*  Fill in the uid and gid in case fillpasswd can't (eg. no privilege).
5621     The identifier's value is usually the UIC, but it doesn't have to be,
5622     so if we can, we let fillpasswd update this. */
5623     __pwdcache.pw_uid =  uic.uic$l_uic;
5624     __pwdcache.pw_gid =  uic.uic$v_group;
5625
5626     fillpasswd(aTHX_ __pw_namecache, &__pwdcache);
5627     return &__pwdcache;
5628
5629 }  /* end of my_getpwuid() */
5630 /*}}}*/
5631
5632 /*
5633  * Get information for next user.
5634 */
5635 /*{{{struct passwd *my_getpwent()*/
5636 struct passwd *Perl_my_getpwent(pTHX)
5637 {
5638     return (my_getpwuid((unsigned int) -1));
5639 }
5640 /*}}}*/
5641
5642 /*
5643  * Finish searching rights database for users.
5644 */
5645 /*{{{void my_endpwent()*/
5646 void Perl_my_endpwent(pTHX)
5647 {
5648     if (contxt) {
5649       _ckvmssts(sys$finish_rdb(&contxt));
5650       contxt= 0;
5651     }
5652 }
5653 /*}}}*/
5654
5655 #ifdef HOMEGROWN_POSIX_SIGNALS
5656   /* Signal handling routines, pulled into the core from POSIX.xs.
5657    *
5658    * We need these for threads, so they've been rolled into the core,
5659    * rather than left in POSIX.xs.
5660    *
5661    * (DRS, Oct 23, 1997)
5662    */
5663
5664   /* sigset_t is atomic under VMS, so these routines are easy */
5665 /*{{{int my_sigemptyset(sigset_t *) */
5666 int my_sigemptyset(sigset_t *set) {
5667     if (!set) { SETERRNO(EFAULT,SS$_ACCVIO); return -1; }
5668     *set = 0; return 0;
5669 }
5670 /*}}}*/
5671
5672
5673 /*{{{int my_sigfillset(sigset_t *)*/
5674 int my_sigfillset(sigset_t *set) {
5675     int i;
5676     if (!set) { SETERRNO(EFAULT,SS$_ACCVIO); return -1; }
5677     for (i = 0; i < NSIG; i++) *set |= (1 << i);
5678     return 0;
5679 }
5680 /*}}}*/
5681
5682
5683 /*{{{int my_sigaddset(sigset_t *set, int sig)*/
5684 int my_sigaddset(sigset_t *set, int sig) {
5685     if (!set) { SETERRNO(EFAULT,SS$_ACCVIO); return -1; }
5686     if (sig > NSIG) { SETERRNO(EINVAL,LIB$_INVARG); return -1; }
5687     *set |= (1 << (sig - 1));
5688     return 0;
5689 }
5690 /*}}}*/
5691
5692
5693 /*{{{int my_sigdelset(sigset_t *set, int sig)*/
5694 int my_sigdelset(sigset_t *set, int sig) {
5695     if (!set) { SETERRNO(EFAULT,SS$_ACCVIO); return -1; }
5696     if (sig > NSIG) { SETERRNO(EINVAL,LIB$_INVARG); return -1; }
5697     *set &= ~(1 << (sig - 1));
5698     return 0;
5699 }
5700 /*}}}*/
5701
5702
5703 /*{{{int my_sigismember(sigset_t *set, int sig)*/
5704 int my_sigismember(sigset_t *set, int sig) {
5705     if (!set) { SETERRNO(EFAULT,SS$_ACCVIO); return -1; }
5706     if (sig > NSIG) { SETERRNO(EINVAL,LIB$_INVARG); return -1; }
5707     return *set & (1 << (sig - 1));
5708 }
5709 /*}}}*/
5710
5711
5712 /*{{{int my_sigprocmask(int how, sigset_t *set, sigset_t *oset)*/
5713 int my_sigprocmask(int how, sigset_t *set, sigset_t *oset) {
5714     sigset_t tempmask;
5715
5716     /* If set and oset are both null, then things are badly wrong. Bail out. */
5717     if ((oset == NULL) && (set == NULL)) {
5718       set_errno(EFAULT); set_vaxc_errno(SS$_ACCVIO);
5719       return -1;
5720     }
5721
5722     /* If set's null, then we're just handling a fetch. */
5723     if (set == NULL) {
5724         tempmask = sigblock(0);
5725     }
5726     else {
5727       switch (how) {
5728       case SIG_SETMASK:
5729         tempmask = sigsetmask(*set);
5730         break;
5731       case SIG_BLOCK:
5732         tempmask = sigblock(*set);
5733         break;
5734       case SIG_UNBLOCK:
5735         tempmask = sigblock(0);
5736         sigsetmask(*oset & ~tempmask);
5737         break;
5738       default:
5739         set_errno(EINVAL); set_vaxc_errno(LIB$_INVARG);
5740         return -1;
5741       }
5742     }
5743
5744     /* Did they pass us an oset? If so, stick our holding mask into it */
5745     if (oset)
5746       *oset = tempmask;
5747   
5748     return 0;
5749 }
5750 /*}}}*/
5751 #endif  /* HOMEGROWN_POSIX_SIGNALS */
5752
5753
5754 /* Used for UTC calculation in my_gmtime(), my_localtime(), my_time(),
5755  * my_utime(), and flex_stat(), all of which operate on UTC unless
5756  * VMSISH_TIMES is true.
5757  */
5758 /* method used to handle UTC conversions:
5759  *   1 == CRTL gmtime();  2 == SYS$TIMEZONE_DIFFERENTIAL;  3 == no correction
5760  */
5761 static int gmtime_emulation_type;
5762 /* number of secs to add to UTC POSIX-style time to get local time */
5763 static long int utc_offset_secs;
5764
5765 /* We #defined 'gmtime', 'localtime', and 'time' as 'my_gmtime' etc.
5766  * in vmsish.h.  #undef them here so we can call the CRTL routines
5767  * directly.
5768  */
5769 #undef gmtime
5770 #undef localtime
5771 #undef time
5772
5773
5774 /*
5775  * DEC C previous to 6.0 corrupts the behavior of the /prefix
5776  * qualifier with the extern prefix pragma.  This provisional
5777  * hack circumvents this prefix pragma problem in previous 
5778  * precompilers.
5779  */
5780 #if defined(__VMS_VER) && __VMS_VER >= 70000000 
5781 #  if defined(VMS_WE_ARE_CASE_SENSITIVE) && (__DECC_VER < 60000000)
5782 #    pragma __extern_prefix save
5783 #    pragma __extern_prefix ""  /* set to empty to prevent prefixing */
5784 #    define gmtime decc$__utctz_gmtime
5785 #    define localtime decc$__utctz_localtime
5786 #    define time decc$__utc_time
5787 #    pragma __extern_prefix restore
5788
5789      struct tm *gmtime(), *localtime();   
5790
5791 #  endif
5792 #endif
5793
5794
5795 static time_t toutc_dst(time_t loc) {
5796   struct tm *rsltmp;
5797
5798   if ((rsltmp = localtime(&loc)) == NULL) return -1;
5799   loc -= utc_offset_secs;
5800   if (rsltmp->tm_isdst) loc -= 3600;
5801   return loc;
5802 }
5803 #define _toutc(secs)  ((secs) == (time_t) -1 ? (time_t) -1 : \
5804        ((gmtime_emulation_type || my_time(NULL)), \
5805        (gmtime_emulation_type == 1 ? toutc_dst(secs) : \
5806        ((secs) - utc_offset_secs))))
5807
5808 static time_t toloc_dst(time_t utc) {
5809   struct tm *rsltmp;
5810
5811   utc += utc_offset_secs;
5812   if ((rsltmp = localtime(&utc)) == NULL) return -1;
5813   if (rsltmp->tm_isdst) utc += 3600;
5814   return utc;
5815 }
5816 #define _toloc(secs)  ((secs) == (time_t) -1 ? (time_t) -1 : \
5817        ((gmtime_emulation_type || my_time(NULL)), \
5818        (gmtime_emulation_type == 1 ? toloc_dst(secs) : \
5819        ((secs) + utc_offset_secs))))
5820
5821 #ifndef RTL_USES_UTC
5822 /*
5823   
5824     ucx$tz = "EST5EDT4,M4.1.0,M10.5.0"  typical 
5825         DST starts on 1st sun of april      at 02:00  std time
5826             ends on last sun of october     at 02:00  dst time
5827     see the UCX management command reference, SET CONFIG TIMEZONE
5828     for formatting info.
5829
5830     No, it's not as general as it should be, but then again, NOTHING
5831     will handle UK times in a sensible way. 
5832 */
5833
5834
5835 /* 
5836     parse the DST start/end info:
5837     (Jddd|ddd|Mmon.nth.dow)[/hh:mm:ss]
5838 */
5839
5840 static char *
5841 tz_parse_startend(char *s, struct tm *w, int *past)
5842 {
5843     int dinm[] = {31,28,31,30,31,30,31,31,30,31,30,31};
5844     int ly, dozjd, d, m, n, hour, min, sec, j, k;
5845     time_t g;
5846
5847     if (!s)    return 0;
5848     if (!w) return 0;
5849     if (!past) return 0;
5850
5851     ly = 0;
5852     if (w->tm_year % 4        == 0) ly = 1;
5853     if (w->tm_year % 100      == 0) ly = 0;
5854     if (w->tm_year+1900 % 400 == 0) ly = 1;
5855     if (ly) dinm[1]++;
5856
5857     dozjd = isdigit(*s);
5858     if (*s == 'J' || *s == 'j' || dozjd) {
5859         if (!dozjd && !isdigit(*++s)) return 0;
5860         d = *s++ - '0';
5861         if (isdigit(*s)) {
5862             d = d*10 + *s++ - '0';
5863             if (isdigit(*s)) {
5864                 d = d*10 + *s++ - '0';
5865             }
5866         }
5867         if (d == 0) return 0;
5868         if (d > 366) return 0;
5869         d--;
5870         if (!dozjd && d > 58 && ly) d++;  /* after 28 feb */
5871         g = d * 86400;
5872         dozjd = 1;
5873     } else if (*s == 'M' || *s == 'm') {
5874         if (!isdigit(*++s)) return 0;
5875         m = *s++ - '0';
5876         if (isdigit(*s)) m = 10*m + *s++ - '0';
5877         if (*s != '.') return 0;
5878         if (!isdigit(*++s)) return 0;
5879         n = *s++ - '0';
5880         if (n < 1 || n > 5) return 0;
5881         if (*s != '.') return 0;
5882         if (!isdigit(*++s)) return 0;
5883         d = *s++ - '0';
5884         if (d > 6) return 0;
5885     }
5886
5887     if (*s == '/') {
5888         if (!isdigit(*++s)) return 0;
5889         hour = *s++ - '0';
5890         if (isdigit(*s)) hour = 10*hour + *s++ - '0';
5891         if (*s == ':') {
5892             if (!isdigit(*++s)) return 0;
5893             min = *s++ - '0';
5894             if (isdigit(*s)) min = 10*min + *s++ - '0';
5895             if (*s == ':') {
5896                 if (!isdigit(*++s)) return 0;
5897                 sec = *s++ - '0';
5898                 if (isdigit(*s)) sec = 10*sec + *s++ - '0';
5899             }
5900         }
5901     } else {
5902         hour = 2;
5903         min = 0;
5904         sec = 0;
5905     }
5906
5907     if (dozjd) {
5908         if (w->tm_yday < d) goto before;
5909         if (w->tm_yday > d) goto after;
5910     } else {
5911         if (w->tm_mon+1 < m) goto before;
5912         if (w->tm_mon+1 > m) goto after;
5913
5914         j = (42 + w->tm_wday - w->tm_mday)%7;   /*dow of mday 0 */
5915         k = d - j; /* mday of first d */
5916         if (k <= 0) k += 7;
5917         k += 7 * ((n>4?4:n)-1);  /* mday of n'th d */
5918         if (n == 5 && k+7 <= dinm[w->tm_mon]) k += 7;
5919         if (w->tm_mday < k) goto before;
5920         if (w->tm_mday > k) goto after;
5921     }
5922
5923     if (w->tm_hour < hour) goto before;
5924     if (w->tm_hour > hour) goto after;
5925     if (w->tm_min  < min)  goto before;
5926     if (w->tm_min  > min)  goto after;
5927     if (w->tm_sec  < sec)  goto before;
5928     goto after;
5929
5930 before:
5931     *past = 0;
5932     return s;
5933 after:
5934     *past = 1;
5935     return s;
5936 }
5937
5938
5939
5940
5941 /*  parse the offset:   (+|-)hh[:mm[:ss]]  */
5942
5943 static char *
5944 tz_parse_offset(char *s, int *offset)
5945 {
5946     int hour = 0, min = 0, sec = 0;
5947     int neg = 0;
5948     if (!s) return 0;
5949     if (!offset) return 0;
5950
5951     if (*s == '-') {neg++; s++;}
5952     if (*s == '+') s++;
5953     if (!isdigit(*s)) return 0;
5954     hour = *s++ - '0';
5955     if (isdigit(*s)) hour = hour*10+(*s++ - '0');
5956     if (hour > 24) return 0;
5957     if (*s == ':') {
5958         if (!isdigit(*++s)) return 0;
5959         min = *s++ - '0';
5960         if (isdigit(*s)) min = min*10 + (*s++ - '0');
5961         if (min > 59) return 0;
5962         if (*s == ':') {
5963             if (!isdigit(*++s)) return 0;
5964             sec = *s++ - '0';
5965             if (isdigit(*s)) sec = sec*10 + (*s++ - '0');
5966             if (sec > 59) return 0;
5967         }
5968     }
5969
5970     *offset = (hour*60+min)*60 + sec;
5971     if (neg) *offset = -*offset;
5972     return s;
5973 }
5974
5975 /*
5976     input time is w, whatever type of time the CRTL localtime() uses.
5977     sets dst, the zone, and the gmtoff (seconds)
5978
5979     caches the value of TZ and UCX$TZ env variables; note that 
5980     my_setenv looks for these and sets a flag if they're changed
5981     for efficiency. 
5982
5983     We have to watch out for the "australian" case (dst starts in
5984     october, ends in april)...flagged by "reverse" and checked by
5985     scanning through the months of the previous year.
5986
5987 */
5988
5989 static int
5990 tz_parse(pTHX_ time_t *w, int *dst, char *zone, int *gmtoff)
5991 {
5992     time_t when;
5993     struct tm *w2;
5994     char *s,*s2;
5995     char *dstzone, *tz, *s_start, *s_end;
5996     int std_off, dst_off, isdst;
5997     int y, dststart, dstend;
5998     static char envtz[1025];  /* longer than any logical, symbol, ... */
5999     static char ucxtz[1025];
6000     static char reversed = 0;
6001
6002     if (!w) return 0;
6003
6004     if (tz_updated) {
6005         tz_updated = 0;
6006         reversed = -1;  /* flag need to check  */
6007         envtz[0] = ucxtz[0] = '\0';
6008         tz = my_getenv("TZ",0);
6009         if (tz) strcpy(envtz, tz);
6010         tz = my_getenv("UCX$TZ",0);
6011         if (tz) strcpy(ucxtz, tz);
6012         if (!envtz[0] && !ucxtz[0]) return 0;  /* we give up */
6013     }
6014     tz = envtz;
6015     if (!*tz) tz = ucxtz;
6016
6017     s = tz;
6018     while (isalpha(*s)) s++;
6019     s = tz_parse_offset(s, &std_off);
6020     if (!s) return 0;
6021     if (!*s) {                  /* no DST, hurray we're done! */
6022         isdst = 0;
6023         goto done;
6024     }
6025
6026     dstzone = s;
6027     while (isalpha(*s)) s++;
6028     s2 = tz_parse_offset(s, &dst_off);
6029     if (s2) {
6030         s = s2;
6031     } else {
6032         dst_off = std_off - 3600;
6033     }
6034
6035     if (!*s) {      /* default dst start/end?? */
6036         if (tz != ucxtz) {          /* if TZ tells zone only, UCX$TZ tells rule */
6037             s = strchr(ucxtz,',');
6038         }
6039         if (!s || !*s) s = ",M4.1.0,M10.5.0";   /* we know we do dst, default rule */
6040     }
6041     if (*s != ',') return 0;
6042
6043     when = *w;
6044     when = _toutc(when);      /* convert to utc */
6045     when = when - std_off;    /* convert to pseudolocal time*/
6046
6047     w2 = localtime(&when);
6048     y = w2->tm_year;
6049     s_start = s+1;
6050     s = tz_parse_startend(s_start,w2,&dststart);
6051     if (!s) return 0;
6052     if (*s != ',') return 0;
6053
6054     when = *w;
6055     when = _toutc(when);      /* convert to utc */
6056     when = when - dst_off;    /* convert to pseudolocal time*/
6057     w2 = localtime(&when);
6058     if (w2->tm_year != y) {   /* spans a year, just check one time */
6059         when += dst_off - std_off;
6060         w2 = localtime(&when);
6061     }
6062     s_end = s+1;
6063     s = tz_parse_startend(s_end,w2,&dstend);
6064     if (!s) return 0;
6065
6066     if (reversed == -1) {  /* need to check if start later than end */
6067         int j, ds, de;
6068
6069         when = *w;
6070         if (when < 2*365*86400) {
6071             when += 2*365*86400;
6072         } else {
6073             when -= 365*86400;
6074         }
6075         w2 =localtime(&when);
6076         when = when + (15 - w2->tm_yday) * 86400;   /* jan 15 */
6077
6078         for (j = 0; j < 12; j++) {
6079             w2 =localtime(&when);
6080             (void) tz_parse_startend(s_start,w2,&ds);
6081             (void) tz_parse_startend(s_end,w2,&de);
6082             if (ds != de) break;
6083             when += 30*86400;
6084         }
6085         reversed = 0;
6086         if (de && !ds) reversed = 1;
6087     }
6088
6089     isdst = dststart && !dstend;
6090     if (reversed) isdst = dststart  || !dstend;
6091
6092 done:
6093     if (dst)    *dst = isdst;
6094     if (gmtoff) *gmtoff = isdst ? dst_off : std_off;
6095     if (isdst)  tz = dstzone;
6096     if (zone) {
6097         while(isalpha(*tz))  *zone++ = *tz++;
6098         *zone = '\0';
6099     }
6100     return 1;
6101 }
6102
6103 #endif /* !RTL_USES_UTC */
6104
6105 /* my_time(), my_localtime(), my_gmtime()
6106  * By default traffic in UTC time values, using CRTL gmtime() or
6107  * SYS$TIMEZONE_DIFFERENTIAL to determine offset from local time zone.
6108  * Note: We need to use these functions even when the CRTL has working
6109  * UTC support, since they also handle C<use vmsish qw(times);>
6110  *
6111  * Contributed by Chuck Lane  <lane@duphy4.physics.drexel.edu>
6112  * Modified by Charles Bailey <bailey@newman.upenn.edu>
6113  */
6114
6115 /*{{{time_t my_time(time_t *timep)*/
6116 time_t Perl_my_time(pTHX_ time_t *timep)
6117 {
6118   time_t when;
6119   struct tm *tm_p;
6120
6121   if (gmtime_emulation_type == 0) {
6122     int dstnow;
6123     time_t base = 15 * 86400; /* 15jan71; to avoid month/year ends between    */
6124                               /* results of calls to gmtime() and localtime() */
6125                               /* for same &base */
6126
6127     gmtime_emulation_type++;
6128     if ((tm_p = gmtime(&base)) == NULL) { /* CRTL gmtime() is a fake */
6129       char off[LNM$C_NAMLENGTH+1];;
6130
6131       gmtime_emulation_type++;
6132       if (!vmstrnenv("SYS$TIMEZONE_DIFFERENTIAL",off,0,fildev,0)) {
6133         gmtime_emulation_type++;
6134         utc_offset_secs = 0;
6135         Perl_warn(aTHX_ "no UTC offset information; assuming local time is UTC");
6136       }
6137       else { utc_offset_secs = atol(off); }
6138     }
6139     else { /* We've got a working gmtime() */
6140       struct tm gmt, local;
6141
6142       gmt = *tm_p;
6143       tm_p = localtime(&base);
6144       local = *tm_p;
6145       utc_offset_secs  = (local.tm_mday - gmt.tm_mday) * 86400;
6146       utc_offset_secs += (local.tm_hour - gmt.tm_hour) * 3600;
6147       utc_offset_secs += (local.tm_min  - gmt.tm_min)  * 60;
6148       utc_offset_secs += (local.tm_sec  - gmt.tm_sec);
6149     }
6150   }
6151
6152   when = time(NULL);
6153 # ifdef VMSISH_TIME
6154 # ifdef RTL_USES_UTC
6155   if (VMSISH_TIME) when = _toloc(when);
6156 # else
6157   if (!VMSISH_TIME) when = _toutc(when);
6158 # endif
6159 # endif
6160   if (timep != NULL) *timep = when;
6161   return when;
6162
6163 }  /* end of my_time() */
6164 /*}}}*/
6165
6166
6167 /*{{{struct tm *my_gmtime(const time_t *timep)*/
6168 struct tm *
6169 Perl_my_gmtime(pTHX_ const time_t *timep)
6170 {
6171   char *p;
6172   time_t when;
6173   struct tm *rsltmp;
6174
6175   if (timep == NULL) {
6176     set_errno(EINVAL); set_vaxc_errno(LIB$_INVARG);
6177     return NULL;
6178   }
6179   if (*timep == 0) gmtime_emulation_type = 0;  /* possibly reset TZ */
6180
6181   when = *timep;
6182 # ifdef VMSISH_TIME
6183   if (VMSISH_TIME) when = _toutc(when); /* Input was local time */
6184 #  endif
6185 # ifdef RTL_USES_UTC  /* this implies that the CRTL has a working gmtime() */
6186   return gmtime(&when);
6187 # else
6188   /* CRTL localtime() wants local time as input, so does no tz correction */
6189   rsltmp = localtime(&when);
6190   if (rsltmp) rsltmp->tm_isdst = 0;  /* We already took DST into account */
6191   return rsltmp;
6192 #endif
6193 }  /* end of my_gmtime() */
6194 /*}}}*/
6195
6196
6197 /*{{{struct tm *my_localtime(const time_t *timep)*/
6198 struct tm *
6199 Perl_my_localtime(pTHX_ const time_t *timep)
6200 {
6201   time_t when, whenutc;
6202   struct tm *rsltmp;
6203   int dst, offset;
6204
6205   if (timep == NULL) {
6206     set_errno(EINVAL); set_vaxc_errno(LIB$_INVARG);
6207     return NULL;
6208   }
6209   if (*timep == 0) gmtime_emulation_type = 0;  /* possibly reset TZ */
6210   if (gmtime_emulation_type == 0) (void) my_time(NULL); /* Init UTC */
6211
6212   when = *timep;
6213 # ifdef RTL_USES_UTC
6214 # ifdef VMSISH_TIME
6215   if (VMSISH_TIME) when = _toutc(when);
6216 # endif
6217   /* CRTL localtime() wants UTC as input, does tz correction itself */
6218   return localtime(&when);
6219   
6220 # else /* !RTL_USES_UTC */
6221   whenutc = when;
6222 # ifdef VMSISH_TIME
6223   if (!VMSISH_TIME) when = _toloc(whenutc);  /*  input was UTC */
6224   if (VMSISH_TIME) whenutc = _toutc(when);   /*  input was truelocal */
6225 # endif
6226   dst = -1;
6227 #ifndef RTL_USES_UTC
6228   if (tz_parse(aTHX_ &when, &dst, 0, &offset)) {   /* truelocal determines DST*/
6229       when = whenutc - offset;                   /* pseudolocal time*/
6230   }
6231 # endif
6232   /* CRTL localtime() wants local time as input, so does no tz correction */
6233   rsltmp = localtime(&when);
6234   if (rsltmp && gmtime_emulation_type != 1) rsltmp->tm_isdst = dst;
6235   return rsltmp;
6236 # endif
6237
6238 } /*  end of my_localtime() */
6239 /*}}}*/
6240
6241 /* Reset definitions for later calls */
6242 #define gmtime(t)    my_gmtime(t)
6243 #define localtime(t) my_localtime(t)
6244 #define time(t)      my_time(t)
6245
6246
6247 /* my_utime - update modification time of a file
6248  * calling sequence is identical to POSIX utime(), but under
6249  * VMS only the modification time is changed; ODS-2 does not
6250  * maintain access times.  Restrictions differ from the POSIX
6251  * definition in that the time can be changed as long as the
6252  * caller has permission to execute the necessary IO$_MODIFY $QIO;
6253  * no separate checks are made to insure that the caller is the
6254  * owner of the file or has special privs enabled.
6255  * Code here is based on Joe Meadows' FILE utility.
6256  */
6257
6258 /* Adjustment from Unix epoch (01-JAN-1970 00:00:00.00)
6259  *              to VMS epoch  (01-JAN-1858 00:00:00.00)
6260  * in 100 ns intervals.
6261  */
6262 static const long int utime_baseadjust[2] = { 0x4beb4000, 0x7c9567 };
6263
6264 /*{{{int my_utime(char *path, struct utimbuf *utimes)*/
6265 int Perl_my_utime(pTHX_ char *file, struct utimbuf *utimes)
6266 {
6267   register int i;
6268   long int bintime[2], len = 2, lowbit, unixtime,
6269            secscale = 10000000; /* seconds --> 100 ns intervals */
6270   unsigned long int chan, iosb[2], retsts;
6271   char vmsspec[NAM$C_MAXRSS+1], rsa[NAM$C_MAXRSS], esa[NAM$C_MAXRSS];
6272   struct FAB myfab = cc$rms_fab;
6273   struct NAM mynam = cc$rms_nam;
6274 #if defined (__DECC) && defined (__VAX)
6275   /* VAX DEC C atrdef.h has unsigned type for pointer member atr$l_addr,
6276    * at least through VMS V6.1, which causes a type-conversion warning.
6277    */
6278 #  pragma message save
6279 #  pragma message disable cvtdiftypes
6280 #endif
6281   struct atrdef myatr[2] = {{sizeof bintime, ATR$C_REVDATE, bintime}, {0,0,0}};
6282   struct fibdef myfib;
6283 #if defined (__DECC) && defined (__VAX)
6284   /* This should be right after the declaration of myatr, but due
6285    * to a bug in VAX DEC C, this takes effect a statement early.
6286    */
6287 #  pragma message restore
6288 #endif
6289   struct dsc$descriptor fibdsc = {sizeof(myfib), DSC$K_DTYPE_Z, DSC$K_CLASS_S,(char *) &myfib},
6290                         devdsc = {0,DSC$K_DTYPE_T, DSC$K_CLASS_S,0},
6291                         fnmdsc = {0,DSC$K_DTYPE_T, DSC$K_CLASS_S,0};
6292
6293   if (file == NULL || *file == '\0') {
6294     set_errno(ENOENT);
6295     set_vaxc_errno(LIB$_INVARG);
6296     return -1;
6297   }
6298   if (do_tovmsspec(file,vmsspec,0) == NULL) return -1;
6299
6300   if (utimes != NULL) {
6301     /* Convert Unix time    (seconds since 01-JAN-1970 00:00:00.00)
6302      * to VMS quadword time (100 nsec intervals since 01-JAN-1858 00:00:00.00).
6303      * Since time_t is unsigned long int, and lib$emul takes a signed long int
6304      * as input, we force the sign bit to be clear by shifting unixtime right
6305      * one bit, then multiplying by an extra factor of 2 in lib$emul().
6306      */
6307     lowbit = (utimes->modtime & 1) ? secscale : 0;
6308     unixtime = (long int) utimes->modtime;
6309 #   ifdef VMSISH_TIME
6310     /* If input was UTC; convert to local for sys svc */
6311     if (!VMSISH_TIME) unixtime = _toloc(unixtime);
6312 #   endif
6313     unixtime >>= 1;  secscale <<= 1;
6314     retsts = lib$emul(&secscale, &unixtime, &lowbit, bintime);
6315     if (!(retsts & 1)) {
6316       set_errno(EVMSERR);
6317       set_vaxc_errno(retsts);
6318       return -1;
6319     }
6320     retsts = lib$addx(bintime,utime_baseadjust,bintime,&len);
6321     if (!(retsts & 1)) {
6322       set_errno(EVMSERR);
6323       set_vaxc_errno(retsts);
6324       return -1;
6325     }
6326   }
6327   else {
6328     /* Just get the current time in VMS format directly */
6329     retsts = sys$gettim(bintime);
6330     if (!(retsts & 1)) {
6331       set_errno(EVMSERR);
6332       set_vaxc_errno(retsts);
6333       return -1;
6334     }
6335   }
6336
6337   myfab.fab$l_fna = vmsspec;
6338   myfab.fab$b_fns = (unsigned char) strlen(vmsspec);
6339   myfab.fab$l_nam = &mynam;
6340   mynam.nam$l_esa = esa;
6341   mynam.nam$b_ess = (unsigned char) sizeof esa;
6342   mynam.nam$l_rsa = rsa;
6343   mynam.nam$b_rss = (unsigned char) sizeof rsa;
6344
6345   /* Look for the file to be affected, letting RMS parse the file
6346    * specification for us as well.  I have set errno using only
6347    * values documented in the utime() man page for VMS POSIX.
6348    */
6349   retsts = sys$parse(&myfab,0,0);
6350   if (!(retsts & 1)) {
6351     set_vaxc_errno(retsts);
6352     if      (retsts == RMS$_PRV) set_errno(EACCES);
6353     else if (retsts == RMS$_DIR) set_errno(ENOTDIR);
6354     else                         set_errno(EVMSERR);
6355     return -1;
6356   }
6357   retsts = sys$search(&myfab,0,0);
6358   if (!(retsts & 1)) {
6359     mynam.nam$b_nop |= NAM$M_SYNCHK;  mynam.nam$l_rlf = NULL;
6360     myfab.fab$b_dns = 0;  (void) sys$parse(&myfab,0,0);
6361     set_vaxc_errno(retsts);
6362     if      (retsts == RMS$_PRV) set_errno(EACCES);
6363     else if (retsts == RMS$_FNF) set_errno(ENOENT);
6364     else                         set_errno(EVMSERR);
6365     return -1;
6366   }
6367
6368   devdsc.dsc$w_length = mynam.nam$b_dev;
6369   devdsc.dsc$a_pointer = (char *) mynam.nam$l_dev;
6370
6371   retsts = sys$assign(&devdsc,&chan,0,0);
6372   if (!(retsts & 1)) {
6373     mynam.nam$b_nop |= NAM$M_SYNCHK;  mynam.nam$l_rlf = NULL;
6374     myfab.fab$b_dns = 0;  (void) sys$parse(&myfab,0,0);
6375     set_vaxc_errno(retsts);
6376     if      (retsts == SS$_IVDEVNAM)   set_errno(ENOTDIR);
6377     else if (retsts == SS$_NOPRIV)     set_errno(EACCES);
6378     else if (retsts == SS$_NOSUCHDEV)  set_errno(ENOTDIR);
6379     else                               set_errno(EVMSERR);
6380     return -1;
6381   }
6382
6383   fnmdsc.dsc$a_pointer = mynam.nam$l_name;
6384   fnmdsc.dsc$w_length = mynam.nam$b_name + mynam.nam$b_type + mynam.nam$b_ver;
6385
6386   memset((void *) &myfib, 0, sizeof myfib);
6387 #if defined(__DECC) || defined(__DECCXX)
6388   for (i=0;i<3;i++) myfib.fib$w_fid[i] = mynam.nam$w_fid[i];
6389   for (i=0;i<3;i++) myfib.fib$w_did[i] = mynam.nam$w_did[i];
6390   /* This prevents the revision time of the file being reset to the current
6391    * time as a result of our IO$_MODIFY $QIO. */
6392   myfib.fib$l_acctl = FIB$M_NORECORD;
6393 #else
6394   for (i=0;i<3;i++) myfib.fib$r_fid_overlay.fib$w_fid[i] = mynam.nam$w_fid[i];
6395   for (i=0;i<3;i++) myfib.fib$r_did_overlay.fib$w_did[i] = mynam.nam$w_did[i];
6396   myfib.fib$r_acctl_overlay.fib$l_acctl = FIB$M_NORECORD;
6397 #endif
6398   retsts = sys$qiow(0,chan,IO$_MODIFY,iosb,0,0,&fibdsc,&fnmdsc,0,0,myatr,0);
6399   mynam.nam$b_nop |= NAM$M_SYNCHK;  mynam.nam$l_rlf = NULL;
6400   myfab.fab$b_dns = 0;  (void) sys$parse(&myfab,0,0);
6401   _ckvmssts(sys$dassgn(chan));
6402   if (retsts & 1) retsts = iosb[0];
6403   if (!(retsts & 1)) {
6404     set_vaxc_errno(retsts);
6405     if (retsts == SS$_NOPRIV) set_errno(EACCES);
6406     else                      set_errno(EVMSERR);
6407     return -1;
6408   }
6409
6410   return 0;
6411 }  /* end of my_utime() */
6412 /*}}}*/
6413
6414 /*
6415  * flex_stat, flex_fstat
6416  * basic stat, but gets it right when asked to stat
6417  * a Unix-style path ending in a directory name (e.g. dir1/dir2/dir3)
6418  */
6419
6420 /* encode_dev packs a VMS device name string into an integer to allow
6421  * simple comparisons. This can be used, for example, to check whether two
6422  * files are located on the same device, by comparing their encoded device
6423  * names. Even a string comparison would not do, because stat() reuses the
6424  * device name buffer for each call; so without encode_dev, it would be
6425  * necessary to save the buffer and use strcmp (this would mean a number of
6426  * changes to the standard Perl code, to say nothing of what a Perl script
6427  * would have to do.
6428  *
6429  * The device lock id, if it exists, should be unique (unless perhaps compared
6430  * with lock ids transferred from other nodes). We have a lock id if the disk is
6431  * mounted cluster-wide, which is when we tend to get long (host-qualified)
6432  * device names. Thus we use the lock id in preference, and only if that isn't
6433  * available, do we try to pack the device name into an integer (flagged by
6434  * the sign bit (LOCKID_MASK) being set).
6435  *
6436  * Note that encode_dev cannot guarantee an 1-to-1 correspondence twixt device
6437  * name and its encoded form, but it seems very unlikely that we will find
6438  * two files on different disks that share the same encoded device names,
6439  * and even more remote that they will share the same file id (if the test
6440  * is to check for the same file).
6441  *
6442  * A better method might be to use sys$device_scan on the first call, and to
6443  * search for the device, returning an index into the cached array.
6444  * The number returned would be more intelligable.
6445  * This is probably not worth it, and anyway would take quite a bit longer
6446  * on the first call.
6447  */
6448 #define LOCKID_MASK 0x80000000     /* Use 0 to force device name use only */
6449 static mydev_t encode_dev (pTHX_ const char *dev)
6450 {
6451   int i;
6452   unsigned long int f;
6453   mydev_t enc;
6454   char c;
6455   const char *q;
6456
6457   if (!dev || !dev[0]) return 0;
6458
6459 #if LOCKID_MASK
6460   {
6461     struct dsc$descriptor_s dev_desc;
6462     unsigned long int status, lockid, item = DVI$_LOCKID;
6463
6464     /* For cluster-mounted disks, the disk lock identifier is unique, so we
6465        can try that first. */
6466     dev_desc.dsc$w_length =  strlen (dev);
6467     dev_desc.dsc$b_dtype =   DSC$K_DTYPE_T;
6468     dev_desc.dsc$b_class =   DSC$K_CLASS_S;
6469     dev_desc.dsc$a_pointer = (char *) dev;
6470     _ckvmssts(lib$getdvi(&item, 0, &dev_desc, &lockid, 0, 0));
6471     if (lockid) return (lockid & ~LOCKID_MASK);
6472   }
6473 #endif
6474
6475   /* Otherwise we try to encode the device name */
6476   enc = 0;
6477   f = 1;
6478   i = 0;
6479   for (q = dev + strlen(dev); q--; q >= dev) {
6480     if (isdigit (*q))
6481       c= (*q) - '0';
6482     else if (isalpha (toupper (*q)))
6483       c= toupper (*q) - 'A' + (char)10;
6484     else
6485       continue; /* Skip '$'s */
6486     i++;
6487     if (i>6) break;     /* 36^7 is too large to fit in an unsigned long int */
6488     if (i>1) f *= 36;
6489     enc += f * (unsigned long int) c;
6490   }
6491   return (enc | LOCKID_MASK);  /* May have already overflowed into bit 31 */
6492
6493 }  /* end of encode_dev() */
6494
6495 static char namecache[NAM$C_MAXRSS+1];
6496
6497 static int
6498 is_null_device(name)
6499     const char *name;
6500 {
6501     /* The VMS null device is named "_NLA0:", usually abbreviated as "NL:".
6502        The underscore prefix, controller letter, and unit number are
6503        independently optional; for our purposes, the colon punctuation
6504        is not.  The colon can be trailed by optional directory and/or
6505        filename, but two consecutive colons indicates a nodename rather
6506        than a device.  [pr]  */
6507   if (*name == '_') ++name;
6508   if (tolower(*name++) != 'n') return 0;
6509   if (tolower(*name++) != 'l') return 0;
6510   if (tolower(*name) == 'a') ++name;
6511   if (*name == '0') ++name;
6512   return (*name++ == ':') && (*name != ':');
6513 }
6514
6515 /* Do the permissions allow some operation?  Assumes PL_statcache already set. */
6516 /* Do this via $Check_Access on VMS, since the CRTL stat() returns only a
6517  * subset of the applicable information.
6518  */
6519 bool
6520 Perl_cando(pTHX_ Mode_t bit, Uid_t effective, Stat_t *statbufp)
6521 {
6522   char fname_phdev[NAM$C_MAXRSS+1];
6523   if (statbufp == &PL_statcache) return cando_by_name(bit,effective,namecache);
6524   else {
6525     char fname[NAM$C_MAXRSS+1];
6526     unsigned long int retsts;
6527     struct dsc$descriptor_s devdsc = {0, DSC$K_DTYPE_T, DSC$K_CLASS_S, 0},
6528                             namdsc = {0, DSC$K_DTYPE_T, DSC$K_CLASS_S, 0};
6529
6530     /* If the struct mystat is stale, we're OOL; stat() overwrites the
6531        device name on successive calls */
6532     devdsc.dsc$a_pointer = ((Stat_t *)statbufp)->st_devnam;
6533     devdsc.dsc$w_length = strlen(((Stat_t *)statbufp)->st_devnam);
6534     namdsc.dsc$a_pointer = fname;
6535     namdsc.dsc$w_length = sizeof fname - 1;
6536
6537     retsts = lib$fid_to_name(&devdsc,&(((Stat_t *)statbufp)->st_ino),
6538                              &namdsc,&namdsc.dsc$w_length,0,0);
6539     if (retsts & 1) {
6540       fname[namdsc.dsc$w_length] = '\0';
6541 /* 
6542  * lib$fid_to_name returns DVI$_LOGVOLNAM as the device part of the name,
6543  * but if someone has redefined that logical, Perl gets very lost.  Since
6544  * we have the physical device name from the stat buffer, just paste it on.
6545  */
6546       strcpy( fname_phdev, statbufp->st_devnam );
6547       strcat( fname_phdev, strrchr(fname, ':') );
6548
6549       return cando_by_name(bit,effective,fname_phdev);
6550     }
6551     else if (retsts == SS$_NOSUCHDEV || retsts == SS$_NOSUCHFILE) {
6552       Perl_warn(aTHX_ "Can't get filespec - stale stat buffer?\n");
6553       return FALSE;
6554     }
6555     _ckvmssts(retsts);
6556     return FALSE;  /* Should never get to here */
6557   }
6558 }  /* end of cando() */
6559 /*}}}*/
6560
6561
6562 /*{{{I32 cando_by_name(I32 bit, Uid_t effective, char *fname)*/
6563 I32
6564 Perl_cando_by_name(pTHX_ I32 bit, Uid_t effective, char *fname)
6565 {
6566   static char usrname[L_cuserid];
6567   static struct dsc$descriptor_s usrdsc =
6568          {0, DSC$K_DTYPE_T, DSC$K_CLASS_S, usrname};
6569   char vmsname[NAM$C_MAXRSS+1], fileified[NAM$C_MAXRSS+1];
6570   unsigned long int objtyp = ACL$C_FILE, access, retsts, privused, iosb[2];
6571   unsigned short int retlen;
6572   struct dsc$descriptor_s namdsc = {0, DSC$K_DTYPE_T, DSC$K_CLASS_S, 0};
6573   union prvdef curprv;
6574   struct itmlst_3 armlst[3] = {{sizeof access, CHP$_ACCESS, &access, &retlen},
6575          {sizeof privused, CHP$_PRIVUSED, &privused, &retlen},{0,0,0,0}};
6576   struct itmlst_3 jpilst[3] = {{sizeof curprv, JPI$_CURPRIV, &curprv, &retlen},
6577          {sizeof usrname, JPI$_USERNAME, &usrname, &usrdsc.dsc$w_length},
6578          {0,0,0,0}};
6579   struct itmlst_3 usrprolst[2] = {{sizeof curprv, CHP$_PRIV, &curprv, &retlen},
6580          {0,0,0,0}};
6581   struct dsc$descriptor_s usrprodsc = {0, DSC$K_DTYPE_T, DSC$K_CLASS_S, 0};
6582
6583   if (!fname || !*fname) return FALSE;
6584   /* Make sure we expand logical names, since sys$check_access doesn't */
6585   if (!strpbrk(fname,"/]>:")) {
6586     strcpy(fileified,fname);
6587     while (!strpbrk(fileified,"/]>:>") && my_trnlnm(fileified,fileified,0)) ;
6588     fname = fileified;
6589   }
6590   if (!do_tovmsspec(fname,vmsname,1)) return FALSE;
6591   retlen = namdsc.dsc$w_length = strlen(vmsname);
6592   namdsc.dsc$a_pointer = vmsname;
6593   if (vmsname[retlen-1] == ']' || vmsname[retlen-1] == '>' ||
6594       vmsname[retlen-1] == ':') {
6595     if (!do_fileify_dirspec(vmsname,fileified,1)) return FALSE;
6596     namdsc.dsc$w_length = strlen(fileified);
6597     namdsc.dsc$a_pointer = fileified;
6598   }
6599
6600   switch (bit) {
6601     case S_IXUSR: case S_IXGRP: case S_IXOTH:
6602       access = ARM$M_EXECUTE; break;
6603     case S_IRUSR: case S_IRGRP: case S_IROTH:
6604       access = ARM$M_READ; break;
6605     case S_IWUSR: case S_IWGRP: case S_IWOTH:
6606       access = ARM$M_WRITE; break;
6607     case S_IDUSR: case S_IDGRP: case S_IDOTH:
6608       access = ARM$M_DELETE; break;
6609     default:
6610       return FALSE;
6611   }
6612
6613   /* Before we call $check_access, create a user profile with the current
6614    * process privs since otherwise it just uses the default privs from the
6615    * UAF and might give false positives or negatives.
6616    */
6617
6618   /* get current process privs and username */
6619   _ckvmssts(sys$getjpiw(0,0,0,jpilst,iosb,0,0));
6620   _ckvmssts(iosb[0]);
6621
6622   /* find out the space required for the profile */
6623   _ckvmssts(sys$create_user_profile(&usrdsc,&usrprolst,0,0,
6624                                     &usrprodsc.dsc$w_length,0));
6625
6626   /* allocate space for the profile and get it filled in */
6627   New(1330,usrprodsc.dsc$a_pointer,usrprodsc.dsc$w_length,char);
6628   _ckvmssts(sys$create_user_profile(&usrdsc,&usrprolst,0,usrprodsc.dsc$a_pointer,
6629                                     &usrprodsc.dsc$w_length,0));
6630
6631   /* use the profile to check access to the file; free profile & analyze results */
6632   retsts = sys$check_access(&objtyp,&namdsc,0,armlst,0,0,0,&usrprodsc);
6633   Safefree(usrprodsc.dsc$a_pointer);
6634   if (retsts == SS$_NOCALLPRIV) retsts = SS$_NOPRIV; /* not really 3rd party */
6635   if (retsts == SS$_NOPRIV      || retsts == SS$_NOSUCHOBJECT ||
6636       retsts == SS$_INVFILFOROP || retsts == RMS$_FNF || retsts == RMS$_SYN ||
6637       retsts == RMS$_DIR        || retsts == RMS$_DEV || retsts == RMS$_DNF) {
6638     set_vaxc_errno(retsts);
6639     if (retsts == SS$_NOPRIV) set_errno(EACCES);
6640     else if (retsts == SS$_INVFILFOROP) set_errno(EINVAL);
6641     else set_errno(ENOENT);
6642     return FALSE;
6643   }
6644   if (retsts == SS$_NORMAL || retsts == SS$_ACCONFLICT) {
6645     return TRUE;
6646   }
6647   _ckvmssts(retsts);
6648
6649   return FALSE;  /* Should never get here */
6650
6651 }  /* end of cando_by_name() */
6652 /*}}}*/
6653
6654
6655 /*{{{ int flex_fstat(int fd, Stat_t *statbuf)*/
6656 int
6657 Perl_flex_fstat(pTHX_ int fd, Stat_t *statbufp)
6658 {
6659   if (!fstat(fd,(stat_t *) statbufp)) {
6660     if (statbufp == (Stat_t *) &PL_statcache) *namecache == '\0';
6661     statbufp->st_dev = encode_dev(aTHX_ statbufp->st_devnam);
6662 #   ifdef RTL_USES_UTC
6663 #   ifdef VMSISH_TIME
6664     if (VMSISH_TIME) {
6665       statbufp->st_mtime = _toloc(statbufp->st_mtime);
6666       statbufp->st_atime = _toloc(statbufp->st_atime);
6667       statbufp->st_ctime = _toloc(statbufp->st_ctime);
6668     }
6669 #   endif
6670 #   else
6671 #   ifdef VMSISH_TIME
6672     if (!VMSISH_TIME) { /* Return UTC instead of local time */
6673 #   else
6674     if (1) {
6675 #   endif
6676       statbufp->st_mtime = _toutc(statbufp->st_mtime);
6677       statbufp->st_atime = _toutc(statbufp->st_atime);
6678       statbufp->st_ctime = _toutc(statbufp->st_ctime);
6679     }
6680 #endif
6681     return 0;
6682   }
6683   return -1;
6684
6685 }  /* end of flex_fstat() */
6686 /*}}}*/
6687
6688 /*{{{ int flex_stat(const char *fspec, Stat_t *statbufp)*/
6689 int
6690 Perl_flex_stat(pTHX_ const char *fspec, Stat_t *statbufp)
6691 {
6692     char fileified[NAM$C_MAXRSS+1];
6693     char temp_fspec[NAM$C_MAXRSS+300];
6694     int retval = -1;
6695     int saved_errno, saved_vaxc_errno;
6696
6697     if (!fspec) return retval;
6698     saved_errno = errno; saved_vaxc_errno = vaxc$errno;
6699     strcpy(temp_fspec, fspec);
6700     if (statbufp == (Stat_t *) &PL_statcache)
6701       do_tovmsspec(temp_fspec,namecache,0);
6702     if (is_null_device(temp_fspec)) { /* Fake a stat() for the null device */
6703       memset(statbufp,0,sizeof *statbufp);
6704       statbufp->st_dev = encode_dev(aTHX_ "_NLA0:");
6705       statbufp->st_mode = S_IFBLK | S_IREAD | S_IWRITE | S_IEXEC;
6706       statbufp->st_uid = 0x00010001;
6707       statbufp->st_gid = 0x0001;
6708       time((time_t *)&statbufp->st_mtime);
6709       statbufp->st_atime = statbufp->st_ctime = statbufp->st_mtime;
6710       return 0;
6711     }
6712
6713     /* Try for a directory name first.  If fspec contains a filename without
6714      * a type (e.g. sea:[wine.dark]water), and both sea:[wine.dark]water.dir
6715      * and sea:[wine.dark]water. exist, we prefer the directory here.
6716      * Similarly, sea:[wine.dark] returns the result for sea:[wine]dark.dir,
6717      * not sea:[wine.dark]., if the latter exists.  If the intended target is
6718      * the file with null type, specify this by calling flex_stat() with
6719      * a '.' at the end of fspec.
6720      */
6721     if (do_fileify_dirspec(temp_fspec,fileified,0) != NULL) {
6722       retval = stat(fileified,(stat_t *) statbufp);
6723       if (!retval && statbufp == (Stat_t *) &PL_statcache)
6724         strcpy(namecache,fileified);
6725     }
6726     if (retval) retval = stat(temp_fspec,(stat_t *) statbufp);
6727     if (!retval) {
6728       statbufp->st_dev = encode_dev(aTHX_ statbufp->st_devnam);
6729 #     ifdef RTL_USES_UTC
6730 #     ifdef VMSISH_TIME
6731       if (VMSISH_TIME) {
6732         statbufp->st_mtime = _toloc(statbufp->st_mtime);
6733         statbufp->st_atime = _toloc(statbufp->st_atime);
6734         statbufp->st_ctime = _toloc(statbufp->st_ctime);
6735       }
6736 #     endif
6737 #     else
6738 #     ifdef VMSISH_TIME
6739       if (!VMSISH_TIME) { /* Return UTC instead of local time */
6740 #     else
6741       if (1) {
6742 #     endif
6743         statbufp->st_mtime = _toutc(statbufp->st_mtime);
6744         statbufp->st_atime = _toutc(statbufp->st_atime);
6745         statbufp->st_ctime = _toutc(statbufp->st_ctime);
6746       }
6747 #     endif
6748     }
6749     /* If we were successful, leave errno where we found it */
6750     if (retval == 0) { errno = saved_errno; vaxc$errno = saved_vaxc_errno; }
6751     return retval;
6752
6753 }  /* end of flex_stat() */
6754 /*}}}*/
6755
6756
6757 /*{{{char *my_getlogin()*/
6758 /* VMS cuserid == Unix getlogin, except calling sequence */
6759 char *
6760 my_getlogin()
6761 {
6762     static char user[L_cuserid];
6763     return cuserid(user);
6764 }
6765 /*}}}*/
6766
6767
6768 /*  rmscopy - copy a file using VMS RMS routines
6769  *
6770  *  Copies contents and attributes of spec_in to spec_out, except owner
6771  *  and protection information.  Name and type of spec_in are used as
6772  *  defaults for spec_out.  The third parameter specifies whether rmscopy()
6773  *  should try to propagate timestamps from the input file to the output file.
6774  *  If it is less than 0, no timestamps are preserved.  If it is 0, then
6775  *  rmscopy() will behave similarly to the DCL COPY command: timestamps are
6776  *  propagated to the output file at creation iff the output file specification
6777  *  did not contain an explicit name or type, and the revision date is always
6778  *  updated at the end of the copy operation.  If it is greater than 0, then
6779  *  it is interpreted as a bitmask, in which bit 0 indicates that timestamps
6780  *  other than the revision date should be propagated, and bit 1 indicates
6781  *  that the revision date should be propagated.
6782  *
6783  *  Returns 1 on success; returns 0 and sets errno and vaxc$errno on failure.
6784  *
6785  *  Copyright 1996 by Charles Bailey <bailey@newman.upenn.edu>.
6786  *  Incorporates, with permission, some code from EZCOPY by Tim Adye
6787  *  <T.J.Adye@rl.ac.uk>.  Permission is given to distribute this code
6788  * as part of the Perl standard distribution under the terms of the
6789  * GNU General Public License or the Perl Artistic License.  Copies
6790  * of each may be found in the Perl standard distribution.
6791  */
6792 /*{{{int rmscopy(char *src, char *dst, int preserve_dates)*/
6793 int
6794 Perl_rmscopy(pTHX_ char *spec_in, char *spec_out, int preserve_dates)
6795 {
6796     char vmsin[NAM$C_MAXRSS+1], vmsout[NAM$C_MAXRSS+1], esa[NAM$C_MAXRSS],
6797          rsa[NAM$C_MAXRSS], ubf[32256];
6798     unsigned long int i, sts, sts2;
6799     struct FAB fab_in, fab_out;
6800     struct RAB rab_in, rab_out;
6801     struct NAM nam;
6802     struct XABDAT xabdat;
6803     struct XABFHC xabfhc;
6804     struct XABRDT xabrdt;
6805     struct XABSUM xabsum;
6806
6807     if (!spec_in  || !*spec_in  || !do_tovmsspec(spec_in,vmsin,1) ||
6808         !spec_out || !*spec_out || !do_tovmsspec(spec_out,vmsout,1)) {
6809       set_errno(EINVAL); set_vaxc_errno(LIB$_INVARG);
6810       return 0;
6811     }
6812
6813     fab_in = cc$rms_fab;
6814     fab_in.fab$l_fna = vmsin;
6815     fab_in.fab$b_fns = strlen(vmsin);
6816     fab_in.fab$b_shr = FAB$M_SHRPUT | FAB$M_UPI;
6817     fab_in.fab$b_fac = FAB$M_BIO | FAB$M_GET;
6818     fab_in.fab$l_fop = FAB$M_SQO;
6819     fab_in.fab$l_nam =  &nam;
6820     fab_in.fab$l_xab = (void *) &xabdat;
6821
6822     nam = cc$rms_nam;
6823     nam.nam$l_rsa = rsa;
6824     nam.nam$b_rss = sizeof(rsa);
6825     nam.nam$l_esa = esa;
6826     nam.nam$b_ess = sizeof (esa);
6827     nam.nam$b_esl = nam.nam$b_rsl = 0;
6828
6829     xabdat = cc$rms_xabdat;        /* To get creation date */
6830     xabdat.xab$l_nxt = (void *) &xabfhc;
6831
6832     xabfhc = cc$rms_xabfhc;        /* To get record length */
6833     xabfhc.xab$l_nxt = (void *) &xabsum;
6834
6835     xabsum = cc$rms_xabsum;        /* To get key and area information */
6836
6837     if (!((sts = sys$open(&fab_in)) & 1)) {
6838       set_vaxc_errno(sts);
6839       switch (sts) {
6840         case RMS$_FNF: case RMS$_DNF:
6841           set_errno(ENOENT); break;
6842         case RMS$_DIR:
6843           set_errno(ENOTDIR); break;
6844         case RMS$_DEV:
6845           set_errno(ENODEV); break;
6846         case RMS$_SYN:
6847           set_errno(EINVAL); break;
6848         case RMS$_PRV:
6849           set_errno(EACCES); break;
6850         default:
6851           set_errno(EVMSERR);
6852       }
6853       return 0;
6854     }
6855
6856     fab_out = fab_in;
6857     fab_out.fab$w_ifi = 0;
6858     fab_out.fab$b_fac = FAB$M_BIO | FAB$M_PUT;
6859     fab_out.fab$b_shr = FAB$M_SHRGET | FAB$M_UPI;
6860     fab_out.fab$l_fop = FAB$M_SQO;
6861     fab_out.fab$l_fna = vmsout;
6862     fab_out.fab$b_fns = strlen(vmsout);
6863     fab_out.fab$l_dna = nam.nam$l_name;
6864     fab_out.fab$b_dns = nam.nam$l_name ? nam.nam$b_name + nam.nam$b_type : 0;
6865
6866     if (preserve_dates == 0) {  /* Act like DCL COPY */
6867       nam.nam$b_nop = NAM$M_SYNCHK;
6868       fab_out.fab$l_xab = NULL;  /* Don't disturb data from input file */
6869       if (!((sts = sys$parse(&fab_out)) & 1)) {
6870         set_errno(sts == RMS$_SYN ? EINVAL : EVMSERR);
6871         set_vaxc_errno(sts);
6872         return 0;
6873       }
6874       fab_out.fab$l_xab = (void *) &xabdat;
6875       if (nam.nam$l_fnb & (NAM$M_EXP_NAME | NAM$M_EXP_TYPE)) preserve_dates = 1;
6876     }
6877     fab_out.fab$l_nam = (void *) 0;  /* Done with NAM block */
6878     if (preserve_dates < 0)   /* Clear all bits; we'll use it as a */
6879       preserve_dates =0;      /* bitmask from this point forward   */
6880
6881     if (!(preserve_dates & 1)) fab_out.fab$l_xab = (void *) &xabfhc;
6882     if (!((sts = sys$create(&fab_out)) & 1)) {
6883       set_vaxc_errno(sts);
6884       switch (sts) {
6885         case RMS$_DNF:
6886           set_errno(ENOENT); break;
6887         case RMS$_DIR:
6888           set_errno(ENOTDIR); break;
6889         case RMS$_DEV:
6890           set_errno(ENODEV); break;
6891         case RMS$_SYN:
6892           set_errno(EINVAL); break;
6893         case RMS$_PRV:
6894           set_errno(EACCES); break;
6895         default:
6896           set_errno(EVMSERR);
6897       }
6898       return 0;
6899     }
6900     fab_out.fab$l_fop |= FAB$M_DLT;  /* in case we have to bail out */
6901     if (preserve_dates & 2) {
6902       /* sys$close() will process xabrdt, not xabdat */
6903       xabrdt = cc$rms_xabrdt;
6904 #ifndef __GNUC__
6905       xabrdt.xab$q_rdt = xabdat.xab$q_rdt;
6906 #else
6907       /* gcc doesn't like the assignment, since its prototype for xab$q_rdt
6908        * is unsigned long[2], while DECC & VAXC use a struct */
6909       memcpy(xabrdt.xab$q_rdt,xabdat.xab$q_rdt,sizeof xabrdt.xab$q_rdt);
6910 #endif
6911       fab_out.fab$l_xab = (void *) &xabrdt;
6912     }
6913
6914     rab_in = cc$rms_rab;
6915     rab_in.rab$l_fab = &fab_in;
6916     rab_in.rab$l_rop = RAB$M_BIO;
6917     rab_in.rab$l_ubf = ubf;
6918     rab_in.rab$w_usz = sizeof ubf;
6919     if (!((sts = sys$connect(&rab_in)) & 1)) {
6920       sys$close(&fab_in); sys$close(&fab_out);
6921       set_errno(EVMSERR); set_vaxc_errno(sts);
6922       return 0;
6923     }
6924
6925     rab_out = cc$rms_rab;
6926     rab_out.rab$l_fab = &fab_out;
6927     rab_out.rab$l_rbf = ubf;
6928     if (!((sts = sys$connect(&rab_out)) & 1)) {
6929       sys$close(&fab_in); sys$close(&fab_out);
6930       set_errno(EVMSERR); set_vaxc_errno(sts);
6931       return 0;
6932     }
6933
6934     while ((sts = sys$read(&rab_in))) {  /* always true  */
6935       if (sts == RMS$_EOF) break;
6936       rab_out.rab$w_rsz = rab_in.rab$w_rsz;
6937       if (!(sts & 1) || !((sts = sys$write(&rab_out)) & 1)) {
6938         sys$close(&fab_in); sys$close(&fab_out);
6939         set_errno(EVMSERR); set_vaxc_errno(sts);
6940         return 0;
6941       }
6942     }
6943
6944     fab_out.fab$l_fop &= ~FAB$M_DLT;  /* We got this far; keep the output */
6945     sys$close(&fab_in);  sys$close(&fab_out);
6946     sts = (fab_in.fab$l_sts & 1) ? fab_out.fab$l_sts : fab_in.fab$l_sts;
6947     if (!(sts & 1)) {
6948       set_errno(EVMSERR); set_vaxc_errno(sts);
6949       return 0;
6950     }
6951
6952     return 1;
6953
6954 }  /* end of rmscopy() */
6955 /*}}}*/
6956
6957
6958 /***  The following glue provides 'hooks' to make some of the routines
6959  * from this file available from Perl.  These routines are sufficiently
6960  * basic, and are required sufficiently early in the build process,
6961  * that's it's nice to have them available to miniperl as well as the
6962  * full Perl, so they're set up here instead of in an extension.  The
6963  * Perl code which handles importation of these names into a given
6964  * package lives in [.VMS]Filespec.pm in @INC.
6965  */
6966
6967 void
6968 rmsexpand_fromperl(pTHX_ CV *cv)
6969 {
6970   dXSARGS;
6971   char *fspec, *defspec = NULL, *rslt;
6972   STRLEN n_a;
6973
6974   if (!items || items > 2)
6975     Perl_croak(aTHX_ "Usage: VMS::Filespec::rmsexpand(spec[,defspec])");
6976   fspec = SvPV(ST(0),n_a);
6977   if (!fspec || !*fspec) XSRETURN_UNDEF;
6978   if (items == 2) defspec = SvPV(ST(1),n_a);
6979
6980   rslt = do_rmsexpand(fspec,NULL,1,defspec,0);
6981   ST(0) = sv_newmortal();
6982   if (rslt != NULL) sv_usepvn(ST(0),rslt,strlen(rslt));
6983   XSRETURN(1);
6984 }
6985
6986 void
6987 vmsify_fromperl(pTHX_ CV *cv)
6988 {
6989   dXSARGS;
6990   char *vmsified;
6991   STRLEN n_a;
6992
6993   if (items != 1) Perl_croak(aTHX_ "Usage: VMS::Filespec::vmsify(spec)");
6994   vmsified = do_tovmsspec(SvPV(ST(0),n_a),NULL,1);
6995   ST(0) = sv_newmortal();
6996   if (vmsified != NULL) sv_usepvn(ST(0),vmsified,strlen(vmsified));
6997   XSRETURN(1);
6998 }
6999
7000 void
7001 unixify_fromperl(pTHX_ CV *cv)
7002 {
7003   dXSARGS;
7004   char *unixified;
7005   STRLEN n_a;
7006
7007   if (items != 1) Perl_croak(aTHX_ "Usage: VMS::Filespec::unixify(spec)");
7008   unixified = do_tounixspec(SvPV(ST(0),n_a),NULL,1);
7009   ST(0) = sv_newmortal();
7010   if (unixified != NULL) sv_usepvn(ST(0),unixified,strlen(unixified));
7011   XSRETURN(1);
7012 }
7013
7014 void
7015 fileify_fromperl(pTHX_ CV *cv)
7016 {
7017   dXSARGS;
7018   char *fileified;
7019   STRLEN n_a;
7020
7021   if (items != 1) Perl_croak(aTHX_ "Usage: VMS::Filespec::fileify(spec)");
7022   fileified = do_fileify_dirspec(SvPV(ST(0),n_a),NULL,1);
7023   ST(0) = sv_newmortal();
7024   if (fileified != NULL) sv_usepvn(ST(0),fileified,strlen(fileified));
7025   XSRETURN(1);
7026 }
7027
7028 void
7029 pathify_fromperl(pTHX_ CV *cv)
7030 {
7031   dXSARGS;
7032   char *pathified;
7033   STRLEN n_a;
7034
7035   if (items != 1) Perl_croak(aTHX_ "Usage: VMS::Filespec::pathify(spec)");
7036   pathified = do_pathify_dirspec(SvPV(ST(0),n_a),NULL,1);
7037   ST(0) = sv_newmortal();
7038   if (pathified != NULL) sv_usepvn(ST(0),pathified,strlen(pathified));
7039   XSRETURN(1);
7040 }
7041
7042 void
7043 vmspath_fromperl(pTHX_ CV *cv)
7044 {
7045   dXSARGS;
7046   char *vmspath;
7047   STRLEN n_a;
7048
7049   if (items != 1) Perl_croak(aTHX_ "Usage: VMS::Filespec::vmspath(spec)");
7050   vmspath = do_tovmspath(SvPV(ST(0),n_a),NULL,1);
7051   ST(0) = sv_newmortal();
7052   if (vmspath != NULL) sv_usepvn(ST(0),vmspath,strlen(vmspath));
7053   XSRETURN(1);
7054 }
7055
7056 void
7057 unixpath_fromperl(pTHX_ CV *cv)
7058 {
7059   dXSARGS;
7060   char *unixpath;
7061   STRLEN n_a;
7062
7063   if (items != 1) Perl_croak(aTHX_ "Usage: VMS::Filespec::unixpath(spec)");
7064   unixpath = do_tounixpath(SvPV(ST(0),n_a),NULL,1);
7065   ST(0) = sv_newmortal();
7066   if (unixpath != NULL) sv_usepvn(ST(0),unixpath,strlen(unixpath));
7067   XSRETURN(1);
7068 }
7069
7070 void
7071 candelete_fromperl(pTHX_ CV *cv)
7072 {
7073   dXSARGS;
7074   char fspec[NAM$C_MAXRSS+1], *fsp;
7075   SV *mysv;
7076   IO *io;
7077   STRLEN n_a;
7078
7079   if (items != 1) Perl_croak(aTHX_ "Usage: VMS::Filespec::candelete(spec)");
7080
7081   mysv = SvROK(ST(0)) ? SvRV(ST(0)) : ST(0);
7082   if (SvTYPE(mysv) == SVt_PVGV) {
7083     if (!(io = GvIOp(mysv)) || !PerlIO_getname(IoIFP(io),fspec)) {
7084       set_errno(EINVAL); set_vaxc_errno(LIB$_INVARG);
7085       ST(0) = &PL_sv_no;
7086       XSRETURN(1);
7087     }
7088     fsp = fspec;
7089   }
7090   else {
7091     if (mysv != ST(0) || !(fsp = SvPV(mysv,n_a)) || !*fsp) {
7092       set_errno(EINVAL); set_vaxc_errno(LIB$_INVARG);
7093       ST(0) = &PL_sv_no;
7094       XSRETURN(1);
7095     }
7096   }
7097
7098   ST(0) = boolSV(cando_by_name(S_IDUSR,0,fsp));
7099   XSRETURN(1);
7100 }
7101
7102 void
7103 rmscopy_fromperl(pTHX_ CV *cv)
7104 {
7105   dXSARGS;
7106   char inspec[NAM$C_MAXRSS+1], outspec[NAM$C_MAXRSS+1], *inp, *outp;
7107   int date_flag;
7108   struct dsc$descriptor indsc  = { 0, DSC$K_DTYPE_T, DSC$K_CLASS_S, 0},
7109                         outdsc = { 0, DSC$K_DTYPE_T, DSC$K_CLASS_S, 0};
7110   unsigned long int sts;
7111   SV *mysv;
7112   IO *io;
7113   STRLEN n_a;
7114
7115   if (items < 2 || items > 3)
7116     Perl_croak(aTHX_ "Usage: File::Copy::rmscopy(from,to[,date_flag])");
7117
7118   mysv = SvROK(ST(0)) ? SvRV(ST(0)) : ST(0);
7119   if (SvTYPE(mysv) == SVt_PVGV) {
7120     if (!(io = GvIOp(mysv)) || !PerlIO_getname(IoIFP(io),inspec)) {
7121       set_errno(EINVAL); set_vaxc_errno(LIB$_INVARG);
7122       ST(0) = &PL_sv_no;
7123       XSRETURN(1);
7124     }
7125     inp = inspec;
7126   }
7127   else {
7128     if (mysv != ST(0) || !(inp = SvPV(mysv,n_a)) || !*inp) {
7129       set_errno(EINVAL); set_vaxc_errno(LIB$_INVARG);
7130       ST(0) = &PL_sv_no;
7131       XSRETURN(1);
7132     }
7133   }
7134   mysv = SvROK(ST(1)) ? SvRV(ST(1)) : ST(1);
7135   if (SvTYPE(mysv) == SVt_PVGV) {
7136     if (!(io = GvIOp(mysv)) || !PerlIO_getname(IoIFP(io),outspec)) {
7137       set_errno(EINVAL); set_vaxc_errno(LIB$_INVARG);
7138       ST(0) = &PL_sv_no;
7139       XSRETURN(1);
7140     }
7141     outp = outspec;
7142   }
7143   else {
7144     if (mysv != ST(1) || !(outp = SvPV(mysv,n_a)) || !*outp) {
7145       set_errno(EINVAL); set_vaxc_errno(LIB$_INVARG);
7146       ST(0) = &PL_sv_no;
7147       XSRETURN(1);
7148     }
7149   }
7150   date_flag = (items == 3) ? SvIV(ST(2)) : 0;
7151
7152   ST(0) = boolSV(rmscopy(inp,outp,date_flag));
7153   XSRETURN(1);
7154 }
7155
7156
7157 void
7158 mod2fname(pTHX_ CV *cv)
7159 {
7160   dXSARGS;
7161   char ultimate_name[NAM$C_MAXRSS+1], work_name[NAM$C_MAXRSS*8 + 1],
7162        workbuff[NAM$C_MAXRSS*1 + 1];
7163   int total_namelen = 3, counter, num_entries;
7164   /* ODS-5 ups this, but we want to be consistent, so... */
7165   int max_name_len = 39;
7166   AV *in_array = (AV *)SvRV(ST(0));
7167
7168   num_entries = av_len(in_array);
7169
7170   /* All the names start with PL_. */
7171   strcpy(ultimate_name, "PL_");
7172
7173   /* Clean up our working buffer */
7174   Zero(work_name, sizeof(work_name), char);
7175
7176   /* Run through the entries and build up a working name */
7177   for(counter = 0; counter <= num_entries; counter++) {
7178     /* If it's not the first name then tack on a __ */
7179     if (counter) {
7180       strcat(work_name, "__");
7181     }
7182     strcat(work_name, SvPV(*av_fetch(in_array, counter, FALSE),
7183                            PL_na));
7184   }
7185
7186   /* Check to see if we actually have to bother...*/
7187   if (strlen(work_name) + 3 <= max_name_len) {
7188     strcat(ultimate_name, work_name);
7189   } else {
7190     /* It's too darned big, so we need to go strip. We use the same */
7191     /* algorithm as xsubpp does. First, strip out doubled __ */
7192     char *source, *dest, last;
7193     dest = workbuff;
7194     last = 0;
7195     for (source = work_name; *source; source++) {
7196       if (last == *source && last == '_') {
7197         continue;
7198       }
7199       *dest++ = *source;
7200       last = *source;
7201     }
7202     /* Go put it back */
7203     strcpy(work_name, workbuff);
7204     /* Is it still too big? */
7205     if (strlen(work_name) + 3 > max_name_len) {
7206       /* Strip duplicate letters */
7207       last = 0;
7208       dest = workbuff;
7209       for (source = work_name; *source; source++) {
7210         if (last == toupper(*source)) {
7211         continue;
7212         }
7213         *dest++ = *source;
7214         last = toupper(*source);
7215       }
7216       strcpy(work_name, workbuff);
7217     }
7218
7219     /* Is it *still* too big? */
7220     if (strlen(work_name) + 3 > max_name_len) {
7221       /* Too bad, we truncate */
7222       work_name[max_name_len - 2] = 0;
7223     }
7224     strcat(ultimate_name, work_name);
7225   }
7226
7227   /* Okay, return it */
7228   ST(0) = sv_2mortal(newSVpv(ultimate_name, 0));
7229   XSRETURN(1);
7230 }
7231
7232 void
7233 hushexit_fromperl(pTHX_ CV *cv)
7234 {
7235     dXSARGS;
7236
7237     if (items > 0) {
7238         VMSISH_HUSHED = SvTRUE(ST(0));
7239     }
7240     ST(0) = boolSV(VMSISH_HUSHED);
7241     XSRETURN(1);
7242 }
7243
7244 void  
7245 Perl_sys_intern_dup(pTHX_ struct interp_intern *src, 
7246                           struct interp_intern *dst)
7247 {
7248     memcpy(dst,src,sizeof(struct interp_intern));
7249 }
7250
7251 void  
7252 Perl_sys_intern_clear(pTHX)
7253 {
7254 }
7255
7256 void  
7257 Perl_sys_intern_init(pTHX)
7258 {
7259     unsigned int ix = RAND_MAX;
7260     double x;
7261
7262     VMSISH_HUSHED = 0;
7263
7264     x = (float)ix;
7265     MY_INV_RAND_MAX = 1./x;
7266 }
7267
7268 void
7269 init_os_extras()
7270 {
7271   dTHX;
7272   char* file = __FILE__;
7273   char temp_buff[512];
7274   if (my_trnlnm("DECC$DISABLE_TO_VMS_LOGNAME_TRANSLATION", temp_buff, 0)) {
7275     no_translate_barewords = TRUE;
7276   } else {
7277     no_translate_barewords = FALSE;
7278   }
7279
7280   newXSproto("VMS::Filespec::rmsexpand",rmsexpand_fromperl,file,"$;$");
7281   newXSproto("VMS::Filespec::vmsify",vmsify_fromperl,file,"$");
7282   newXSproto("VMS::Filespec::unixify",unixify_fromperl,file,"$");
7283   newXSproto("VMS::Filespec::pathify",pathify_fromperl,file,"$");
7284   newXSproto("VMS::Filespec::fileify",fileify_fromperl,file,"$");
7285   newXSproto("VMS::Filespec::vmspath",vmspath_fromperl,file,"$");
7286   newXSproto("VMS::Filespec::unixpath",unixpath_fromperl,file,"$");
7287   newXSproto("VMS::Filespec::candelete",candelete_fromperl,file,"$");
7288   newXSproto("DynaLoader::mod2fname", mod2fname, file, "$");
7289   newXS("File::Copy::rmscopy",rmscopy_fromperl,file);
7290   newXSproto("vmsish::hushed",hushexit_fromperl,file,";$");
7291
7292   store_pipelocs(aTHX);         /* will redo any earlier attempts */
7293
7294   return;
7295 }
7296   
7297 /*  End of vms.c */