fix
[oweals/gnunet.git] / src / util / plugin.c
index d26a343c707261dc5f61474bf65a0a0c100fa07b..567b401c43e412db038461523b1b3c60e4e5c841 100644 (file)
@@ -25,7 +25,7 @@
  */
 
 #include "platform.h"
-#include <libltdl/ltdl.h>
+#include <ltdl.h>
 #include "gnunet_common.h"
 #include "gnunet_os_lib.h"
 #include "gnunet_plugin_lib.h"
@@ -52,6 +52,12 @@ struct PluginList
 };
 
 
+/**
+ * Have we been initialized?
+ */
+static int initialized;
+
+
 /**
  * Libtool search path before we started.
  */
@@ -67,17 +73,14 @@ static struct PluginList *plugins;
 /**
  * Setup libtool paths.
  */
-void __attribute__ ((constructor)) GNUNET_PLUGIN_init ()
+static void 
+plugin_init ()
 {
   int err;
   const char *opath;
   char *path;
   char *cpath;
 
-#ifdef MINGW
-  InitWinEnv (NULL);
-#endif
-
   err = lt_dlinit ();
   if (err > 0)
     {
@@ -94,10 +97,10 @@ void __attribute__ ((constructor)) GNUNET_PLUGIN_init ()
     {
       if (opath != NULL)
         {
-          cpath = GNUNET_malloc (strlen (path) + strlen (opath) + 4);
-          strcpy (cpath, opath);
-          strcat (cpath, ":");
-          strcat (cpath, path);
+         GNUNET_asprintf (&cpath,
+                          "%s:%s",
+                          opath,
+                          path);
           lt_dlsetsearchpath (cpath);
           GNUNET_free (path);
           GNUNET_free (cpath);
@@ -114,7 +117,8 @@ void __attribute__ ((constructor)) GNUNET_PLUGIN_init ()
 /**
  * Shutdown libtool.
  */
-void __attribute__ ((destructor)) GNUNET_PLUGIN_fini ()
+static void
+plugin_fini ()
 {
   lt_dlsetsearchpath (old_dlsearchpath);
   if (old_dlsearchpath != NULL)
@@ -122,11 +126,6 @@ void __attribute__ ((destructor)) GNUNET_PLUGIN_fini ()
       GNUNET_free (old_dlsearchpath);
       old_dlsearchpath = NULL;
     }
-
-#ifdef MINGW
-  ShutdownWinEnv ();
-#endif
-
   lt_dlexit ();
 }
 
@@ -173,6 +172,11 @@ GNUNET_PLUGIN_load (const char *library_name, void *arg)
   GNUNET_PLUGIN_Callback init;
   void *ret;
 
+  if (! initialized)
+    {
+      initialized = GNUNET_YES;
+      plugin_init ();
+    }
   libhandle = lt_dlopenext (library_name);
   if (libhandle == NULL)
     {
@@ -232,9 +236,14 @@ GNUNET_PLUGIN_unload (const char *library_name, void *arg)
     plugins = pos->next;
   else
     prev->next = pos->next;
-  // lt_dlclose (pos->handle);
+  lt_dlclose (pos->handle);
   GNUNET_free (pos->name);
   GNUNET_free (pos);
+  if (plugins == NULL)
+    {
+      plugin_fini();
+      initialized = GNUNET_NO;
+    }
   return ret;
 }