Make the use64bits and usethreads friendlier/braver;
[p5sagit/p5-mst-13.2.git] / vms / vmsish.h
CommitLineData
a0d0e21e 1/* vmsish.h
2 *
3 * VMS-specific C header file for perl5.
4 *
562a7b0c 5 * Last revised: 16-Sep-1998 by Charles Bailey bailey@newman.upenn.edu
6 * Version: 5.5.2
a0d0e21e 7 */
8
9#ifndef __vmsish_h_included
10#define __vmsish_h_included
11
12#include <descrip.h> /* for dirent struct definitions */
748a9306 13#include <libdef.h> /* status codes for various places */
14#include <rmsdef.h> /* at which errno and vaxc$errno are */
15#include <ssdef.h> /* explicitly set in the perl source code */
4fdae800 16#include <stsdef.h> /* bitmasks for exit status testing */
748a9306 17
4633a7c4 18/* Suppress compiler warnings from DECC for VMS-specific extensions:
e518068a 19 * ADDRCONSTEXT,NEEDCONSTEXT: initialization of data with non-constant values
20 * (e.g. pointer fields of descriptors)
21 */
22#ifdef __DECC
17f28c40 23# pragma message disable (ADDRCONSTEXT,NEEDCONSTEXT)
e518068a 24#endif
25
748a9306 26/* DEC's C compilers and gcc use incompatible definitions of _to(upp|low)er() */
27#ifdef _toupper
28# undef _toupper
29#endif
30#define _toupper(c) (((c) < 'a' || (c) > 'z') ? (c) : (c) & ~040)
31#ifdef _tolower
32# undef _tolower
33#endif
34#define _tolower(c) (((c) < 'A' || (c) > 'Z') ? (c) : (c) | 040)
4633a7c4 35/* DECC 1.3 has a funny definition of abs; it's fixed in DECC 4.0, so this
36 * can go away once DECC 1.3 isn't in use any more. */
37#if defined(__ALPHA) && defined(__DECC)
38#undef abs
39#define abs(__x) __ABS(__x)
40#undef labs
41#define labs(__x) __LABS(__x)
42#endif /* __ALPHA && __DECC */
a0d0e21e 43
44/* Assorted things to look like Unix */
45#ifdef __GNUC__
46#ifndef _IOLBF /* gcc's stdio.h doesn't define this */
47#define _IOLBF 1
48#endif
748a9306 49#endif
a0d0e21e 50#include <processes.h> /* for vfork() */
51#include <unixio.h>
a0d0e21e 52#include <unixlib.h>
53#include <file.h> /* it's not <sys/file.h>, so don't use I_SYS_FILE */
774d564b 54#if defined(__DECC) && defined(__DECC_VER) && __DECC_VER > 20000000
bbce6d69 55# include <unistd.h> /* DECC has this; VAXC and gcc don't */
56#endif
bf109933 57
09b7f37c 58/* VAXC doesn't have a unary plus operator, so we need to get there indirectly */
59#if defined(VAXC) && !defined(__DECC)
60# define NO_UNARY_PLUS
61#endif
62
aa689395 63#ifdef NO_PERL_TYPEDEFS /* a2p; we don't want Perl's special routines */
64# define DONT_MASK_RTL_CALLS
65#endif
66
562a7b0c 67/* Note that we do, in fact, have this */
68#define HAS_GETENV_SV
cc077a9f 69#define HAS_GETENV_LEN
562a7b0c 70
aa689395 71#ifndef DONT_MASK_RTL_CALLS
72# ifdef getenv
73# undef getenv
74# endif
562a7b0c 75 /* getenv used for regular logical names */
76# define getenv(v) my_getenv(v,TRUE)
aa689395 77#endif
a6c40364 78#define getenv_len(v,l) my_getenv_len(v,l,TRUE)
aa689395 79
4fdae800 80/* DECC introduces this routine in the RTL as of VMS 7.0; for now,
81 * we'll use ours, since it gives us the full VMS exit status. */
4fdae800 82#define waitpid my_waitpid
83
61bb5906 84/* Don't redeclare standard RTL routines in Perl's header files;
85 * VMS history or extensions makes some of the formal protoypes
86 * differ from the common Unix forms.
87 */
88#define DONT_DECLARE_STD 1
89
bf109933 90/* Our own contribution to PerlShr's global symbols . . . */
562a7b0c 91#define vmstrnenv Perl_vmstrnenv
92#define my_trnlnm Perl_my_trnlnm
93#define my_getenv Perl_my_getenv
a6c40364 94#define my_getenv_len Perl_my_getenv_len
562a7b0c 95#define prime_env_iter Perl_prime_env_iter
96#define vmssetenv Perl_vmssetenv
97#define my_setenv Perl_my_setenv
98#define my_crypt Perl_my_crypt
99#define my_waitpid Perl_my_waitpid
100#define my_gconvert Perl_my_gconvert
101#define do_rmdir Perl_do_rmdir
102#define kill_file Perl_kill_file
103#define my_mkdir Perl_my_mkdir
104#define my_utime Perl_my_utime
105#define rmsexpand Perl_rmsexpand
106#define rmsexpand_ts Perl_rmsexpand_ts
107#define fileify_dirspec Perl_fileify_dirspec
108#define fileify_dirspec_ts Perl_fileify_dirspec_ts
109#define pathify_dirspec Perl_pathify_dirspec
110#define pathify_dirspec_ts Perl_pathify_dirspec_ts
111#define tounixspec Perl_tounixspec
112#define tounixspec_ts Perl_tounixspec_ts
113#define tovmsspec Perl_tovmsspec
114#define tovmsspec_ts Perl_tovmsspec_ts
115#define tounixpath Perl_tounixpath
116#define tounixpath_ts Perl_tounixpath_ts
117#define tovmspath Perl_tovmspath
118#define tovmspath_ts Perl_tovmspath_ts
119#define vms_image_init Perl_vms_image_init
120#define opendir Perl_opendir
121#define readdir Perl_readdir
122#define telldir Perl_telldir
123#define seekdir Perl_seekdir
124#define closedir Perl_closedir
125#define vmsreaddirversions Perl_vmsreaddirversions
126#define my_gmtime Perl_my_gmtime
127#define my_localtime Perl_my_localtime
128#define my_time Perl_my_time
129#define my_sigemptyset Perl_my_sigemptyset
130#define my_sigfillset Perl_my_sigfillset
131#define my_sigaddset Perl_my_sigaddset
132#define my_sigdelset Perl_my_sigdelset
133#define my_sigismember Perl_my_sigismember
134#define my_sigprocmask Perl_my_sigprocmask
135#define cando_by_name Perl_cando_by_name
136#define flex_fstat Perl_flex_fstat
137#define flex_stat Perl_flex_stat
138#define trim_unixpath Perl_trim_unixpath
139#define my_vfork Perl_my_vfork
140#define vms_do_aexec Perl_vms_do_aexec
141#define vms_do_exec Perl_vms_do_exec
142#define do_aspawn Perl_do_aspawn
143#define do_spawn Perl_do_spawn
144#define my_fwrite Perl_my_fwrite
145#define my_flush Perl_my_flush
146#define my_getpwnam Perl_my_getpwnam
147#define my_getpwuid Perl_my_getpwuid
148#define my_getpwent Perl_my_getpwent
149#define my_endpwent Perl_my_endpwent
150#define my_getlogin Perl_my_getlogin
151#define rmscopy Perl_rmscopy
152#define init_os_extras Perl_init_os_extras
bf109933 153
154/* Delete if at all possible, changing protections if necessary. */
748a9306 155#define unlink kill_file
156
0414b1a0 157/*
158 * Intercept calls to fork, so we know whether subsequent calls to
159 * exec should be handled in VMSish or Unixish style.
160 */
161#define fork my_vfork
aa689395 162#ifndef DONT_MASK_RTL_CALLS /* #defined in vms.c so we see real vfork */
0414b1a0 163# ifdef vfork
164# undef vfork
165# endif
166# define vfork my_vfork
167#endif
168
169/* BIG_TIME:
170 * This symbol is defined if Time_t is an unsigned type on this system.
171 */
172#define BIG_TIME
173
0414b1a0 174/* ACME_MESS:
175 * This symbol, if defined, indicates that error messages should be
176 * should be generated in a format that allows the use of the Acme
177 * GUI/editor's autofind feature.
178 */
179#undef ACME_MESS /**/
e518068a 180
44a8e56a 181/* ALTERNATE_SHEBANG:
182 * This symbol, if defined, contains a "magic" string which may be used
183 * as the first line of a Perl program designed to be executed directly
184 * by name, instead of the standard Unix #!. If ALTERNATE_SHEBANG
185 * begins with a character other then #, then Perl will only treat
186 * it as a command line if if finds the string "perl" in the first
187 * word; otherwise it's treated as the first line of code in the script.
188 * (IOW, Perl won't hand off to another interpreter via an alternate
189 * shebang sequence that might be legal Perl code.)
190 */
191#define ALTERNATE_SHEBANG "$"
192
748a9306 193/* Macros to set errno using the VAX thread-safe calls, if present */
194#if (defined(__DECC) || defined(__DECCXX)) && !defined(__ALPHA)
195# define set_errno(v) (cma$tis_errno_set_value(v))
774d564b 196 void cma$tis_errno_set_value(int __value); /* missing in some errno.h */
748a9306 197# define set_vaxc_errno(v) (vaxc$errno = (v))
198#else
199# define set_errno(v) (errno = (v))
200# define set_vaxc_errno(v) (vaxc$errno = (v))
201#endif
202
ff0cee69 203/* Support for 'vmsish' behaviors enabled with C<use vmsish> pragma */
204
205#define COMPLEX_STATUS 1 /* We track both "POSIX" and VMS values */
206
aa689395 207#define HINT_V_VMSISH 24
a0ed51b3 208#define HINT_M_VMSISH_STATUS 0x20000000 /* system, $? return VMS status */
209#define HINT_M_VMSISH_EXIT 0x40000000 /* exit(1) ==> SS$_NORMAL */
210#define HINT_M_VMSISH_TIME 0x80000000 /* times are local, not UTC */
6b88bc9c 211#define NATIVE_HINTS (PL_hints >> HINT_V_VMSISH) /* used in op.c */
ff0cee69 212
6b88bc9c 213#define TEST_VMSISH(h) (PL_curcop->op_private & ((h) >> HINT_V_VMSISH))
ff0cee69 214#define VMSISH_STATUS TEST_VMSISH(HINT_M_VMSISH_STATUS)
215#define VMSISH_EXIT TEST_VMSISH(HINT_M_VMSISH_EXIT)
216#define VMSISH_TIME TEST_VMSISH(HINT_M_VMSISH_TIME)
217
562a7b0c 218/* Flags for vmstrnenv() */
219#define PERL__TRNENV_SECURE 0x01
220
748a9306 221/* Handy way to vet calls to VMS system services and RTL routines. */
bf109933 222#define _ckvmssts(call) STMT_START { register unsigned long int __ckvms_sts; \
748a9306 223 if (!((__ckvms_sts=(call))&1)) { \
224 set_errno(EVMSERR); set_vaxc_errno(__ckvms_sts); \
e518068a 225 croak("Fatal VMS error (status=%d) at %s, line %d", \
bf109933 226 __ckvms_sts,__FILE__,__LINE__); } } STMT_END
a0d0e21e 227
0414b1a0 228/* Same thing, but don't call back to Perl's croak(); useful for errors
229 * occurring during startup, before Perl's state is initialized */
230#define _ckvmssts_noperl(call) STMT_START { register unsigned long int __ckvms_sts; \
231 if (!((__ckvms_sts=(call))&1)) { \
232 set_errno(EVMSERR); set_vaxc_errno(__ckvms_sts); \
233 fprintf(Perl_debug_log,"Fatal VMS error (status=%d) at %s, line %d", \
234 __ckvms_sts,__FILE__,__LINE__); lib$signal(__ckvms_sts); } } STMT_END
235
a0d0e21e 236#ifdef VMS_DO_SOCKETS
237#include "sockadapt.h"
238#endif
239
c07a80fd 240#define BIT_BUCKET "_NLA0:"
fc1ce8cc 241#define PERL_SYS_INIT(c,v) vms_image_init((c),(v)); MALLOC_INIT
18f739ee 242#define PERL_SYS_TERM() MALLOC_TERM
8cc95fdb 243#define dXSUB_SYS
a0d0e21e 244#define HAS_KILL
245#define HAS_WAIT
246
e518068a 247/* VMS:
248 * This symbol, if defined, indicates that the program is running under
249 * VMS. It's a symbol automagically defined by all VMS C compilers I've seen.
250 * Just in case, however . . . */
251#ifndef VMS
252#define VMS /**/
253#endif
254
255/* HAS_IOCTL:
256 * This symbol, if defined, indicates that the ioctl() routine is
257 * available to set I/O characteristics
a0d0e21e 258 */
e518068a 259#undef HAS_IOCTL /**/
260
261/* HAS_UTIME:
262 * This symbol, if defined, indicates that the routine utime() is
263 * available to update the access and modification times of files.
264 */
265#define HAS_UTIME /**/
a0d0e21e 266
e518068a 267/* HAS_GROUP
28e8609d 268 * This symbol, if defined, indicates that the getgrnam() and
269 * getgrgid() routines are available to get group entries.
270 * The getgrent() has a separate definition, HAS_GETGRENT.
e518068a 271 */
272#undef HAS_GROUP /**/
273
274/* HAS_PASSWD
28e8609d 275 * This symbol, if defined, indicates that the getpwnam() and
276 * getpwuid() routines are available to get password entries.
277 * The getpwent() has a separate definition, HAS_GETPWENT.
e518068a 278 */
279#define HAS_PASSWD /**/
280
281#define HAS_KILL
282#define HAS_WAIT
283
0414b1a0 284/* USEMYBINMODE
285 * This symbol, if defined, indicates that the program should
286 * use the routine my_binmode(FILE *fp, char iotype) to insure
287 * that a file is in "binary" mode -- that is, that no translation
288 * of bytes occurs on read or write operations.
289 */
562a7b0c 290#undef USEMYBINMODE
0414b1a0 291
61bb5906 292/* Stat_t:
293 * This symbol holds the type used to declare buffers for information
294 * returned by stat(). It's usually just struct stat. It may be necessary
295 * to include <sys/stat.h> and <sys/types.h> to get any typedef'ed
296 * information.
297 */
298/* VMS:
299 * We need this typedef to point to the new type even if DONT_MASK_RTL_CALLS
300 * is in effect, since Perl's thread.h embeds one of these structs in its
301 * thread data struct, and our struct mystat is a different size from the
302 * regular struct stat (cf. note above about having to pad struct to work
303 * around bug in compiler.)
304 * It's OK to pass one of these to the RTL's stat(), though, since the
305 * fields it fills are the same in each struct.
306 */
307#define Stat_t struct mystat
308
309/* USE_STAT_RDEV:
310* This symbol is defined if this system has a stat structure declaring
311* st_rdev
312* VMS: Field exists in POSIXish version of struct stat(), but is not used.
313*/
314#undef USE_STAT_RDEV /**/
315
a0d0e21e 316/*
317 * fwrite1() should be a routine with the same calling sequence as fwrite(),
318 * but which outputs all of the bytes requested as a single stream (unlike
319 * fwrite() itself, which on some systems outputs several distinct records
320 * if the number_of_items parameter is >1).
321 */
322#define fwrite1 my_fwrite
323
d27fe803 324/* By default, flush data all the way to disk, not just to RMS buffers */
325#define Fflush(fp) my_flush(fp)
326
a0d0e21e 327/* Use our own rmdir() */
328#define rmdir(name) do_rmdir(name)
329
330/* Assorted fiddling with sigs . . . */
331# include <signal.h>
332#define ABORT() abort()
5f05dabc 333 /* VAXC's signal.h doesn't #define SIG_ERR, but provides BADSIG instead. */
334#if !defined(SIG_ERR) && defined(BADSIG)
335# define SIG_ERR BADSIG
336#endif
337
a0d0e21e 338
748a9306 339/* Used with our my_utime() routine in vms.c */
340struct utimbuf {
341 time_t actime;
342 time_t modtime;
343};
344#define utime my_utime
345
0414b1a0 346/* This is what times() returns, but <times.h> calls it tbuffer_t on VMS
347 * prior to v7.0. We check the DECC manifest to see whether it's already
348 * done this for us, relying on the fact that perl.h #includes <time.h>
349 * before it #includes "vmsish.h".
350 */
a0d0e21e 351
0414b1a0 352#ifndef __TMS
353 struct tms {
354 clock_t tms_utime; /* user time */
355 clock_t tms_stime; /* system time - always 0 on VMS */
356 clock_t tms_cutime; /* user time, children */
357 clock_t tms_cstime; /* system time, children - always 0 on VMS */
358 };
5f05dabc 359#else
360 /* The new headers change the times() prototype to tms from tbuffer */
361# define tbuffer_t struct tms
0414b1a0 362#endif
a0d0e21e 363
61bb5906 364/* Substitute our own routines for gmtime(), localtime(), and time(),
365 * which allow us to implement the vmsish 'time' pragma, and work
366 * around absence of system-level UTC support on old versions of VMS.
e518068a 367 */
368#define gmtime(t) my_gmtime(t)
ff0cee69 369#define localtime(t) my_localtime(t)
370#define time(t) my_time(t)
61bb5906 371
372/* If we're using an older version of VMS whose Unix signal emulation
373 * isn't very POSIXish, then roll our own.
374 */
375#if __VMS_VER < 70000000 || __DECC_VER < 50200000
376# define HOMEGROWN_POSIX_SIGNALS
377#endif
378#ifdef HOMEGROWN_POSIX_SIGNALS
379# define sigemptyset(t) my_sigemptyset(t)
380# define sigfillset(t) my_sigfillset(t)
381# define sigaddset(t, u) my_sigaddset(t, u)
382# define sigdelset(t, u) my_sigdelset(t, u)
383# define sigismember(t, u) my_sigismember(t, u)
384# define sigprocmask(t, u, v) my_sigprocmask(t, u, v)
09b7f37c 385# ifndef _SIGSET_T
61bb5906 386 typedef int sigset_t;
09b7f37c 387# endif
61bb5906 388 /* The tools for sigprocmask() are there, just not the routine itself */
389# ifndef SIG_UNBLOCK
390# define SIG_UNBLOCK 1
391# endif
392# ifndef SIG_BLOCK
393# define SIG_BLOCK 2
394# endif
395# ifndef SIG_SETMASK
396# define SIG_SETMASK 3
397# endif
398# define sigaction sigvec
399# define sa_flags sv_onstack
400# define sa_handler sv_handler
401# define sa_mask sv_mask
402# define sigsuspend(set) sigpause(*set)
403# define sigpending(a) (not_here("sigpending"),0)
7b62b82b 404#endif
e518068a 405
a0d0e21e 406/* VMS doesn't use a real sys_nerr, but we need this when scanning for error
407 * messages in text strings . . .
408 */
409
410#define sys_nerr EVMSERR /* EVMSERR is as high as we can go. */
411
412/* Look up new %ENV values on the fly */
413#define DYNAMIC_ENV_FETCH 1
414#define ENV_HV_NAME "%EnV%VmS%"
aa689395 415 /* Special getenv function for retrieving %ENV elements. */
562a7b0c 416#define ENVgetenv(v) my_getenv(v,FALSE)
a6c40364 417#define ENVgetenv_len(v,l) my_getenv_len(v,l,FALSE)
aa689395 418
a0d0e21e 419
c07a80fd 420/* Thin jacket around cuserid() tomatch Unix' calling sequence */
421#define getlogin my_getlogin
422
423/* Ditto for sys$hash_passwrod() . . . */
424#define crypt my_crypt
425
8cc95fdb 426/* Tweak arg to mkdir first, so we can tolerate trailing /. */
427#define Mkdir(dir,mode) my_mkdir((dir),(mode))
428
a0d0e21e 429/* Use our own stat() clones, which handle Unix-style directory names */
430#define Stat(name,bufptr) flex_stat(name,bufptr)
431#define Fstat(fd,bufptr) flex_fstat(fd,bufptr)
432
433/* Setup for the dirent routines:
434 * opendir(), closedir(), readdir(), seekdir(), telldir(), and
435 * vmsreaddirversions(), and preprocessor stuff on which these depend:
436 * Written by Rich $alz, <rsalz@bbn.com> in August, 1990.
a0d0e21e 437 */
438 /* Data structure returned by READDIR(). */
439struct dirent {
440 char d_name[256]; /* File name */
441 int d_namlen; /* Length of d_name */
442 int vms_verscount; /* Number of versions */
443 int vms_versions[20]; /* Version numbers */
444};
445
446 /* Handle returned by opendir(), used by the other routines. You
447 * are not supposed to care what's inside this structure. */
448typedef struct _dirdesc {
449 long context;
450 int vms_wantversions;
451 unsigned long int count;
452 char *pattern;
453 struct dirent entry;
454 struct dsc$descriptor_s pat;
455} DIR;
456
457#define rewinddir(dirp) seekdir((dirp), 0)
458
748a9306 459/* used for our emulation of getpw* */
460struct passwd {
461 char *pw_name; /* Username */
462 char *pw_passwd;
463 Uid_t pw_uid; /* UIC member number */
464 Gid_t pw_gid; /* UIC group number */
465 char *pw_comment; /* Default device/directory (Unix-style) */
466 char *pw_gecos; /* Owner */
467 char *pw_dir; /* Default device/directory (VMS-style) */
468 char *pw_shell; /* Default CLI name (eg. DCL) */
469};
470#define pw_unixdir pw_comment /* Default device/directory (Unix-style) */
471#define getpwnam my_getpwnam
472#define getpwuid my_getpwuid
473#define getpwent my_getpwent
474#define endpwent my_endpwent
475#define setpwent my_endpwent
476
477/* Our own stat_t substitute, since we play with st_dev and st_ino -
478 * we want atomic types so Unix-bound code which compares these fields
c07a80fd 479 * for two files will work most of the time under VMS.
480 * N.B. 1. The st_ino hack assumes that sizeof(unsigned short[3]) ==
481 * sizeof(unsigned) + sizeof(unsigned short). We can't use a union type
482 * to map the unsigned int we want and the unsigned short[3] the CRTL
483 * returns into the same member, since gcc has different ideas than DECC
484 * and VAXC about sizing union types.
485 * N.B 2. The routine cando() in vms.c assumes that &stat.st_ino is the
486 * address of a FID.
748a9306 487 */
488/* First, grab the system types, so we don't clobber them later */
489#include <stat.h>
490/* Since we've got to match the size of the CRTL's stat_t, we need
491 * to mimic DECC's alignment settings.
492 */
493#if defined(__DECC) || defined(__DECCXX)
494# pragma __member_alignment __save
495# pragma __nomember_alignment
496#endif
497#if defined(__DECC)
498# pragma __message __save
499# pragma __message disable (__MISALGNDSTRCT)
500# pragma __message disable (__MISALGNDMEM)
501#endif
502struct mystat
503{
504 char *st_devnam; /* pointer to device name */
c07a80fd 505 unsigned st_ino; /* hack - CRTL uses unsigned short[3] for */
506 unsigned short rvn; /* FID (num,seq,rvn) */
748a9306 507 unsigned short st_mode; /* file "mode" i.e. prot, dir, reg, etc. */
508 int st_nlink; /* for compatibility - not really used */
509 unsigned st_uid; /* from ACP - QIO uic field */
510 unsigned short st_gid; /* group number extracted from st_uid */
511 dev_t st_rdev; /* for compatibility - always zero */
512 off_t st_size; /* file size in bytes */
513 unsigned st_atime; /* file access time; always same as st_mtime */
514 unsigned st_mtime; /* last modification time */
515 unsigned st_ctime; /* file creation time */
516 char st_fab_rfm; /* record format */
517 char st_fab_rat; /* record attributes */
518 char st_fab_fsz; /* fixed header size */
519 unsigned st_dev; /* encoded device name */
61bb5906 520 /* Pad struct out to integral number of longwords, since DECC 5.6/VAX
521 * has a bug in dealing with offsets in structs in which are embedded
522 * other structs whose size is an odd number of bytes. (An even
523 * number of bytes is enough to make it happy, but we go for natural
524 * alignment anyhow.)
525 */
526 char st_fill1[sizeof(void *) - (3*sizeof(unsigned short) + 3*sizeof(char))%sizeof(void *)];
748a9306 527};
748a9306 528typedef unsigned mydev_t;
c07a80fd 529typedef unsigned myino_t;
aa689395 530#ifndef DONT_MASK_RTL_CALLS /* defined for vms.c so we can see RTL calls */
531# ifdef stat
532# undef stat
533# endif
534# define stat mystat
535# define dev_t mydev_t
536# define ino_t myino_t
537#endif
748a9306 538#if defined(__DECC) || defined(__DECCXX)
539# pragma __member_alignment __restore
540#endif
541#if defined(__DECC)
542# pragma __message __restore
543#endif
544/* Cons up a 'delete' bit for testing access */
545#define S_IDUSR (S_IWUSR | S_IXUSR)
546#define S_IDGRP (S_IWGRP | S_IXGRP)
547#define S_IDOTH (S_IWOTH | S_IXOTH)
a0d0e21e 548
549/* Prototypes for functions unique to vms.c. Don't include replacements
550 * for routines in the mainline source files excluded by #ifndef VMS;
551 * their prototypes are already in proto.h.
552 *
553 * In order to keep Gen_ShrFls.Pl happy, functions which are to be made
554 * available to images linked to PerlShr.Exe must be declared between the
555 * __VMS_PROTOTYPES__ and __VMS_SEPYTOTORP__ lines, and must be in the form
20ce7b12 556 * <data type><TAB>name<WHITESPACE>(<prototype args>);
a0d0e21e 557 */
94c456c4 558
44a8e56a 559#ifdef NO_PERL_TYPEDEFS
560 /* We don't have Perl typedefs available (e.g. when building a2p), so
561 we fake them here. N.B. There is *no* guarantee that the faked
562 prototypes will actually match the real routines. If you want to
563 call Perl routines, include perl.h to get the real typedefs. */
564# ifndef bool
565# define bool int
566# define __MY_BOOL_TYPE_FAKE
567# endif
568# ifndef I32
569# define I32 int
570# define __MY_I32_TYPE_FAKE
571# endif
572# ifndef SV
573# define SV void /* Since we only see SV * in prototypes */
574# define __MY_SV_TYPE_FAKE
575# endif
576#endif
577
20ce7b12 578void prime_env_iter (void);
579void init_os_extras ();
c07a80fd 580/* prototype section start marker; `typedef' passes through cpp */
581typedef char __VMS_PROTOTYPES__;
20ce7b12 582int vmstrnenv (const char *, char *, unsigned long int, struct dsc$descriptor_s **, unsigned long int);
583int my_trnlnm (const char *, char *, unsigned long int);
584char * my_getenv (const char *, bool);
585char * my_getenv_len (const char *, unsigned long *, bool);
586int vmssetenv (char *, char *, struct dsc$descriptor_s **);
587char * my_crypt (const char *, const char *);
588Pid_t my_waitpid (Pid_t, int *, int);
589char * my_gconvert (double, int, int, char *);
590int do_rmdir (char *);
591int kill_file (char *);
592int my_mkdir (char *, Mode_t);
593int my_utime (char *, struct utimbuf *);
594char * rmsexpand (char *, char *, char *, unsigned);
595char * rmsexpand_ts (char *, char *, char *, unsigned);
596char * fileify_dirspec (char *, char *);
597char * fileify_dirspec_ts (char *, char *);
598char * pathify_dirspec (char *, char *);
599char * pathify_dirspec_ts (char *, char *);
600char * tounixspec (char *, char *);
601char * tounixspec_ts (char *, char *);
602char * tovmsspec (char *, char *);
603char * tovmsspec_ts (char *, char *);
604char * tounixpath (char *, char *);
605char * tounixpath_ts (char *, char *);
606char * tovmspath (char *, char *);
607char * tovmspath_ts (char *, char *);
608void vms_image_init (int *, char ***);
609DIR * opendir (char *);
610struct dirent * readdir (DIR *);
611long telldir (DIR *);
612void seekdir (DIR *, long);
613void closedir (DIR *);
614void vmsreaddirversions (DIR *, int);
615struct tm * my_gmtime (const time_t *);
616struct tm * my_localtime (const time_t *);
617time_t my_time (time_t *);
61bb5906 618#ifdef HOMEGROWN_POSIX_SIGNALS
20ce7b12 619int my_sigemptyset (sigset_t *);
620int my_sigfillset (sigset_t *);
621int my_sigaddset (sigset_t *, int);
622int my_sigdelset (sigset_t *, int);
623int my_sigismember (sigset_t *, int);
624int my_sigprocmask (int, sigset_t *, sigset_t *);
5b411029 625#endif
20ce7b12 626I32 cando_by_name (I32, I32, char *);
627int flex_fstat (int, Stat_t *);
cc077a9f 628int flex_stat (const char *, Stat_t *);
20ce7b12 629int trim_unixpath (char *, char*, int);
630int my_vfork ();
631bool vms_do_aexec (SV *, SV **, SV **);
632bool vms_do_exec (char *);
633unsigned long int do_aspawn (void *, void **, void **);
634unsigned long int do_spawn (char *);
635int my_fwrite (void *, size_t, size_t, FILE *);
636int my_flush (FILE *);
637struct passwd * my_getpwnam (char *name);
638struct passwd * my_getpwuid (Uid_t uid);
639struct passwd * my_getpwent ();
640void my_endpwent ();
641char * my_getlogin ();
642int rmscopy (char *, char *, int);
c07a80fd 643typedef char __VMS_SEPYTOTORP__;
644/* prototype section end marker; `typedef' passes through cpp */
a0d0e21e 645
44a8e56a 646#ifdef NO_PERL_TYPEDEFS /* We'll try not to scramble later files */
647# ifdef __MY_BOOL_TYPE_FAKE
648# undef bool
649# undef __MY_BOOL_TYPE_FAKE
650# endif
651# ifdef __MY_I32_TYPE_FAKE
652# undef I32
653# undef __MY_I32_TYPE_FAKE
654# endif
655# ifdef __MY_SV_TYPE_FAKE
656# undef SV
657# undef __MY_SV_TYPE_FAKE
658# endif
659#endif
660
a0d0e21e 661#ifndef VMS_DO_SOCKETS
748a9306 662/* This relies on tricks in perl.h to pick up that these manifest constants
663 * are undefined and set up conversion routines. It will then redefine
664 * these manifest constants, so the actual values will match config.h
665 */
666#undef HAS_HTONS
667#undef HAS_NTOHS
668#undef HAS_HTONL
669#undef HAS_NTOHL
a0d0e21e 670#endif
671
482b294c 672#define TMPPATH "sys$scratch:perl-eXXXXXX"
673
a0d0e21e 674#endif /* __vmsish_h_included */