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