unlock context when bailing out with a warning. (g_main_context_check):
[platform/upstream/glib.git] / gmodule / gmodule.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 Lesser 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  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser 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-2000.  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 #ifdef HAVE_CONFIG_H
32 # include <config.h>
33 #endif
34 #include        "gmodule.h"
35 #include        "gmoduleconf.h"
36 #include        <errno.h>
37 #include        <string.h>
38 #include        <sys/types.h>
39 #include        <sys/stat.h>
40 #include        <fcntl.h>
41 #ifdef HAVE_UNISTD_H
42 # include <unistd.h>
43 #endif
44 #if defined (G_OS_WIN32)
45 # include <io.h>                /* For open() and close() prototypes. */
46 #endif
47
48 /* We maintain a list of modules, so we can reference count them.
49  * That's needed because some platforms don't support refernce counts on
50  * modules e.g. the shl_* implementation of HP-UX
51  * (http://www.stat.umn.edu/~luke/xls/projects/dlbasics/dlbasics.html).
52  * Also, the module for the program itself is kept seperatedly for
53  * faster access and because it has special semantics.
54  */
55
56
57 /* --- structures --- */
58 struct _GModule
59 {
60   gchar *file_name;
61   gpointer handle;
62   guint ref_count : 31;
63   guint is_resident : 1;
64   GModuleUnload unload;
65   GModule *next;
66 };
67
68
69 /* --- prototypes --- */
70 static gpointer         _g_module_open          (const gchar    *file_name,
71                                                  gboolean        bind_lazy);
72 static void             _g_module_close         (gpointer        handle,
73                                                  gboolean        is_unref);
74 static gpointer         _g_module_self          (void);
75 static gpointer         _g_module_symbol        (gpointer        handle,
76                                                  const gchar    *symbol_name);
77 static gchar*           _g_module_build_path    (const gchar    *directory,
78                                                  const gchar    *module_name);
79 static inline void      g_module_set_error      (const gchar    *error);
80 static inline GModule*  g_module_find_by_handle (gpointer        handle);
81 static inline GModule*  g_module_find_by_name   (const gchar    *name);
82
83
84 /* --- variables --- */
85 static GModule       *modules = NULL;
86 static GModule       *main_module = NULL;
87 static GStaticPrivate module_error_private = G_STATIC_PRIVATE_INIT;
88
89
90 /* --- inline functions --- */
91 static inline GModule*
92 g_module_find_by_handle (gpointer handle)
93 {
94   GModule *module;
95   GModule *retval = NULL;
96   
97   if (main_module && main_module->handle == handle)
98     retval = main_module;
99   else
100     for (module = modules; module; module = module->next)
101       if (handle == module->handle)
102         {
103           retval = module;
104           break;
105         }
106
107   return retval;
108 }
109
110 static inline GModule*
111 g_module_find_by_name (const gchar *name)
112 {
113   GModule *module;
114   GModule *retval = NULL;
115   
116   for (module = modules; module; module = module->next)
117     if (strcmp (name, module->file_name) == 0)
118         {
119           retval = module;
120           break;
121         }
122
123   return retval;
124 }
125
126 static inline void
127 g_module_set_error_unduped (const gchar *error)
128 {
129   g_static_private_set (&module_error_private, g_strdup (error), g_free);
130   errno = 0;
131 }
132
133 static inline void
134 g_module_set_error (const gchar *error)
135 {
136   g_module_set_error_unduped (g_strdup (error));
137 }
138
139
140 /* --- include platform specifc code --- */
141 #define SUPPORT_OR_RETURN(rv)   { g_module_set_error (NULL); }
142 #if     (G_MODULE_IMPL == G_MODULE_IMPL_DL)
143 #include "gmodule-dl.c"
144 #elif   (G_MODULE_IMPL == G_MODULE_IMPL_DLD)
145 #include "gmodule-dld.c"
146 #elif   (G_MODULE_IMPL == G_MODULE_IMPL_WIN32)
147 #include "gmodule-win32.c"
148 #elif   (G_MODULE_IMPL == G_MODULE_IMPL_DYLD)
149 #include "gmodule-dyld.c"
150 #else
151 #undef  SUPPORT_OR_RETURN
152 #define SUPPORT_OR_RETURN(rv)   { g_module_set_error ("dynamic modules are " \
153                                               "not supported by this system"); return rv; }
154 static gpointer
155 _g_module_open (const gchar     *file_name,
156                 gboolean         bind_lazy)
157 {
158   return NULL;
159 }
160 static void
161 _g_module_close (gpointer        handle,
162                  gboolean        is_unref)
163 {
164 }
165 static gpointer
166 _g_module_self (void)
167 {
168   return NULL;
169 }
170 static gpointer
171 _g_module_symbol (gpointer       handle,
172                   const gchar   *symbol_name)
173 {
174   return NULL;
175 }
176 static gchar*
177 _g_module_build_path (const gchar *directory,
178                       const gchar *module_name)
179 {
180   return NULL;
181 }
182 #endif  /* no implementation */
183
184 /* --- functions --- */
185 gboolean
186 g_module_supported (void)
187 {
188   SUPPORT_OR_RETURN (FALSE);
189   
190   return TRUE;
191 }
192
193 static gchar*
194 parse_libtool_archive (const gchar* libtool_name)
195 {
196   const gint TOKEN_DLNAME = G_TOKEN_LAST + 1;
197   const gint TOKEN_INSTALLED = G_TOKEN_LAST + 2;
198   const gint TOKEN_LIBDIR = G_TOKEN_LAST + 3;
199   gchar *lt_dlname = NULL;
200   gboolean lt_installed = TRUE;
201   gchar *lt_libdir = NULL;
202   gchar *name;
203   GTokenType token;
204   GScanner *scanner;
205   
206   int fd = open (libtool_name, O_RDONLY, 0);
207   if (fd < 0)
208     {
209       g_module_set_error_unduped (g_strdup_printf ("failed to open libtool archive \"%s\"", libtool_name));   
210       return NULL;
211     }
212   /* search libtool's dlname specification  */
213   scanner = g_scanner_new (NULL);
214   g_scanner_input_file (scanner, fd);
215   scanner->config->symbol_2_token = TRUE;
216   g_scanner_scope_add_symbol (scanner, 0, "dlname", 
217                               GUINT_TO_POINTER (TOKEN_DLNAME));
218   g_scanner_scope_add_symbol (scanner, 0, "installed", 
219                               GUINT_TO_POINTER (TOKEN_INSTALLED));
220   g_scanner_scope_add_symbol (scanner, 0, "libdir", 
221                               GUINT_TO_POINTER (TOKEN_LIBDIR));
222   while (!g_scanner_eof (scanner))
223     {
224       token = g_scanner_get_next_token (scanner);
225       if (token == TOKEN_DLNAME || token == TOKEN_INSTALLED || 
226           token == TOKEN_LIBDIR)
227         {
228           if (g_scanner_get_next_token (scanner) != '=' ||
229               g_scanner_get_next_token (scanner) != 
230               (token == TOKEN_INSTALLED ? 
231                G_TOKEN_IDENTIFIER : G_TOKEN_STRING))
232             {
233               g_module_set_error_unduped (g_strdup_printf ("unable to parse libtool archive \"%s\"", libtool_name));
234
235               g_free (lt_dlname);
236               g_free (lt_libdir);
237               g_scanner_destroy (scanner);
238               close (fd);
239
240               return NULL;
241             }
242           else
243             {
244               if (token == TOKEN_DLNAME)
245                 {
246                   g_free (lt_dlname);
247                   lt_dlname = g_strdup (scanner->value.v_string);
248                 }
249               else if (token == TOKEN_INSTALLED)
250                 lt_installed = 
251                   strcmp (scanner->value.v_identifier, "yes") == 0;
252               else /* token == TOKEN_LIBDIR */
253                 {
254                   g_free (lt_libdir);
255                   lt_libdir = g_strdup (scanner->value.v_string);
256                 }
257             }
258         }      
259     }
260
261   if (!lt_installed)
262     {
263       gchar *dir = g_path_get_dirname (libtool_name);
264       g_free (lt_libdir);
265       lt_libdir = g_strconcat (dir, G_DIR_SEPARATOR_S ".libs", NULL);
266     }
267
268   name = g_module_build_path (lt_libdir, lt_dlname);
269   
270   g_free (lt_dlname);
271   g_free (lt_libdir);
272   g_scanner_destroy (scanner);
273   close (fd);
274
275   return name;
276 }
277
278 static inline gboolean
279 str_check_suffix (const gchar* string,
280                   const gchar* suffix)
281 {
282   guint string_len = strlen (string);
283   guint suffix_len = strlen (suffix);
284
285   return string_len >= suffix_len && 
286     strcmp (string + string_len - suffix_len, suffix) == 0;
287 }
288
289 static GStaticRecMutex g_module_global_lock = G_STATIC_REC_MUTEX_INIT;
290
291 GModule*
292 g_module_open (const gchar    *file_name,
293                GModuleFlags    flags)
294 {
295   GModule *module;
296   gpointer handle = NULL;
297   gchar *name = NULL;
298   
299   SUPPORT_OR_RETURN (NULL);
300   
301   g_static_rec_mutex_lock (&g_module_global_lock);
302   if (!file_name)
303     {      
304       if (!main_module)
305         {
306           handle = _g_module_self ();
307           if (handle)
308             {
309               main_module = g_new (GModule, 1);
310               main_module->file_name = NULL;
311               main_module->handle = handle;
312               main_module->ref_count = 1;
313               main_module->is_resident = TRUE;
314               main_module->unload = NULL;
315               main_module->next = NULL;
316             }
317         }
318
319       g_static_rec_mutex_unlock (&g_module_global_lock);
320       return main_module;
321     }
322   
323   /* we first search the module list by name */
324   module = g_module_find_by_name (file_name);
325   if (module)
326     {
327       module->ref_count++;
328       
329       g_static_rec_mutex_unlock (&g_module_global_lock);
330       return module;
331     }
332
333   /* check whether we have a readable file right away */
334   if (g_file_test (file_name, G_FILE_TEST_EXISTS | G_FILE_TEST_IS_REGULAR))
335     name = g_strdup (file_name);
336   /* try completing file name with standard library suffix */
337   if (!name)
338     {
339       name = g_strconcat (file_name, "." G_MODULE_SUFFIX, NULL);
340       if (!g_file_test (file_name, G_FILE_TEST_EXISTS | G_FILE_TEST_IS_REGULAR))
341         {
342           g_free (name);
343           name = NULL;
344         }
345     }
346   /* last resort, try appending libtool suffix */
347   if (!name)
348     {
349       name = g_strconcat (file_name, ".la");
350       if (!g_file_test (name, G_FILE_TEST_EXISTS | G_FILE_TEST_IS_REGULAR))
351         {
352           g_free (name);
353           name = NULL;
354         }
355     }
356
357   /* ok, try loading the module */
358   if (name)
359     {
360       /* if it's a libtool archive, figure library file to load */
361       if (str_check_suffix (name, ".la")) /* libtool archive? */
362         {
363           gchar *real_name = parse_libtool_archive (name);
364
365           /* real_name might be NULL, but then module error is already set */
366           g_free (name);
367           name = real_name;
368         }
369       if (name)
370         handle = _g_module_open (name, (flags & G_MODULE_BIND_LAZY) != 0);
371     }
372   else
373     g_module_set_error_unduped (g_strdup_printf ("unable to access file \"%s\"", file_name));
374   g_free (name);
375
376   if (handle)
377     {
378       gchar *saved_error;
379       GModuleCheckInit check_init;
380       const gchar *check_failed = NULL;
381       
382       /* search the module list by handle, since file names are not unique */
383       module = g_module_find_by_handle (handle);
384       if (module)
385         {
386           _g_module_close (module->handle, TRUE);
387           module->ref_count++;
388           g_module_set_error (NULL);
389           
390           g_static_rec_mutex_unlock (&g_module_global_lock);
391           return module;
392         }
393       
394       saved_error = g_strdup (g_module_error ());
395       g_module_set_error (NULL);
396       
397       module = g_new (GModule, 1);
398       module->file_name = g_strdup (file_name);
399       module->handle = handle;
400       module->ref_count = 1;
401       module->is_resident = FALSE;
402       module->unload = NULL;
403       module->next = modules;
404       modules = module;
405       
406       /* check initialization */
407       if (g_module_symbol (module, "g_module_check_init", (gpointer) &check_init))
408         check_failed = check_init (module);
409       
410       /* we don't call unload() if the initialization check failed. */
411       if (!check_failed)
412         g_module_symbol (module, "g_module_unload", (gpointer) &module->unload);
413       
414       if (check_failed)
415         {
416           gchar *error;
417
418           error = g_strconcat ("GModule initialization check failed: ", check_failed, NULL);
419           g_module_close (module);
420           module = NULL;
421           g_module_set_error (error);
422           g_free (error);
423         }
424       else
425         g_module_set_error (saved_error);
426
427       g_free (saved_error);
428     }
429
430   g_static_rec_mutex_unlock (&g_module_global_lock);
431   return module;
432 }
433
434 gboolean
435 g_module_close (GModule        *module)
436 {
437   SUPPORT_OR_RETURN (FALSE);
438   
439   g_return_val_if_fail (module != NULL, FALSE);
440   g_return_val_if_fail (module->ref_count > 0, FALSE);
441   
442   g_static_rec_mutex_lock (&g_module_global_lock);
443
444   module->ref_count--;
445   
446   if (!module->ref_count && !module->is_resident && module->unload)
447     {
448       GModuleUnload unload;
449
450       unload = module->unload;
451       module->unload = NULL;
452       unload (module);
453     }
454
455   if (!module->ref_count && !module->is_resident)
456     {
457       GModule *last;
458       GModule *node;
459       
460       last = NULL;
461       
462       node = modules;
463       while (node)
464         {
465           if (node == module)
466             {
467               if (last)
468                 last->next = node->next;
469               else
470                 modules = node->next;
471               break;
472             }
473           last = node;
474           node = last->next;
475         }
476       module->next = NULL;
477       
478       _g_module_close (module->handle, FALSE);
479       g_free (module->file_name);
480       
481       g_free (module);
482     }
483   
484   g_static_rec_mutex_unlock (&g_module_global_lock);
485   return g_module_error() == NULL;
486 }
487
488 void
489 g_module_make_resident (GModule *module)
490 {
491   g_return_if_fail (module != NULL);
492
493   module->is_resident = TRUE;
494 }
495
496 G_CONST_RETURN gchar*
497 g_module_error (void)
498 {
499   return g_static_private_get (&module_error_private);
500 }
501
502 gboolean
503 g_module_symbol (GModule        *module,
504                  const gchar    *symbol_name,
505                  gpointer       *symbol)
506 {
507   const gchar *module_error;
508
509   if (symbol)
510     *symbol = NULL;
511   SUPPORT_OR_RETURN (FALSE);
512   
513   g_return_val_if_fail (module != NULL, FALSE);
514   g_return_val_if_fail (symbol_name != NULL, FALSE);
515   g_return_val_if_fail (symbol != NULL, FALSE);
516   
517   g_static_rec_mutex_lock (&g_module_global_lock);
518
519 #ifdef  G_MODULE_NEED_USCORE
520   {
521     gchar *name;
522
523     name = g_strconcat ("_", symbol_name, NULL);
524     *symbol = _g_module_symbol (module->handle, name);
525     g_free (name);
526   }
527 #else   /* !G_MODULE_NEED_USCORE */
528   *symbol = _g_module_symbol (module->handle, symbol_name);
529 #endif  /* !G_MODULE_NEED_USCORE */
530   
531   module_error = g_module_error ();
532   if (module_error)
533     {
534       gchar *error;
535
536       error = g_strconcat ("`", symbol_name, "': ", module_error, NULL);
537       g_module_set_error (error);
538       g_free (error);
539       *symbol = NULL;
540     }
541   
542   g_static_rec_mutex_unlock (&g_module_global_lock);
543   return !module_error;
544 }
545
546 G_CONST_RETURN gchar*
547 g_module_name (GModule *module)
548 {
549   g_return_val_if_fail (module != NULL, NULL);
550   
551   if (module == main_module)
552     return "main";
553   
554   return module->file_name;
555 }
556
557 gchar*
558 g_module_build_path (const gchar *directory,
559                      const gchar *module_name)
560 {
561   g_return_val_if_fail (module_name != NULL, NULL);
562   
563   return _g_module_build_path (directory, module_name);
564 }