fuse: use dlsym() instead of relying on ld.so constructor functions
authorFabrice Bauzac <fbauzac@amadeus.com>
Mon, 23 Sep 2013 14:57:50 +0000 (16:57 +0200)
committerMiklos Szeredi <mszeredi@suse.cz>
Tue, 4 Feb 2014 17:22:23 +0000 (18:22 +0100)
ChangeLog
include/fuse.h
lib/fuse.c
lib/fuse_i.h

index f3270842d9f2b30f0fb3f80b99809953abf2d5c8..8ffae807793ac45679f00037b0fb95945e56a554 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2014-02-04  Miklos Szeredi <miklos@szeredi.hu>
+
+       * libfuse: Don't use constructor functions for loading modules.
+       Original patch by Fabrice Bauzac
+
 2014-01-29  Miklos Szeredi <miklos@szeredi.hu>
 
        * libfuse: Add "async_dio" and "writeback_cache" options.
index b8a93074ee3f98d10a2eecdc41784cef20422eff..a3a047ec317ef7c0abfe5fc98cc17457849e104c 100644 (file)
@@ -867,64 +867,33 @@ struct fuse_fs *fuse_fs_new(const struct fuse_operations *op, size_t op_size,
                            void *user_data);
 
 /**
- * Filesystem module
+ * Factory for creating filesystem objects
  *
- * Filesystem modules are registered with the FUSE_REGISTER_MODULE()
- * macro.
+ * The function may use and remove options from 'args' that belong
+ * to this module.
  *
- * If the "-omodules=modname:..." option is present, filesystem
- * objects are created and pushed onto the stack with the 'factory'
- * function.
- */
-struct fuse_module {
-       /**
-        * Name of filesystem
-        */
-       const char *name;
-
-       /**
-        * Factory for creating filesystem objects
-        *
-        * The function may use and remove options from 'args' that belong
-        * to this module.
-        *
-        * For now the 'fs' vector always contains exactly one filesystem.
-        * This is the filesystem which will be below the newly created
-        * filesystem in the stack.
-        *
-        * @param args the command line arguments
-        * @param fs NULL terminated filesystem object vector
-        * @return the new filesystem object
-        */
-       struct fuse_fs *(*factory)(struct fuse_args *args,
-                                  struct fuse_fs *fs[]);
-
-       struct fuse_module *next;
-       struct fusemod_so *so;
-       int ctr;
-};
-
-/**
- * Register a filesystem module
+ * For now the 'fs' vector always contains exactly one filesystem.
+ * This is the filesystem which will be below the newly created
+ * filesystem in the stack.
  *
- * This function is used by FUSE_REGISTER_MODULE and there's usually
- * no need to call it directly
+ * @param args the command line arguments
+ * @param fs NULL terminated filesystem object vector
+ * @return the new filesystem object
  */
-void fuse_register_module(struct fuse_module *mod);
-
+typedef struct fuse_fs *(*fuse_module_factory_t)(struct fuse_args *args,
+                                                struct fuse_fs *fs[]);
 /**
  * Register filesystem module
  *
- * For the parameters, see description of the fields in 'struct
- * fuse_module'
+ * If the "-omodules=@name_:..." option is present, filesystem
+ * objects are created and pushed onto the stack with the @factory_
+ * function.
+ *
+ * @name_ the name of this filesystem module
+ * @factory_ the factory function for this filesystem module
  */
-#define FUSE_REGISTER_MODULE(name_, factory_)                            \
-       static __attribute__((constructor)) void name_ ## _register(void) \
-       {                                                                 \
-               static struct fuse_module mod =                           \
-                       { #name_, factory_, NULL, NULL, 0 };              \
-               fuse_register_module(&mod);                               \
-       }
+#define FUSE_REGISTER_MODULE(name_, factory_) \
+       fuse_module_factory_t fuse_module_ ## name_ ## _factory = factory_;
 
 /** Get session from fuse object */
 struct fuse_session *fuse_get_session(struct fuse *f);
index 7508c54d1e8bd39125487c961fd8d1fb698f4b02..3f8e601a08f2abfd0366f63b03ca8111e6311bb7 100644 (file)
@@ -208,55 +208,90 @@ struct fuse_context_i {
        fuse_req_t req;
 };
 
+/* Defined by FUSE_REGISTER_MODULE() in lib/modules/subdir.c and iconv.c.  */
+extern fuse_module_factory_t fuse_module_subdir_factory;
+extern fuse_module_factory_t fuse_module_iconv_factory;
+
 static pthread_key_t fuse_context_key;
 static pthread_mutex_t fuse_context_lock = PTHREAD_MUTEX_INITIALIZER;
 static int fuse_context_ref;
-static struct fusemod_so *fuse_current_so;
-static struct fuse_module *fuse_modules;
+static struct fuse_module *fuse_modules = NULL;
 
-static int fuse_load_so_name(const char *soname)
+static int fuse_register_module(const char *name,
+                               fuse_module_factory_t factory,
+                               struct fusemod_so *so)
 {
-       struct fusemod_so *so;
+       struct fuse_module *mod;
 
-       so = calloc(1, sizeof(struct fusemod_so));
-       if (!so) {
-               fprintf(stderr, "fuse: memory allocation failed\n");
+       mod = calloc(1, sizeof(struct fuse_module));
+       if (!mod) {
+               fprintf(stderr, "fuse: failed to allocate module\n");
                return -1;
        }
-
-       fuse_current_so = so;
-       so->handle = dlopen(soname, RTLD_NOW);
-       fuse_current_so = NULL;
-       if (!so->handle) {
-               fprintf(stderr, "fuse: %s\n", dlerror());
-               goto err;
-       }
-       if (!so->ctr) {
-               fprintf(stderr, "fuse: %s did not register any modules\n",
-                       soname);
-               goto err;
+       mod->name = strdup(name);
+       if (!mod->name) {
+               fprintf(stderr, "fuse: failed to allocate module name\n");
+               free(mod);
+               return -1;
        }
-       return 0;
+       mod->factory = factory;
+       mod->ctr = 0;
+       mod->so = so;
+       if (mod->so)
+               mod->so->ctr++;
+       mod->next = fuse_modules;
+       fuse_modules = mod;
 
-err:
-       if (so->handle)
-               dlclose(so->handle);
-       free(so);
-       return -1;
+       return 0;
 }
 
+
 static int fuse_load_so_module(const char *module)
 {
-       int res;
-       char *soname = malloc(strlen(module) + 64);
-       if (!soname) {
+       int ret = -1;
+       char *tmp;
+       struct fusemod_so *so;
+       fuse_module_factory_t factory;
+
+       tmp = malloc(strlen(module) + 64);
+       if (!tmp) {
                fprintf(stderr, "fuse: memory allocation failed\n");
                return -1;
        }
-       sprintf(soname, "libfusemod_%s.so", module);
-       res = fuse_load_so_name(soname);
-       free(soname);
-       return res;
+       sprintf(tmp, "libfusemod_%s.so", module);
+       so = calloc(1, sizeof(struct fusemod_so));
+       if (!so) {
+               fprintf(stderr, "fuse: failed to allocate module so\n");
+               goto out;
+       }
+
+       so->handle = dlopen(tmp, RTLD_NOW);
+       if (so->handle == NULL) {
+               fprintf(stderr, "fuse: dlopen(%s) failed: %s\n",
+                       tmp, dlerror());
+               goto out_free_so;
+       }
+
+       sprintf(tmp, "fuse_module_%s_factory", module);
+       factory = dlsym(so->handle, tmp);
+       if (factory == NULL) {
+               fprintf(stderr, "fuse: symbol <%s> not found in module: %s\n",
+                       tmp, dlerror());
+               goto out_dlclose;
+       }
+       ret = fuse_register_module(module, factory, so);
+       if (ret)
+               goto out_dlclose;
+
+out:
+       free(tmp);
+       return ret;
+
+out_dlclose:
+       dlclose(so->handle);
+out_free_so:
+       free(so);
+       goto out;
 }
 
 static struct fuse_module *fuse_find_module(const char *module)
@@ -4342,6 +4377,18 @@ struct fuse *fuse_new(struct fuse_chan *ch, struct fuse_args *args,
        struct fuse_fs *fs;
        struct fuse_lowlevel_ops llop = fuse_path_ops;
 
+       pthread_mutex_lock(&fuse_context_lock);
+       static int builtin_modules_registered = 0;
+       /* Have the builtin modules already been registered? */
+       if (builtin_modules_registered == 0) {
+               /* If not, register them. */
+               fuse_register_module("subdir", fuse_module_subdir_factory, NULL);
+               fuse_register_module("iconv", fuse_module_iconv_factory, NULL);
+               builtin_modules_registered= 1;
+       }
+       pthread_mutex_unlock(&fuse_context_lock);
+
+
        if (fuse_create_context_key() == -1)
                goto out;
 
@@ -4522,14 +4569,3 @@ void fuse_destroy(struct fuse *f)
        fuse_delete_context_key();
 }
 
-/* called with fuse_context_lock held or during initialization (before
-   main() has been called) */
-void fuse_register_module(struct fuse_module *mod)
-{
-       mod->ctr = 0;
-       mod->so = fuse_current_so;
-       if (mod->so)
-               mod->so->ctr++;
-       mod->next = fuse_modules;
-       fuse_modules = mod;
-}
index 30fe415780d3059bc2bebd84e193253616394668..4bbcbd61b439b8d9bc131fba83b8297bc2b9f268 100644 (file)
@@ -95,6 +95,21 @@ struct fuse_ll {
        size_t bufsize;
 };
 
+/**
+ * Filesystem module
+ *
+ * Filesystem modules are registered with the FUSE_REGISTER_MODULE()
+ * macro.
+ *
+ */
+struct fuse_module {
+       char *name;
+       fuse_module_factory_t factory;
+       struct fuse_module *next;
+       struct fusemod_so *so;
+       int ctr;
+};
+
 int fuse_chan_clearfd(struct fuse_chan *ch);
 void fuse_chan_close(struct fuse_chan *ch);