initial import of gmodule.
[platform/upstream/glib.git] / gmodule / gmodule-dl.c
1 /* GMODULE - GLIB wrapper code for dynamic module loading
2  * Copyright (C) 1998 Tim Janik
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19 #include <dlfcn.h>
20
21 /* Perl includes <nlist.h> and <link.h> instead of <dlfcn.h> on some systmes? */
22
23
24 /* dlerror() is not implemented on all systems
25  */
26 #ifndef G_MODULE_HAVE_DLERROR
27 #  ifdef __NetBSD__
28 #    define dlerror()   g_strerror (errno)
29 #  else /* !__NetBSD__ */
30 /* could we rely on errno's state here? */
31 #    define dlerror()   "unknown dl-error"
32 #  endif /* !__NetBSD__ */
33 #endif  /* G_MODULE_HAVE_DLERROR */
34
35 /* some flags are missing on some systems, so we provide
36  * harmless defaults.
37  * The Perl sources say, RTLD_LAZY needs to be defined as (1),
38  * at least for Solaris 1.
39  */
40 #ifndef RTLD_GLOBAL
41 #define RTLD_GLOBAL     0
42 #endif  /* RTLD_GLOBAL */
43 #ifndef RTLD_LAZY
44 #define RTLD_LAZY       1
45 #endif  /* RTLD_LAZY */
46 #ifndef RTLD_NOW
47 #define RTLD_NOW        0
48 #endif  /* RTLD_NOW */
49
50
51 /* --- functions --- */
52 static gpointer
53 _g_module_open (const gchar    *file_name,
54                 gboolean        bind_lazy)
55 {
56   gpointer handle;
57
58   handle = dlopen (file_name, RTLD_GLOBAL | (bind_lazy ? RTLD_LAZY : RTLD_NOW));
59   if (!handle)
60     g_module_set_error (dlerror ());
61
62   return handle;
63 }
64
65 static gpointer
66 _g_module_self (void)
67 {
68   gpointer handle;
69
70   /* to query symbols from the program itself, special link options
71    * are required on some systems.
72    */
73
74   handle = dlopen (NULL, RTLD_GLOBAL | RTLD_LAZY);
75   if (!handle)
76     g_module_set_error (dlerror ());
77
78   return handle;
79 }
80
81 static void
82 _g_module_close (gpointer        *handle_p,
83                  gboolean         is_unref)
84 {
85   /* are there any systems out there that have dlopen()/dlclose()
86    * without a reference count implementation?
87    */
88   is_unref |= 1;
89
90   if (is_unref)
91     {
92       if (dlclose (*handle_p) != 0)
93         g_module_set_error (dlerror ());
94     }
95 }
96
97 static gpointer
98 _g_module_symbol (gpointer       *handle_p,
99                   const gchar    *symbol_name)
100 {
101   gpointer p;
102
103   p = dlsym (*handle_p, symbol_name);
104   if (!p)
105     g_module_set_error (dlerror ());
106
107   return p;
108 }