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