3 * VMS-specific C header file for perl5.
5 * revised: 16-Sep-1998 by Charles Bailey bailey@newman.upenn.edu
8 * Last revised: 10-Oct-2005 by John Malmberg (HP OpenVMS) wb8twy@qsl.net
9 * Add SYMLINK support, and updated Craig Berry's
13 #ifndef __vmsish_h_included
14 #define __vmsish_h_included
16 #include <descrip.h> /* for dirent struct definitions */
17 #include <libdef.h> /* status codes for various places */
18 #include <rmsdef.h> /* at which errno and vaxc$errno are */
19 #include <ssdef.h> /* explicitly set in the perl source code */
20 #include <stsdef.h> /* bitmasks for exit status testing */
22 /* Suppress compiler warnings from DECC for VMS-specific extensions:
23 * ADDRCONSTEXT,NEEDCONSTEXT: initialization of data with non-constant values
24 * (e.g. pointer fields of descriptors)
26 #if defined(__DECC) || defined(__DECCXX)
27 # pragma message disable (ADDRCONSTEXT,NEEDCONSTEXT)
30 /* DEC's C compilers and gcc use incompatible definitions of _to(upp|low)er() */
34 #define _toupper(c) (((c) < 'a' || (c) > 'z') ? (c) : (c) & ~040)
38 #define _tolower(c) (((c) < 'A' || (c) > 'Z') ? (c) : (c) | 040)
39 /* DECC 1.3 has a funny definition of abs; it's fixed in DECC 4.0, so this
40 * can go away once DECC 1.3 isn't in use any more. */
41 #if defined(__ALPHA) && (defined(__DECC) || defined(__DECCXX))
43 #define abs(__x) __ABS(__x)
45 #define labs(__x) __LABS(__x)
46 #endif /* __ALPHA && __DECC */
48 /* Assorted things to look like Unix */
50 #ifndef _IOLBF /* gcc's stdio.h doesn't define this */
54 #include <processes.h> /* for vfork() */
57 #include <file.h> /* it's not <sys/file.h>, so don't use I_SYS_FILE */
58 #if (defined(__DECC) && defined(__DECC_VER) && __DECC_VER > 20000000) || defined(__DECCXX)
59 # include <unistd.h> /* DECC has this; gcc doesn't */
62 #ifdef NO_PERL_TYPEDEFS /* a2p; we don't want Perl's special routines */
63 # define DONT_MASK_RTL_CALLS
68 /* Set the maximum filespec size here as it is larger for EFS file
74 #define VMS_MAXRSS (NAML$C_MAXRSS+1)
75 #ifndef VMS_LONGNAME_SUPPORT
76 #define VMS_LONGNAME_SUPPORT 1
77 #endif /* VMS_LONGNAME_SUPPORT */
78 #endif /* NAML$C_MAXRSS */
79 #endif /* VMS_MAXRSS */
83 #define VMS_MAXRSS (NAM$C_MAXRSS + 1)
87 #define MAXPATHLEN (VMS_MAXRSS - 1)
91 /* Note that we do, in fact, have this */
93 #define HAS_GETENV_LEN
95 /* All this stiff is for the x2P programs. Hopefully they'll still work */
96 #if defined(PERL_FOR_X2P)
108 #ifndef DONT_MASK_RTL_CALLS
112 /* getenv used for regular logical names */
113 # define getenv(v) Perl_my_getenv(aTHX_ v,TRUE)
118 #define getenv_len(v,l) Perl_my_getenv_len(aTHX_ v,l,TRUE)
120 /* DECC introduces this routine in the RTL as of VMS 7.0; for now,
121 * we'll use ours, since it gives us the full VMS exit status. */
122 #define waitpid my_waitpid
124 /* Don't redeclare standard RTL routines in Perl's header files;
125 * VMS history or extensions makes some of the formal protoypes
126 * differ from the common Unix forms.
128 #define DONT_DECLARE_STD 1
130 /* Our own contribution to PerlShr's global symbols . . . */
131 #define prime_env_iter Perl_prime_env_iter
132 #define vms_image_init Perl_vms_image_init
133 #define my_tmpfile Perl_my_tmpfile
134 #define vmstrnenv Perl_vmstrnenv
135 #if !defined(PERL_IMPLICIT_CONTEXT)
136 #define my_getenv_len Perl_my_getenv_len
137 #define vmssetenv Perl_vmssetenv
138 #define my_trnlnm Perl_my_trnlnm
139 #define my_setenv Perl_my_setenv
140 #define my_getenv Perl_my_getenv
141 #define tounixspec Perl_tounixspec
142 #define tounixspec_ts Perl_tounixspec_ts
143 #define tounixspec_utf8 Perl_tounixspec_utf8
144 #define tounixspec_utf8_ts Perl_tounixspec_utf8_ts
145 #define tovmsspec Perl_tovmsspec
146 #define tovmsspec_ts Perl_tovmsspec_ts
147 #define tovmsspec_utf8 Perl_tovmsspec_utf8
148 #define tovmsspec_utf8_ts Perl_tovmsspec_utf8_ts
149 #define tounixpath Perl_tounixpath
150 #define tounixpath_ts Perl_tounixpath_ts
151 #define tounixpath_utf8 Perl_tounixpath_utf8
152 #define tounixpath_utf8_ts Perl_tounixpath_utf8_ts
153 #define tovmspath Perl_tovmspath
154 #define tovmspath_ts Perl_tovmspath_ts
155 #define tovmspath_utf8 Perl_tovmspath_utf8
156 #define tovmspath_utf8_ts Perl_tovmspath_utf8_ts
157 #define do_rmdir Perl_do_rmdir
158 #define fileify_dirspec Perl_fileify_dirspec
159 #define fileify_dirspec_ts Perl_fileify_dirspec_ts
160 #define fileify_dirspec_utf8 Perl_fileify_dirspec_utf8
161 #define fileify_dirspec_utf8_ts Perl_fileify_dirspec_utf8_ts
162 #define pathify_dirspec Perl_pathify_dirspec
163 #define pathify_dirspec_ts Perl_pathify_dirspec_ts
164 #define pathify_dirspec_utf8 Perl_pathify_dirspec_utf8
165 #define pathify_dirspec_utf8_ts Perl_pathify_dirspec_utf8_ts
166 #define trim_unixpath Perl_trim_unixpath
167 #define opendir Perl_opendir
168 #define rmscopy Perl_rmscopy
169 #define my_mkdir Perl_my_mkdir
170 #define vms_do_aexec Perl_vms_do_aexec
171 #define vms_do_exec Perl_vms_do_exec
172 #define my_waitpid Perl_my_waitpid
173 #define my_crypt Perl_my_crypt
174 #define kill_file Perl_kill_file
175 #define my_utime Perl_my_utime
176 #define my_chdir Perl_my_chdir
177 #define do_aspawn Perl_do_aspawn
178 #define seekdir Perl_seekdir
179 #define my_gmtime Perl_my_gmtime
180 #define my_localtime Perl_my_localtime
181 #define my_time Perl_my_time
182 #define do_spawn Perl_do_spawn
183 #define flex_fstat Perl_flex_fstat
184 #define flex_stat Perl_flex_stat
185 #define flex_lstat Perl_flex_lstat
186 #define cando_by_name Perl_cando_by_name
187 #define my_getpwnam Perl_my_getpwnam
188 #define my_getpwuid Perl_my_getpwuid
189 #define my_flush Perl_my_flush
190 #define readdir Perl_readdir
191 #define readdir_r Perl_readdir_r
193 #define my_getenv_len(a,b,c) Perl_my_getenv_len(aTHX_ a,b,c)
194 #define vmssetenv(a,b,c) Perl_vmssetenv(aTHX_ a,b,c)
195 #define my_trnlnm(a,b,c) Perl_my_trnlnm(aTHX_ a,b,c)
196 #define fileify_dirspec(a,b) Perl_fileify_dirspec(aTHX_ a,b)
197 #define fileify_dirspec_ts(a,b) Perl_fileify_dirspec_ts(aTHX_ a,b)
198 #define my_setenv(a,b) Perl_my_setenv(aTHX_ a,b)
199 #define my_getenv(a,b) Perl_my_getenv(aTHX_ a,b)
200 #define tounixspec(a,b) Perl_tounixspec_utf8(aTHX_ a,b,NULL)
201 #define tounixspec_ts(a,b) Perl_tounixspec_utf8_ts(aTHX_ a,b,NULL)
202 #define tounixspec_utf8(a,b,c) Perl_tounixspec_utf8(aTHX_ a,b,c)
203 #define tounixspec_utf8_ts(a,b,c) Perl_tounixspec_utf8_ts(aTHX_ a,b,c)
204 #define tovmsspec(a,b) Perl_tovmsspec_utf8(aTHX_ a,b,NULL)
205 #define tovmsspec_ts(a,b) Perl_tovmsspec_utf8_ts(aTHX_ a,b)
206 #define tovmsspec_utf8(a,b,c) Perl_tovmsspec_utf8(aTHX_ a,b,c)
207 #define tovmsspec_utf8_ts(a,b,c) Perl_tovmsspec_utf8_ts(aTHX_ a,b,c)
208 #define tounixpath(a,b) Perl_tounixpath_utf8(aTHX_ a,b,NULL)
209 #define tounixpath_ts(a,b) Perl_tounixpath_utf8_ts(aTHX_ a,b,NULL)
210 #define tounixpath_utf8(a,b,c) Perl_tounixpath_utf8(aTHX_ a,b,c)
211 #define tounixpath_utf8_ts(a,b,c) Perl_tounixpath_utf8_ts(aTHX_ a,b,c)
212 #define tovmspath(a,b) Perl_tovmspath_utf8(aTHX_ a,b,NULL)
213 #define tovmspath_ts(a,b) Perl_tovmspath_utf8_ts(aTHX_ a,b,NULL)
214 #define tovmspath_utf8(a,b,c) Perl_tovmspath_utf8(aTHX_ a,b,c)
215 #define tovmspath_utf8_ts(a,b,c) Perl_tovmspath_utf8_ts(aTHX_ a,b,c)
216 #define do_rmdir(a) Perl_do_rmdir(aTHX_ a)
217 #define fileify_dirspec(a,b) Perl_fileify_dirspec(aTHX_ a,b)
218 #define fileify_dirspec_ts(a,b) Perl_fileify_dirspec_ts(aTHX_ a,b)
219 #define fileify_dirspec_utf8(a,b,c) Perl_fileify_dirspec(aTHX_ a,b,utf8)
220 #define fileify_dirspec_utf8_ts(a,b,c) Perl_fileify_dirspec_ts(aTHX_ a,b,utf8)
221 #define pathify_dirspec Perl_pathify_dirspec
222 #define pathify_dirspec_ts Perl_pathify_dirspec_ts
223 #define pathify_dirspec_utf8 Perl_pathify_dirspec_utf8
224 #define pathify_dirspec_utf8_ts Perl_pathify_dirspec_utf8_ts
225 #define rmsexpand(a,b,c,d) Perl_rmsexpand_utf8(aTHX_ a,b,c,d,NULL,NULL)
226 #define rmsexpand_ts(a,b,c,d) Perl_rmsexpand_utf8_ts(aTHX_ a,b,c,d,NULL,NULL)
227 #define rmsexpand_utf8(a,b,c,d,e,f) Perl_rmsexpand_utf8(aTHX_ a,b,c,d,e,f)
228 #define rmsexpand_utf8_ts(a,b,c,d,e,f) Perl_rmsexpand_utf8_ts(aTHX_ a,b,c,d,e,f)
229 #define trim_unixpath(a,b,c) Perl_trim_unixpath(aTHX_ a,b,c)
230 #define opendir(a) Perl_opendir(aTHX_ a)
231 #define rmscopy(a,b,c) Perl_rmscopy(aTHX_ a,b,c)
232 #define my_mkdir(a,b) Perl_my_mkdir(aTHX_ a,b)
233 #define vms_do_aexec(a,b,c) Perl_vms_do_aexec(aTHX_ a,b,c)
234 #define vms_do_exec(a) Perl_vms_do_exec(aTHX_ a)
235 #define my_waitpid(a,b,c) Perl_my_waitpid(aTHX_ a,b,c)
236 #define my_crypt(a,b) Perl_my_crypt(aTHX_ a,b)
237 #define kill_file(a) Perl_kill_file(aTHX_ a)
238 #define my_utime(a,b) Perl_my_utime(aTHX_ a,b)
239 #define my_chdir(a) Perl_my_chdir(aTHX_ a)
240 #define do_aspawn(a,b,c) Perl_do_aspawn(aTHX_ a,b,c)
241 #define seekdir(a,b) Perl_seekdir(aTHX_ a,b)
242 #define my_gmtime(a) Perl_my_gmtime(aTHX_ a)
243 #define my_localtime(a) Perl_my_localtime(aTHX_ a)
244 #define my_time(a) Perl_my_time(aTHX_ a)
245 #define do_spawn(a) Perl_do_spawn(aTHX_ a)
246 #define flex_fstat(a,b) Perl_flex_fstat(aTHX_ a,b)
247 #define cando_by_name(a,b,c) Perl_cando_by_name(aTHX_ a,b,c)
248 #define flex_stat(a,b) Perl_flex_stat(aTHX_ a,b)
249 #define my_getpwnam(a) Perl_my_getpwnam(aTHX_ a)
250 #define my_getpwuid(a) Perl_my_getpwuid(aTHX_ a)
251 #define my_flush(a) Perl_my_flush(aTHX_ a)
252 #define readdir(a) Perl_readdir(aTHX_ a)
253 #define readdir_r(a,b,c) Perl_readdir_r(aTHX_ a,b,c)
255 #define my_gconvert Perl_my_gconvert
256 #define telldir Perl_telldir
257 #define closedir Perl_closedir
258 #define vmsreaddirversions Perl_vmsreaddirversions
259 #define my_sigemptyset Perl_my_sigemptyset
260 #define my_sigfillset Perl_my_sigfillset
261 #define my_sigaddset Perl_my_sigaddset
262 #define my_sigdelset Perl_my_sigdelset
263 #define my_sigismember Perl_my_sigismember
264 #define my_sigprocmask Perl_my_sigprocmask
265 #define my_vfork Perl_my_vfork
266 #define my_fdopen Perl_my_fdopen
267 #define my_fclose Perl_my_fclose
268 #define my_fwrite Perl_my_fwrite
269 #define my_getpwent() Perl_my_getpwent(aTHX)
270 #define my_endpwent() Perl_my_endpwent(aTHX)
271 #define my_getlogin Perl_my_getlogin
272 #define init_os_extras Perl_init_os_extras
273 #define vms_realpath(a, b, c) Perl_vms_realpath(aTHX_ a,b,c)
274 #define vms_case_tolerant(a) Perl_vms_case_tolerant(a)
276 /* Delete if at all possible, changing protections if necessary. */
277 #define unlink kill_file
280 * Intercept calls to fork, so we know whether subsequent calls to
281 * exec should be handled in VMSish or Unixish style.
283 #define fork my_vfork
284 #ifndef DONT_MASK_RTL_CALLS /* #defined in vms.c so we see real vfork */
288 # define vfork my_vfork
292 * Toss in a shim to tmpfile which creates a plain temp file if the
293 * RMS tmp mechanism won't work (e.g. if someone is relying on ACLs
294 * from a specific directory to permit creation of files).
296 #ifndef DONT_MASK_RTL_CALLS
297 # define tmpfile Perl_my_tmpfile
302 * This symbol is defined if Time_t is an unsigned type on this system.
307 * This symbol, if defined, indicates that error messages should be
308 * should be generated in a format that allows the use of the Acme
309 * GUI/editor's autofind feature.
311 #undef ACME_MESS /**/
313 /* ALTERNATE_SHEBANG:
314 * This symbol, if defined, contains a "magic" string which may be used
315 * as the first line of a Perl program designed to be executed directly
316 * by name, instead of the standard Unix #!. If ALTERNATE_SHEBANG
317 * begins with a character other then #, then Perl will only treat
318 * it as a command line if if finds the string "perl" in the first
319 * word; otherwise it's treated as the first line of code in the script.
320 * (IOW, Perl won't hand off to another interpreter via an alternate
321 * shebang sequence that might be legal Perl code.)
323 #define ALTERNATE_SHEBANG "$"
325 /* Lower case entry points for these are missing in some earlier RTLs
326 * so we borrow the defines and declares from errno.h and upcase them.
328 #if defined(VMS_WE_ARE_CASE_SENSITIVE) && (__DECC_VER < 50500000)
329 # define errno (*CMA$TIS_ERRNO_GET_ADDR())
330 # define vaxc$errno (*CMA$TIS_VMSERRNO_GET_ADDR())
331 int *CMA$TIS_ERRNO_GET_ADDR (void); /* UNIX style error code */
332 int *CMA$TIS_VMSERRNO_GET_ADDR (void); /* VMS error (errno == EVMSERR) */
335 /* Macros to set errno using the VAX thread-safe calls, if present */
336 #if (defined(__DECC) || defined(__DECCXX)) && !defined(__ALPHA)
337 # define set_errno(v) (cma$tis_errno_set_value(v))
338 void cma$tis_errno_set_value(int __value); /* missing in some errno.h */
339 # define set_vaxc_errno(v) (vaxc$errno = (v))
341 # define set_errno(v) (errno = (v))
342 # define set_vaxc_errno(v) (vaxc$errno = (v))
345 /* Support for 'vmsish' behaviors enabled with C<use vmsish> pragma */
347 #define COMPLEX_STATUS 1 /* We track both "POSIX" and VMS values */
349 #define HINT_V_VMSISH 24
350 #define HINT_M_VMSISH_STATUS 0x40000000 /* system, $? return VMS status */
351 #define HINT_M_VMSISH_TIME 0x80000000 /* times are local, not UTC */
352 #define NATIVE_HINTS (PL_hints >> HINT_V_VMSISH) /* used in op.c */
354 #define TEST_VMSISH(h) (PL_curcop->op_private & ((h) >> HINT_V_VMSISH))
355 #define VMSISH_STATUS TEST_VMSISH(HINT_M_VMSISH_STATUS)
356 #define VMSISH_TIME TEST_VMSISH(HINT_M_VMSISH_TIME)
358 /* VMS-specific data storage */
360 #define HAVE_INTERP_INTERN
361 struct interp_intern {
366 #define VMSISH_HUSHED (PL_sys_intern.hushed)
367 #define MY_INV_RAND_MAX (PL_sys_intern.inv_rand_max)
368 #define MY_POSIX_EXIT (PL_sys_intern.posix_exit)
370 /* Flags for vmstrnenv() */
371 #define PERL__TRNENV_SECURE 0x01
372 #define PERL__TRNENV_JOIN_SEARCHLIST 0x02
374 /* Handy way to vet calls to VMS system services and RTL routines. */
375 #define _ckvmssts(call) STMT_START { register unsigned long int __ckvms_sts; \
376 if (!((__ckvms_sts=(call))&1)) { \
377 set_errno(EVMSERR); set_vaxc_errno(__ckvms_sts); \
378 Perl_croak(aTHX_ "Fatal VMS error (status=%d) at %s, line %d", \
379 __ckvms_sts,__FILE__,__LINE__); } } STMT_END
381 /* Same thing, but don't call back to Perl's croak(); useful for errors
382 * occurring during startup, before Perl's state is initialized */
383 #define _ckvmssts_noperl(call) STMT_START { register unsigned long int __ckvms_sts; \
384 if (!((__ckvms_sts=(call))&1)) { \
385 set_errno(EVMSERR); set_vaxc_errno(__ckvms_sts); \
386 fprintf(stderr,"Fatal VMS error (status=%d) at %s, line %d", \
387 __ckvms_sts,__FILE__,__LINE__); lib$signal(__ckvms_sts); } } STMT_END
389 #ifdef VMS_DO_SOCKETS
390 #include "sockadapt.h"
391 #define PERL_SOCK_SYSREAD_IS_RECV
392 #define PERL_SOCK_SYSWRITE_IS_SEND
395 #if __CRTL_VER < 70000000
396 #define BIT_BUCKET "_NLA0:"
398 #define BIT_BUCKET "/dev/null"
400 #define PERL_SYS_INIT(c,v) MALLOC_CHECK_TAINT2(*c,*v) vms_image_init((c),(v)); PERLIO_INIT; MALLOC_INIT
401 #define PERL_SYS_TERM() HINTS_REFCNT_TERM; OP_REFCNT_TERM; PERLIO_TERM; MALLOC_TERM
406 #define PERL_FS_VER_FMT "%d_%d_%d"
407 /* Temporary; we need to add support for this to Configure.Com */
408 #ifdef PERL_INC_VERSION_LIST
409 # undef PERL_INC_VERSION_LIST
413 * This symbol, if defined, indicates that the program is running under
414 * VMS. It's a symbol automagically defined by all VMS C compilers I've seen.
415 * Just in case, however . . . */
416 /* Note that code really should be using __VMS to comply with ANSI */
422 * This symbol, if defined, indicates that the ioctl() routine is
423 * available to set I/O characteristics
425 #if defined(__CRTL_VER) && __CRTL_VER >= 70000000
426 #define HAS_IOCTL /**/
428 #undef HAS_IOCTL /**/
432 * This symbol, if defined, indicates that the routine utime() is
433 * available to update the access and modification times of files.
435 #define HAS_UTIME /**/
438 * This symbol, if defined, indicates that the getgrnam() and
439 * getgrgid() routines are available to get group entries.
440 * The getgrent() has a separate definition, HAS_GETGRENT.
442 #undef HAS_GROUP /**/
445 * This symbol, if defined, indicates that the getpwnam() and
446 * getpwuid() routines are available to get password entries.
447 * The getpwent() has a separate definition, HAS_GETPWENT.
449 #define HAS_PASSWD /**/
455 * This symbol, if defined, indicates that the program should
456 * use the routine my_binmode(FILE *fp, char iotype, int mode) to insure
457 * that a file is in "binary" mode -- that is, that no translation
458 * of bytes occurs on read or write operations.
463 * This symbol holds the type used to declare buffers for information
464 * returned by stat(). It's usually just struct stat. It may be necessary
465 * to include <sys/stat.h> and <sys/types.h> to get any typedef'ed
469 * We need this typedef to point to the new type even if DONT_MASK_RTL_CALLS
470 * is in effect, since Perl's thread.h embeds one of these structs in its
471 * thread data struct, and our struct mystat is a different size from the
472 * regular struct stat (cf. note above about having to pad struct to work
473 * around bug in compiler.)
474 * It's OK to pass one of these to the RTL's stat(), though, since the
475 * fields it fills are the same in each struct.
477 #define Stat_t struct mystat
480 * This symbol is defined if this system has a stat structure declaring
482 * VMS: Field exists in POSIXish version of struct stat(), but is not used.
484 * No definition of what value an operating system or file system should
485 * put in the st_rdev field has been found by me so far. Examination of
486 * LINUX source code indicates that the value is both very platform and
487 * file system specific, with many filesystems just putting 1 or 0 in it.
490 #undef USE_STAT_RDEV /**/
493 * fwrite1() should be a routine with the same calling sequence as fwrite(),
494 * but which outputs all of the bytes requested as a single stream (unlike
495 * fwrite() itself, which on some systems outputs several distinct records
496 * if the number_of_items parameter is >1).
498 #define fwrite1 my_fwrite
501 #ifndef DONT_MASK_RTL_CALLS
502 # define fwrite my_fwrite /* for PerlSIO_fwrite */
503 # define fdopen my_fdopen
504 # define fclose my_fclose
508 /* By default, flush data all the way to disk, not just to RMS buffers */
509 #define Fflush(fp) my_flush(fp)
511 /* Use our own rmdir() */
512 #ifndef DONT_MASK_RTL_CALLS
513 #define rmdir(name) do_rmdir(name)
516 /* Assorted fiddling with sigs . . . */
518 #define ABORT() abort()
523 /* Used with our my_utime() routine in vms.c */
529 #ifndef DONT_MASK_RTL_CALLS
530 #define utime my_utime
533 /* This is what times() returns, but <times.h> calls it tbuffer_t on VMS
534 * prior to v7.0. We check the DECC manifest to see whether it's already
535 * done this for us, relying on the fact that perl.h #includes <time.h>
536 * before it #includes "vmsish.h".
541 clock_t tms_utime; /* user time */
542 clock_t tms_stime; /* system time - always 0 on VMS */
543 clock_t tms_cutime; /* user time, children */
544 clock_t tms_cstime; /* system time, children - always 0 on VMS */
547 /* The new headers change the times() prototype to tms from tbuffer */
548 # define tbuffer_t struct tms
551 /* Substitute our own routines for gmtime(), localtime(), and time(),
552 * which allow us to implement the vmsish 'time' pragma, and work
553 * around absence of system-level UTC support on old versions of VMS.
555 #define gmtime(t) my_gmtime(t)
556 #define localtime(t) my_localtime(t)
557 #define time(t) my_time(t)
559 /* If we're using an older version of VMS whose Unix signal emulation
560 * isn't very POSIXish, then roll our own.
562 #if __VMS_VER < 70000000 || __DECC_VER < 50200000
563 # define HOMEGROWN_POSIX_SIGNALS
565 #ifdef HOMEGROWN_POSIX_SIGNALS
566 # define sigemptyset(t) my_sigemptyset(t)
567 # define sigfillset(t) my_sigfillset(t)
568 # define sigaddset(t, u) my_sigaddset(t, u)
569 # define sigdelset(t, u) my_sigdelset(t, u)
570 # define sigismember(t, u) my_sigismember(t, u)
571 # define sigprocmask(t, u, v) my_sigprocmask(t, u, v)
573 typedef int sigset_t;
575 /* The tools for sigprocmask() are there, just not the routine itself */
577 # define SIG_UNBLOCK 1
583 # define SIG_SETMASK 3
585 # define sigaction sigvec
586 # define sa_flags sv_onstack
587 # define sa_handler sv_handler
588 # define sa_mask sv_mask
589 # define sigsuspend(set) sigpause(*set)
590 # define sigpending(a) (not_here("sigpending"),0)
593 * The C RTL's sigaction fails to check for invalid signal numbers so we
596 # ifndef DONT_MASK_RTL_CALLS
597 # define sigaction(a,b,c) Perl_my_sigaction(aTHX_ a,b,c)
600 #ifdef KILL_BY_SIGPRC
601 # define kill Perl_my_kill
605 /* VMS doesn't use a real sys_nerr, but we need this when scanning for error
606 * messages in text strings . . .
609 #define sys_nerr EVMSERR /* EVMSERR is as high as we can go. */
611 /* Look up new %ENV values on the fly */
612 #define DYNAMIC_ENV_FETCH 1
613 /* Special getenv function for retrieving %ENV elements. */
614 #define ENVgetenv(v) my_getenv(v,FALSE)
615 #define ENVgetenv_len(v,l) my_getenv_len(v,l,FALSE)
618 /* Thin jacket around cuserid() to match Unix' calling sequence */
619 #define getlogin my_getlogin
621 /* Ditto for sys$hash_password() . . . */
622 #define crypt(a,b) Perl_my_crypt(aTHX_ a,b)
624 /* Tweak arg to mkdir & chdir first, so we can tolerate trailing /. */
625 #define Mkdir(dir,mode) Perl_my_mkdir(aTHX_ (dir),(mode))
626 #define Chdir(dir) my_chdir((dir))
628 /* Use our own stat() clones, which handle Unix-style directory names */
629 #define Stat(name,bufptr) flex_stat(name,bufptr)
630 #define Fstat(fd,bufptr) Perl_flex_fstat(aTHX_ fd,bufptr)
631 #ifndef DONT_MASK_RTL_CALLS
632 #define lstat(name, bufptr) Perl_flex_lstat(name, bufptr)
635 /* Setup for the dirent routines:
636 * opendir(), closedir(), readdir(), seekdir(), telldir(), and
637 * vmsreaddirversions(), and preprocessor stuff on which these depend:
638 * Written by Rich $alz, <rsalz@bbn.com> in August, 1990.
642 /* Flags for the _dirdesc structure */
643 #define PERL_VMSDIR_M_VERSIONS 0x02 /* Want VMS versions */
644 #define PERL_VMSDIR_M_UNIXSPECS 0x04 /* Want UNIX specifications */
647 /* Data structure returned by READDIR(). */
649 char d_name[256]; /* File name */
650 int d_namlen; /* Length of d_name */
651 int vms_verscount; /* Number of versions */
652 int vms_versions[20]; /* Version numbers */
655 /* Handle returned by opendir(), used by the other routines. You
656 * are not supposed to care what's inside this structure. */
657 typedef struct _dirdesc {
660 unsigned long int count;
663 struct dsc$descriptor_s pat;
668 #define rewinddir(dirp) seekdir((dirp), 0)
670 /* used for our emulation of getpw* */
672 char *pw_name; /* Username */
674 Uid_t pw_uid; /* UIC member number */
675 Gid_t pw_gid; /* UIC group number */
676 char *pw_comment; /* Default device/directory (Unix-style) */
677 char *pw_gecos; /* Owner */
678 char *pw_dir; /* Default device/directory (VMS-style) */
679 char *pw_shell; /* Default CLI name (eg. DCL) */
681 #define pw_unixdir pw_comment /* Default device/directory (Unix-style) */
682 #define getpwnam my_getpwnam
683 #define getpwuid my_getpwuid
684 #define getpwent my_getpwent
685 #define endpwent my_endpwent
686 #define setpwent my_endpwent
688 /* Our own stat_t substitute, since we play with st_dev and st_ino -
689 * we want atomic types so Unix-bound code which compares these fields
690 * for two files will work most of the time under VMS.
691 * N.B. 1. The st_ino hack assumes that sizeof(unsigned short[3]) ==
692 * sizeof(unsigned) + sizeof(unsigned short). We can't use a union type
693 * to map the unsigned int we want and the unsigned short[3] the CRTL
694 * returns into the same member, since gcc has different ideas than DECC
695 * and VAXC about sizing union types.
696 * N.B. 2. The routine cando() in vms.c assumes that &stat.st_ino is the
699 /* First, grab the system types, so we don't clobber them later */
701 /* Since we've got to match the size of the CRTL's stat_t, we need
702 * to mimic DECC's alignment settings.
704 * The simplest thing is to just put a wrapper around the stat structure
705 * supplied by the CRTL and use #defines to redirect references to the
706 * members to the real names.
709 #if defined(__DECC) || defined(__DECCXX)
710 # pragma __member_alignment __save
711 # pragma member_alignment
714 typedef unsigned mydev_t;
716 typedef unsigned myino_t;
718 typedef __ino64_t myino_t;
723 struct stat crtl_stat;
726 unsigned rvn; /* FID (num,seq,rvn) + pad */
729 char st_devnam[256]; /* Cache the (short) VMS name */
732 #define st_mode crtl_stat.st_mode
733 #define st_nlink crtl_stat.st_nlink
734 #define st_uid crtl_stat.st_uid
735 #define st_gid crtl_stat.st_gid
736 #define st_rdev crtl_stat.st_rdev
737 #define st_size crtl_stat.st_size
738 #define st_atime crtl_stat.st_atime
739 #define st_mtime crtl_stat.st_mtime
740 #define st_ctime crtl_stat.st_ctime
741 #define st_fab_rfm crtl_stat.st_fab_rfm
742 #define st_fab_rat crtl_stat.st_fab_rat
743 #define st_fab_fsz crtl_stat.st_fab_fsz
744 #define st_fab_mrs crtl_stat.st_fab_mrs
747 #define VMS_INO_T_COMPARE(__a, __b) (__a != __b)
748 #define VMS_INO_T_COPY(__a, __b) __a = __b
750 #define VMS_INO_T_COMPARE(__a, __b) memcmp(&__a, &__b, 6)
751 #define VMS_INO_T_COPY(__a, __b) memcpy(&__a, &__b, 6)
754 #if defined(__DECC) || defined(__DECCXX)
755 # pragma __member_alignment __restore
759 * DEC C previous to 6.0 corrupts the behavior of the /prefix
760 * qualifier with the extern prefix pragma. This provisional
761 * hack circumvents this prefix pragma problem in previous
764 #if defined(__VMS_VER) && __VMS_VER >= 70000000
765 # if defined(VMS_WE_ARE_CASE_SENSITIVE) && (__DECC_VER < 60000000)
766 # pragma __extern_prefix save
767 # pragma __extern_prefix "" /* set to empty to prevent prefixing */
768 # define geteuid decc$__unix_geteuid
769 # define getuid decc$__unix_getuid
770 # define stat(__p1,__p2) decc$__utc_stat(__p1,__p2)
771 # define fstat(__p1,__p2) decc$__utc_fstat(__p1,__p2)
772 # pragma __extern_prefix restore
776 #ifndef DONT_MASK_RTL_CALLS /* defined for vms.c so we can see RTL calls */
781 # define dev_t mydev_t
782 # define ino_t myino_t
784 /* Cons up a 'delete' bit for testing access */
785 #define S_IDUSR (S_IWUSR | S_IXUSR)
786 #define S_IDGRP (S_IWGRP | S_IXGRP)
787 #define S_IDOTH (S_IWOTH | S_IXOTH)
790 /* Prototypes for functions unique to vms.c. Don't include replacements
791 * for routines in the mainline source files excluded by #ifndef VMS;
792 * their prototypes are already in proto.h.
794 * In order to keep Gen_ShrFls.Pl happy, functions which are to be made
795 * available to images linked to PerlShr.Exe must be declared between the
796 * __VMS_PROTOTYPES__ and __VMS_SEPYTOTORP__ lines, and must be in the form
797 * <data type><TAB>name<WHITESPACE>(<prototype args>);
800 #ifdef NO_PERL_TYPEDEFS
801 /* We don't have Perl typedefs available (e.g. when building a2p), so
802 we fake them here. N.B. There is *no* guarantee that the faked
803 prototypes will actually match the real routines. If you want to
804 call Perl routines, include perl.h to get the real typedefs. */
807 # define __MY_BOOL_TYPE_FAKE
811 # define __MY_I32_TYPE_FAKE
814 # define SV void /* Since we only see SV * in prototypes */
815 # define __MY_SV_TYPE_FAKE
819 void prime_env_iter (void);
820 void init_os_extras (void);
821 int Perl_vms_status_to_unix(int vms_status, int child_flag);
822 int Perl_unix_status_to_vms(int unix_status);
823 /* prototype section start marker; `typedef' passes through cpp */
824 typedef char __VMS_PROTOTYPES__;
825 int Perl_vmstrnenv (const char *, char *, unsigned long int, struct dsc$descriptor_s **, unsigned long int);
826 char * Perl_vms_realpath (pTHX_ const char *, char *, int *);
827 #if !defined(PERL_IMPLICIT_CONTEXT)
828 int Perl_vms_case_tolerant(void);
829 char * Perl_my_getenv (const char *, bool);
830 int Perl_my_trnlnm (const char *, char *, unsigned long int);
831 char * Perl_tounixspec (const char *, char *);
832 char * Perl_tounixspec_ts (const char *, char *);
833 char * Perl_tounixspec_utf8 (const char *, char *, int *);
834 char * Perl_tounixspec_utf8_ts (const char *, char *, int *);
835 char * Perl_tovmsspec (const char *, char *);
836 char * Perl_tovmsspec_ts (const char *, char *);
837 char * Perl_tovmsspec_utf8 (const char *, char *, int *);
838 char * Perl_tovmsspec_utf8_ts (const char *, char *, int *);
839 char * Perl_tounixpath (const char *, char *);
840 char * Perl_tounixpath_ts (const char *, char *);
841 char * Perl_tounixpath_utf8 (const char *, char *, int *);
842 char * Perl_tounixpath_utf8_ts (const char *, char *, int *);
843 char * Perl_tovmspath (const char *, char *);
844 char * Perl_tovmspath_ts (const char *, char *);
845 char * Perl_tovmspath_utf8 (const char *, char *, int *);
846 char * Perl_tovmspath_utf8_ts (const char *, char *, int *);
847 int Perl_do_rmdir (const char *);
848 char * Perl_fileify_dirspec (const char *, char *);
849 char * Perl_fileify_dirspec_ts (const char *, char *);
850 char * Perl_fileify_dirspec_utf8 (const char *, char *, int *);
851 char * Perl_fileify_dirspec_utf8_ts (const char *, char *, int *);
852 char * Perl_pathify_dirspec (const char *, char *);
853 char * Perl_pathify_dirspec_ts (const char *, char *);
854 char * Perl_pathify_dirspec_utf8 (const char *, char *, int *);
855 char * Perl_pathify_dirspec_utf8_ts (const char *, char *, int *);
856 char * Perl_rmsexpand (const char *, char *, const char *, unsigned);
857 char * Perl_rmsexpand_ts (const char *, char *, const char *, unsigned);
858 char * Perl_rmsexpand_utf8 (const char *, char *, const char *, unsigned, int *, int *);
859 char * Perl_rmsexpand_utf8_ts (const char *, char *, const char *, unsigned, int *, int *);
860 int Perl_trim_unixpath (char *, const char*, int);
861 DIR * Perl_opendir (const char *);
862 int Perl_rmscopy (const char *, const char *, int);
863 int Perl_my_mkdir (const char *, Mode_t);
864 bool Perl_vms_do_aexec (SV *, SV **, SV **);
866 char * Perl_my_getenv (pTHX_ const char *, bool);
867 int Perl_my_trnlnm (pTHX_ const char *, char *, unsigned long int);
868 char * Perl_tounixspec (pTHX_ const char *, char *);
869 char * Perl_tounixspec_ts (pTHX_ const char *, char *);
870 char * Perl_tounixspec_utf8 (pTHX_ const char *, char *, int *);
871 char * Perl_tounixspec_utf8_ts (pTHX_ const char *, char *, int *);
872 char * Perl_tovmsspec (pTHX_ const char *, char *);
873 char * Perl_tovmsspec_ts (pTHX_ const char *, char *);
874 char * Perl_tovmsspec_utf8 (pTHX_ const char *, char *, int *);
875 char * Perl_tovmsspec_utf8_ts (pTHX_ const char *, char *, int *);
876 char * Perl_tounixpath (pTHX_ const char *, char *);
877 char * Perl_tounixpath_ts (pTHX_ const char *, char *);
878 char * Perl_tounixpath_utf8 (pTHX_ const char *, char *, int *);
879 char * Perl_tounixpath_utf8_ts (pTHX_ const char *, char *, int *);
880 char * Perl_tovmspath (pTHX_ const char *, char *);
881 char * Perl_tovmspath_ts (pTHX_ const char *, char *);
882 char * Perl_tovmspath_utf8 (pTHX_ const char *, char *, int *);
883 char * Perl_tovmspath_utf8_ts (pTHX_ const char *, char *, int *);
884 int Perl_do_rmdir (pTHX_ const char *);
885 char * Perl_fileify_dirspec (pTHX_ const char *, char *);
886 char * Perl_fileify_dirspec_ts (pTHX_ const char *, char *);
887 char * Perl_fileify_dirspec_utf8 (pTHX_ const char *, char *, int *);
888 char * Perl_fileify_dirspec_utf8_ts (pTHX_ const char *, char *, int *);
889 char * Perl_pathify_dirspec (pTHX_ const char *, char *);
890 char * Perl_pathify_dirspec_ts (pTHX_ const char *, char *);
891 char * Perl_pathify_dirspec_utf8 (pTHX_ const char *, char *, int *);
892 char * Perl_pathify_dirspec_utf8_ts (pTHX_ const char *, char *, int *);
893 char * Perl_rmsexpand (pTHX_ const char *, char *, const char *, unsigned);
894 char * Perl_rmsexpand_ts (pTHX_ const char *, char *, const char *, unsigned);
895 char * Perl_rmsexpand_utf8 (pTHX_ const char *, char *, const char *, unsigned, int *, int *);
896 char * Perl_rmsexpand_utf8_ts (pTHX_ const char *, char *, const char *, unsigned, int *, int *);
897 int Perl_trim_unixpath (pTHX_ char *, const char*, int);
898 DIR * Perl_opendir (pTHX_ const char *);
899 int Perl_rmscopy (pTHX_ const char *, const char *, int);
900 int Perl_my_mkdir (pTHX_ const char *, Mode_t);
901 bool Perl_vms_do_aexec (pTHX_ SV *, SV **, SV **);
903 int Perl_vms_case_tolerant(void);
904 char * Perl_my_getenv_len (pTHX_ const char *, unsigned long *, bool);
905 int Perl_vmssetenv (pTHX_ const char *, const char *, struct dsc$descriptor_s **);
906 void Perl_vmssetuserlnm(pTHX_ const char *name, const char *eqv);
907 char * Perl_my_crypt (pTHX_ const char *, const char *);
908 Pid_t Perl_my_waitpid (pTHX_ Pid_t, int *, int);
909 char * my_gconvert (double, int, int, char *);
910 int Perl_kill_file (pTHX_ const char *);
911 int Perl_my_chdir (pTHX_ const char *);
912 FILE * Perl_my_tmpfile (void);
913 #ifndef HOMEGROWN_POSIX_SIGNALS
914 int Perl_my_sigaction (pTHX_ int, const struct sigaction*, struct sigaction*);
916 #ifdef KILL_BY_SIGPRC
917 unsigned int Perl_sig_to_vmscondition (int);
918 int Perl_my_kill (int, int);
919 void Perl_csighandler_init (void);
921 int Perl_my_utime (pTHX_ const char *, const struct utimbuf *);
922 void Perl_vms_image_init (int *, char ***);
923 struct dirent * Perl_readdir (pTHX_ DIR *);
924 int Perl_readdir_r(pTHX_ DIR *, struct dirent *, struct dirent **);
925 long Perl_telldir (DIR *);
926 void Perl_seekdir (pTHX_ DIR *, long);
927 void Perl_closedir (DIR *);
928 void vmsreaddirversions (DIR *, int);
929 struct tm * Perl_my_gmtime (pTHX_ const time_t *);
930 struct tm * Perl_my_localtime (pTHX_ const time_t *);
931 time_t Perl_my_time (pTHX_ time_t *);
932 #ifdef HOMEGROWN_POSIX_SIGNALS
933 int my_sigemptyset (sigset_t *);
934 int my_sigfillset (sigset_t *);
935 int my_sigaddset (sigset_t *, int);
936 int my_sigdelset (sigset_t *, int);
937 int my_sigismember (sigset_t *, int);
938 int my_sigprocmask (int, sigset_t *, sigset_t *);
940 I32 Perl_cando_by_name (pTHX_ I32, bool, const char *);
941 int Perl_flex_fstat (pTHX_ int, Stat_t *);
942 int Perl_flex_lstat (pTHX_ const char *, Stat_t *);
943 int Perl_flex_stat (pTHX_ const char *, Stat_t *);
945 bool Perl_vms_do_exec (pTHX_ const char *);
946 unsigned long int Perl_do_aspawn (pTHX_ void *, void **, void **);
947 unsigned long int Perl_do_spawn (pTHX_ const char *);
948 FILE * my_fdopen (int, const char *);
949 int my_fclose (FILE *);
950 int my_fwrite (const void *, size_t, size_t, FILE *);
951 int Perl_my_flush (pTHX_ FILE *);
952 struct passwd * Perl_my_getpwnam (pTHX_ const char *name);
953 struct passwd * Perl_my_getpwuid (pTHX_ Uid_t uid);
954 void Perl_my_endpwent (pTHX);
955 char * my_getlogin (void);
956 typedef char __VMS_SEPYTOTORP__;
957 /* prototype section end marker; `typedef' passes through cpp */
959 #ifdef NO_PERL_TYPEDEFS /* We'll try not to scramble later files */
960 # ifdef __MY_BOOL_TYPE_FAKE
962 # undef __MY_BOOL_TYPE_FAKE
964 # ifdef __MY_I32_TYPE_FAKE
966 # undef __MY_I32_TYPE_FAKE
968 # ifdef __MY_SV_TYPE_FAKE
970 # undef __MY_SV_TYPE_FAKE
974 #ifndef VMS_DO_SOCKETS
975 /* This relies on tricks in perl.h to pick up that these manifest constants
976 * are undefined and set up conversion routines. It will then redefine
977 * these manifest constants, so the actual values will match config.h
985 /* The C RTL manual says to undef the macro for DEC C 5.2 and lower. */
986 #if defined(fileno) && defined(__DECC_VER) && __DECC_VER < 50300000
990 #define NO_ENVIRON_ARRAY
992 /* RMSEXPAND options */
993 #define PERL_RMSEXPAND_M_VMS 0x02 /* Force output to VMS format */
994 #define PERL_RMSEXPAND_M_LONG 0x04 /* Expand to long name format */
995 #define PERL_RMSEXPAND_M_VMS_IN 0x08 /* Assume input is VMS already */
996 #define PERL_RMSEXPAND_M_SYMLINK 0x20 /* Use symbolic link, not target */
998 #endif /* __vmsish_h_included */