This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
bfa1f78ac0ad0be199c3371d7104eca3c6d06207
[perl5.git] / ext / DynaLoader / dlutils.c
1 /* dlutils.c - handy functions and definitions for dl_*.xs files
2  *
3  * Currently this file is simply #included into dl_*.xs/.c files.
4  * It should really be split into a dlutils.h and dlutils.c
5  *
6  */
7
8
9 /* pointer to allocated memory for last error message */
10 static char *LastError  = (char*)NULL;
11
12 /* flag for immediate rather than lazy linking (spots unresolved symbol) */
13 static int dl_nonlazy = 0;
14
15 #ifdef DL_LOADONCEONLY
16 static HV *dl_loaded_files = Nullhv;    /* only needed on a few systems */
17 #endif
18
19
20 #ifdef DEBUGGING
21 static int dl_debug = 0;        /* value copied from $DynaLoader::dl_error */
22 #define DLDEBUG(level,code)     if (dl_debug>=level) { code; }
23 #else
24 #define DLDEBUG(level,code)
25 #endif
26
27
28 static void
29 dl_generic_private_init(CPERLarg)       /* called by dl_*.xs dl_private_init() */
30 {
31     char *perl_dl_nonlazy;
32 #ifdef DEBUGGING
33     dl_debug = SvIV( perl_get_sv("DynaLoader::dl_debug", 0x04) );
34 #endif
35     if ( (perl_dl_nonlazy = getenv("PERL_DL_NONLAZY")) != NULL )
36         dl_nonlazy = atoi(perl_dl_nonlazy);
37     if (dl_nonlazy)
38         DLDEBUG(1,PerlIO_printf(PerlIO_stderr(), "DynaLoader bind mode is 'non-lazy'\n"));
39 #ifdef DL_LOADONCEONLY
40     if (!dl_loaded_files)
41         dl_loaded_files = newHV(); /* provide cache for dl_*.xs if needed */
42 #endif
43 }
44
45
46 /* SaveError() takes printf style args and saves the result in LastError */
47 static void
48 SaveError(CPERLarg_ char* pat, ...)
49 {
50     va_list args;
51     char *message;
52     int len;
53
54     /* This code is based on croak/warn, see mess() in util.c */
55
56     va_start(args, pat);
57     message = mess(pat, &args);
58     va_end(args);
59
60     len = strlen(message) + 1 ; /* include terminating null char */
61
62     /* Allocate some memory for the error message */
63     if (LastError)
64         LastError = (char*)saferealloc(LastError, len) ;
65     else
66         LastError = (char *) safemalloc(len) ;
67
68     /* Copy message into LastError (including terminating null char)    */
69     strncpy(LastError, message, len) ;
70     DLDEBUG(2,PerlIO_printf(PerlIO_stderr(), "DynaLoader: stored error msg '%s'\n",LastError));
71 }
72