This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Regen Configure and Glossary once again.
[perl5.git] / ext / DynaLoader / dl_vms.xs
CommitLineData
a0d0e21e
LW
1/* dl_vms.xs
2 *
3 * Platform: OpenVMS, VAX or AXP
bd3fa61c 4 * Author: Charles Bailey bailey@newman.upenn.edu
748a9306 5 * Revised: 12-Dec-1994
a0d0e21e
LW
6 *
7 * Implementation Note
8 * This section is added as an aid to users and DynaLoader developers, in
9 * order to clarify the process of dynamic linking under VMS.
10 * dl_vms.xs uses the supported VMS dynamic linking call, which allows
11 * a running program to map an arbitrary file of executable code and call
12 * routines within that file. This is done via the VMS RTL routine
13 * lib$find_image_symbol, whose calling sequence is as follows:
14 * status = lib$find_image_symbol(imgname,symname,symval,defspec);
15 * where
16 * status = a standard VMS status value (unsigned long int)
17 * imgname = a fixed-length string descriptor, passed by
18 * reference, containing the NAME ONLY of the image
19 * file to be mapped. An attempt will be made to
20 * translate this string as a logical name, so it may
21 * not contain any characters which are not allowed in
22 * logical names. If no translation is found, imgname
23 * is used directly as the name of the image file.
24 * symname = a fixed-length string descriptor, passed by
25 * reference, containing the name of the routine
26 * to be located.
27 * symval = an unsigned long int, passed by reference, into
28 * which is written the entry point address of the
29 * routine whose name is specified in symname.
30 * defspec = a fixed-length string descriptor, passed by
31 * reference, containing a default file specification
32 * whichis used to fill in any missing parts of the
33 * image file specification after the imgname argument
34 * is processed.
35 * In order to accommodate the handling of the imgname argument, the routine
36 * dl_expandspec() is provided for use by perl code (e.g. dl_findfile)
37 * which wants to see what image file lib$find_image_symbol would use if
38 * it were passed a given file specification. The file specification passed
39 * to dl_expandspec() and dl_load_file() can be partial or complete, and can
40 * use VMS or Unix syntax; these routines perform the necessary conversions.
41 * In general, writers of perl extensions need only conform to the
42 * procedures set out in the DynaLoader documentation, and let the details
43 * be taken care of by the routines here and in DynaLoader.pm. If anyone
44 * comes across any incompatibilities, please let me know. Thanks.
45 *
46 */
47
48#include "EXTERN.h"
49#include "perl.h"
50#include "XSUB.h"
51
52#include "dlutils.c" /* dl_debug, LastError; SaveError not used */
8e07c86e
AD
53
54static AV *dl_require_symbols = Nullav;
55
a0d0e21e
LW
56/* N.B.:
57 * dl_debug and LastError are static vars; you'll need to deal
58 * with them appropriately if you need context independence
59 */
60
61#include <descrip.h>
62#include <fscndef.h>
63#include <lib$routines.h>
64#include <rms.h>
65#include <ssdef.h>
748a9306 66#include <starlet.h>
a0d0e21e
LW
67
68typedef unsigned long int vmssts;
69
70struct libref {
71 struct dsc$descriptor_s name;
72 struct dsc$descriptor_s defspec;
73};
74
75/* Static data for dl_expand_filespec() - This is static to save
76 * initialization on each call; if you need context-independence,
77 * just make these auto variables in dl_expandspec() and dl_load_file()
78 */
79static char dlesa[NAM$C_MAXRSS], dlrsa[NAM$C_MAXRSS];
80static struct FAB dlfab;
81static struct NAM dlnam;
82
83/* $PutMsg action routine - records error message in LastError */
84static vmssts
85copy_errmsg(msg,unused)
86 struct dsc$descriptor_s * msg;
87 vmssts unused;
88{
748a9306 89 if (*(msg->dsc$a_pointer) == '%') { /* first line */
a0d0e21e 90 if (LastError)
2708a6a3 91 strncpy((LastError = saferealloc(LastError,msg->dsc$w_length+1)),
a0d0e21e
LW
92 msg->dsc$a_pointer, msg->dsc$w_length);
93 else
2708a6a3 94 strncpy((LastError = safemalloc(msg->dsc$w_length+1)),
a0d0e21e 95 msg->dsc$a_pointer, msg->dsc$w_length);
2708a6a3 96 LastError[msg->dsc$w_length] = '\0';
a0d0e21e
LW
97 }
98 else { /* continuation line */
99 int errlen = strlen(LastError);
2708a6a3 100 LastError = saferealloc(LastError, errlen + msg->dsc$w_length + 2);
a0d0e21e
LW
101 LastError[errlen] = '\n'; LastError[errlen+1] = '\0';
102 strncat(LastError, msg->dsc$a_pointer, msg->dsc$w_length);
2708a6a3 103 LastError[errlen+msg->dsc$w_length+1] = '\0';
a0d0e21e 104 }
2708a6a3 105 return 0;
a0d0e21e
LW
106}
107
108/* Use $PutMsg to retrieve error message for failure status code */
109static void
110dl_set_error(sts,stv)
111 vmssts sts;
112 vmssts stv;
113{
748a9306 114 vmssts vec[3];
a0d0e21e
LW
115
116 vec[0] = stv ? 2 : 1;
117 vec[1] = sts; vec[2] = stv;
748a9306 118 _ckvmssts(sys$putmsg(vec,copy_errmsg,0,0));
a0d0e21e
LW
119}
120
2708a6a3 121static unsigned int
122findsym_handler(void *sig, void *mech)
123{
124 unsigned long int myvec[8],args, *usig = (unsigned long int *) sig;
125 /* Be paranoid and assume signal vector passed in might be readonly */
126 myvec[0] = args = usig[0] > 10 ? 9 : usig[0] - 1;
127 while (--args) myvec[args] = usig[args];
128 _ckvmssts(sys$putmsg(myvec,copy_errmsg,0,0));
760ac839 129 DLDEBUG(2,PerlIO_printf(PerlIO_stderr(), "findsym_handler: received\n\t%s\n",LastError));
2708a6a3 130 return SS$_CONTINUE;
131}
132
133/* wrapper for lib$find_image_symbol, so signalled errors can be saved
134 * for dl_error and then returned */
135static unsigned long int
136my_find_image_symbol(struct dsc$descriptor_s *imgname,
137 struct dsc$descriptor_s *symname,
138 void (**entry)(),
139 struct dsc$descriptor_s *defspec)
140{
141 unsigned long int retsts;
142 VAXC$ESTABLISH(findsym_handler);
143 retsts = lib$find_image_symbol(imgname,symname,entry,defspec);
144 return retsts;
145}
146
147
a0d0e21e 148static void
cea2e8a9 149dl_private_init(pTHX)
a0d0e21e 150{
cea2e8a9
GS
151 dl_generic_private_init(aTHX);
152 dl_require_symbols = get_av("DynaLoader::dl_require_symbols", 0x4);
a0d0e21e
LW
153 /* Set up the static control blocks for dl_expand_filespec() */
154 dlfab = cc$rms_fab;
155 dlnam = cc$rms_nam;
156 dlfab.fab$l_nam = &dlnam;
157 dlnam.nam$l_esa = dlesa;
158 dlnam.nam$b_ess = sizeof dlesa;
159 dlnam.nam$l_rsa = dlrsa;
160 dlnam.nam$b_rss = sizeof dlrsa;
161}
162MODULE = DynaLoader PACKAGE = DynaLoader
163
164BOOT:
cea2e8a9 165 (void)dl_private_init(aTHX);
a0d0e21e 166
748a9306 167void
a0d0e21e
LW
168dl_expandspec(filespec)
169 char * filespec
170 CODE:
171 char vmsspec[NAM$C_MAXRSS], defspec[NAM$C_MAXRSS];
172 size_t deflen;
173 vmssts sts;
174
175 tovmsspec(filespec,vmsspec);
176 dlfab.fab$l_fna = vmsspec;
177 dlfab.fab$b_fns = strlen(vmsspec);
178 dlfab.fab$l_dna = 0;
179 dlfab.fab$b_dns = 0;
760ac839 180 DLDEBUG(1,PerlIO_printf(PerlIO_stderr(), "dl_expand_filespec(%s):\n",vmsspec));
a0d0e21e
LW
181 /* On the first pass, just parse the specification string */
182 dlnam.nam$b_nop = NAM$M_SYNCHK;
183 sts = sys$parse(&dlfab);
760ac839 184 DLDEBUG(2,PerlIO_printf(PerlIO_stderr(), "\tSYNCHK sys$parse = %d\n",sts));
a0d0e21e
LW
185 if (!(sts & 1)) {
186 dl_set_error(dlfab.fab$l_sts,dlfab.fab$l_stv);
6b88bc9c 187 ST(0) = &PL_sv_undef;
a0d0e21e
LW
188 }
189 else {
190 /* Now set up a default spec - everything but the name */
748a9306 191 deflen = dlnam.nam$l_name - dlesa;
a0d0e21e
LW
192 memcpy(defspec,dlesa,deflen);
193 memcpy(defspec+deflen,dlnam.nam$l_type,
194 dlnam.nam$b_type + dlnam.nam$b_ver);
195 deflen += dlnam.nam$b_type + dlnam.nam$b_ver;
196 memcpy(vmsspec,dlnam.nam$l_name,dlnam.nam$b_name);
760ac839 197 DLDEBUG(2,PerlIO_printf(PerlIO_stderr(), "\tsplit filespec: name = %.*s, default = %.*s\n",
748a9306 198 dlnam.nam$b_name,vmsspec,deflen,defspec));
a0d0e21e
LW
199 /* . . . and go back to expand it */
200 dlnam.nam$b_nop = 0;
201 dlfab.fab$l_dna = defspec;
202 dlfab.fab$b_dns = deflen;
203 dlfab.fab$b_fns = dlnam.nam$b_name;
204 sts = sys$parse(&dlfab);
760ac839 205 DLDEBUG(2,PerlIO_printf(PerlIO_stderr(), "\tname/default sys$parse = %d\n",sts));
a0d0e21e
LW
206 if (!(sts & 1)) {
207 dl_set_error(dlfab.fab$l_sts,dlfab.fab$l_stv);
6b88bc9c 208 ST(0) = &PL_sv_undef;
a0d0e21e
LW
209 }
210 else {
211 /* Now find the actual file */
212 sts = sys$search(&dlfab);
760ac839 213 DLDEBUG(2,PerlIO_printf(PerlIO_stderr(), "\tsys$search = %d\n",sts));
2708a6a3 214 if (!(sts & 1)) {
a0d0e21e 215 dl_set_error(dlfab.fab$l_sts,dlfab.fab$l_stv);
6b88bc9c 216 ST(0) = &PL_sv_undef;
a0d0e21e
LW
217 }
218 else {
79cb57f6 219 ST(0) = sv_2mortal(newSVpvn(dlnam.nam$l_rsa,dlnam.nam$b_rsl));
760ac839 220 DLDEBUG(1,PerlIO_printf(PerlIO_stderr(), "\tresult = \\%.*s\\\n",
a0d0e21e
LW
221 dlnam.nam$b_rsl,dlnam.nam$l_rsa));
222 }
223 }
224 }
225
748a9306 226void
f86702cc 227dl_load_file(filespec, flags)
228 char * filespec
ff7f3c60
NIS
229 int flags
230 PREINIT:
ad6a8a52 231 dTHX;
a0d0e21e 232 char vmsspec[NAM$C_MAXRSS];
a0d0e21e
LW
233 SV *reqSV, **reqSVhndl;
234 STRLEN deflen;
235 struct dsc$descriptor_s
236 specdsc = {0, DSC$K_DTYPE_T, DSC$K_CLASS_S, 0},
237 symdsc = {0, DSC$K_DTYPE_T, DSC$K_CLASS_S, 0};
238 struct fscnlst {
239 unsigned short int len;
240 unsigned short int code;
241 char *string;
748a9306 242 } namlst[2] = {{0,FSCN$_NAME,0},{0,0,0}};
a0d0e21e
LW
243 struct libref *dlptr;
244 vmssts sts, failed = 0;
2708a6a3 245 void (*entry)();
ff7f3c60 246 CODE:
a0d0e21e 247
f86702cc 248 DLDEBUG(1,PerlIO_printf(PerlIO_stderr(), "dl_load_file(%s,%x):\n", filespec,flags));
a0d0e21e
LW
249 specdsc.dsc$a_pointer = tovmsspec(filespec,vmsspec);
250 specdsc.dsc$w_length = strlen(specdsc.dsc$a_pointer);
760ac839 251 DLDEBUG(2,PerlIO_printf(PerlIO_stderr(), "\tVMS-ified filespec is %s\n",
a0d0e21e 252 specdsc.dsc$a_pointer));
fc36a67e 253 New(1399,dlptr,1,struct libref);
a0d0e21e
LW
254 dlptr->name.dsc$b_dtype = dlptr->defspec.dsc$b_dtype = DSC$K_DTYPE_T;
255 dlptr->name.dsc$b_class = dlptr->defspec.dsc$b_class = DSC$K_CLASS_S;
256 sts = sys$filescan(&specdsc,namlst,0);
760ac839 257 DLDEBUG(2,PerlIO_printf(PerlIO_stderr(), "\tsys$filescan: returns %d, name is %.*s\n",
a0d0e21e
LW
258 sts,namlst[0].len,namlst[0].string));
259 if (!(sts & 1)) {
260 failed = 1;
261 dl_set_error(sts,0);
262 }
263 else {
264 dlptr->name.dsc$w_length = namlst[0].len;
265 dlptr->name.dsc$a_pointer = savepvn(namlst[0].string,namlst[0].len);
266 dlptr->defspec.dsc$w_length = specdsc.dsc$w_length - namlst[0].len;
8c52afec 267 New(1097, dlptr->defspec.dsc$a_pointer, dlptr->defspec.dsc$w_length + 1, char);
a0d0e21e
LW
268 deflen = namlst[0].string - specdsc.dsc$a_pointer;
269 memcpy(dlptr->defspec.dsc$a_pointer,specdsc.dsc$a_pointer,deflen);
270 memcpy(dlptr->defspec.dsc$a_pointer + deflen,
271 namlst[0].string + namlst[0].len,
272 dlptr->defspec.dsc$w_length - deflen);
760ac839 273 DLDEBUG(2,PerlIO_printf(PerlIO_stderr(), "\tlibref = name: %s, defspec: %.*s\n",
a0d0e21e
LW
274 dlptr->name.dsc$a_pointer,
275 dlptr->defspec.dsc$w_length,
276 dlptr->defspec.dsc$a_pointer));
8e07c86e 277 if (!(reqSVhndl = av_fetch(dl_require_symbols,0,FALSE)) || !(reqSV = *reqSVhndl)) {
760ac839 278 DLDEBUG(2,PerlIO_printf(PerlIO_stderr(), "\t@dl_require_symbols empty, returning untested libref\n"));
a0d0e21e
LW
279 }
280 else {
281 symdsc.dsc$w_length = SvCUR(reqSV);
282 symdsc.dsc$a_pointer = SvPVX(reqSV);
760ac839 283 DLDEBUG(2,PerlIO_printf(PerlIO_stderr(), "\t$dl_require_symbols[0] = %.*s\n",
a0d0e21e 284 symdsc.dsc$w_length, symdsc.dsc$a_pointer));
2708a6a3 285 sts = my_find_image_symbol(&(dlptr->name),&symdsc,
a0d0e21e 286 &entry,&(dlptr->defspec));
760ac839 287 DLDEBUG(2,PerlIO_printf(PerlIO_stderr(), "\tlib$find_image_symbol returns %d\n",sts));
a0d0e21e
LW
288 if (!(sts&1)) {
289 failed = 1;
290 dl_set_error(sts,0);
291 }
292 }
293 }
294
295 if (failed) {
296 Safefree(dlptr->name.dsc$a_pointer);
297 Safefree(dlptr->defspec.dsc$a_pointer);
298 Safefree(dlptr);
6b88bc9c 299 ST(0) = &PL_sv_undef;
a0d0e21e
LW
300 }
301 else {
748a9306 302 ST(0) = sv_2mortal(newSViv((IV) dlptr));
a0d0e21e
LW
303 }
304
305
748a9306 306void
a0d0e21e
LW
307dl_find_symbol(librefptr,symname)
308 void * librefptr
309 SV * symname
310 CODE:
311 struct libref thislib = *((struct libref *)librefptr);
312 struct dsc$descriptor_s
313 symdsc = {SvCUR(symname),DSC$K_DTYPE_T,DSC$K_CLASS_S,SvPVX(symname)};
314 void (*entry)();
315 vmssts sts;
316
760ac839 317 DLDEBUG(1,PerlIO_printf(PerlIO_stderr(), "dl_find_dymbol(%.*s,%.*s):\n",
a0d0e21e
LW
318 thislib.name.dsc$w_length, thislib.name.dsc$a_pointer,
319 symdsc.dsc$w_length,symdsc.dsc$a_pointer));
2708a6a3 320 sts = my_find_image_symbol(&(thislib.name),&symdsc,
321 &entry,&(thislib.defspec));
760ac839
LW
322 DLDEBUG(2,PerlIO_printf(PerlIO_stderr(), "\tlib$find_image_symbol returns %d\n",sts));
323 DLDEBUG(2,PerlIO_printf(PerlIO_stderr(), "\tentry point is %d\n",
a0d0e21e
LW
324 (unsigned long int) entry));
325 if (!(sts & 1)) {
2708a6a3 326 /* error message already saved by findsym_handler */
6b88bc9c 327 ST(0) = &PL_sv_undef;
a0d0e21e 328 }
748a9306 329 else ST(0) = sv_2mortal(newSViv((IV) entry));
a0d0e21e
LW
330
331
332void
333dl_undef_symbols()
334 PPCODE:
335
336
337# These functions should not need changing on any platform:
338
339void
340dl_install_xsub(perl_name, symref, filename="$Package")
341 char * perl_name
342 void * symref
343 char * filename
344 CODE:
760ac839 345 DLDEBUG(2,PerlIO_printf(PerlIO_stderr(), "dl_install_xsub(name=%s, symref=%x)\n",
a0d0e21e 346 perl_name, symref));
cea2e8a9
GS
347 ST(0) = sv_2mortal(newRV((SV*)newXS(perl_name,
348 (void(*)(pTHX_ CV *))symref,
349 filename)));
a0d0e21e
LW
350
351
352char *
353dl_error()
354 CODE:
355 RETVAL = LastError ;
356 OUTPUT:
357 RETVAL
358
359# end.