add gmodule-os2.c
[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
20 /*
21  * Modified by the GLib Team and others 1997-1999.  See the AUTHORS
22  * file for a list of people on the GLib Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GLib at ftp://ftp.gtk.org/pub/gtk/. 
25  */
26
27 /* 
28  * MT safe
29  */
30
31 #include <dlfcn.h>
32
33 /* Perl includes <nlist.h> and <link.h> instead of <dlfcn.h> on some systmes? */
34
35
36 /* dlerror() is not implemented on all systems
37  */
38 #ifndef G_MODULE_HAVE_DLERROR
39 #  ifdef __NetBSD__
40 #    define dlerror()   g_strerror (errno)
41 #  else /* !__NetBSD__ */
42 /* could we rely on errno's state here? */
43 #    define dlerror()   "unknown dl-error"
44 #  endif /* !__NetBSD__ */
45 #endif  /* G_MODULE_HAVE_DLERROR */
46
47 /* some flags are missing on some systems, so we provide
48  * harmless defaults.
49  * The Perl sources say, RTLD_LAZY needs to be defined as (1),
50  * at least for Solaris 1.
51  *
52  * Mandatory:
53  * RTLD_LAZY   - resolve undefined symbols as code from the dynamic library
54  *               is executed.
55  * RTLD_NOW    - resolve all undefined symbols before dlopen returns, and fail
56  *               if this cannot be done.
57  * Optionally:
58  * RTLD_GLOBAL - the external symbols defined in the library will be made
59  *               available to subsequently loaded libraries.
60  */
61 #ifndef RTLD_GLOBAL
62 #define RTLD_GLOBAL     0
63 #endif  /* RTLD_GLOBAL */
64 #ifndef RTLD_LAZY
65 #define RTLD_LAZY       1
66 #endif  /* RTLD_LAZY */
67 #ifndef RTLD_NOW
68 #define RTLD_NOW        0
69 #endif  /* RTLD_NOW */
70
71
72 /* --- functions --- */
73 static gpointer
74 _g_module_open (const gchar    *file_name,
75                 gboolean        bind_lazy)
76 {
77   gpointer handle;
78   
79   handle = dlopen (file_name, RTLD_GLOBAL | (bind_lazy ? RTLD_LAZY : RTLD_NOW));
80   if (!handle)
81     g_module_set_error (dlerror ());
82   
83   return handle;
84 }
85
86 static gpointer
87 _g_module_self (void)
88 {
89   gpointer handle;
90   
91   /* to query symbols from the program itself, special link options
92    * are required on some systems.
93    */
94   
95   handle = dlopen (NULL, RTLD_GLOBAL | RTLD_LAZY);
96   if (!handle)
97     g_module_set_error (dlerror ());
98   
99   return handle;
100 }
101
102 static void
103 _g_module_close (gpointer         handle,
104                  gboolean         is_unref)
105 {
106   /* are there any systems out there that have dlopen()/dlclose()
107    * without a reference count implementation?
108    */
109   is_unref |= 1;
110   
111   if (is_unref)
112     {
113       if (dlclose (handle) != 0)
114         g_module_set_error (dlerror ());
115     }
116 }
117
118 static gpointer
119 _g_module_symbol (gpointer        handle,
120                   const gchar    *symbol_name)
121 {
122   gpointer p;
123   
124   p = dlsym (handle, symbol_name);
125   if (!p)
126     g_module_set_error (dlerror ());
127   
128   return p;
129 }
130
131 static gchar*
132 _g_module_build_path (const gchar *directory,
133                       const gchar *module_name)
134 {
135   if (directory && *directory) {
136     if (strncmp (module_name, "lib", 3) == 0)
137       return g_strconcat (directory, "/", module_name, NULL);
138     else
139       return g_strconcat (directory, "/lib", module_name, ".so", NULL);
140   } else if (strncmp (module_name, "lib", 3) == 0)
141     return g_strdup (module_name);
142   else
143     return g_strconcat ("lib", module_name, ".so", NULL);
144 }