This commit was manufactured by cvs2svn to create branch 'SAMBA_3_0'.(This used to...
[ira/wip.git] / source3 / lib / module.c
index 2498f6de2c54cbc8681d37a9d0c6ffe72b4ba7bf..811efae3114014c72257bd03880042795c85cd86 100644 (file)
@@ -2,7 +2,8 @@
    Unix SMB/CIFS implementation.
    module loading system
 
-   Copyright (C) Jelmer Vernooij 2002
+   Copyright (C) Jelmer Vernooij 2002-2003
+   Copyright (C) Stefan (metze) Metzmacher 2003
    
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -26,7 +27,7 @@ NTSTATUS smb_load_module(const char *module_name)
 {
        void *handle;
        init_module_function *init;
-       NTSTATUS nt_status;
+       NTSTATUS status;
        const char *error;
 
        /* Always try to use LAZY symbol resolving; if the plugin has 
@@ -50,19 +51,207 @@ NTSTATUS smb_load_module(const char *module_name)
                return NT_STATUS_UNSUCCESSFUL;
        }
 
-       nt_status = init();
+       status = init();
 
        DEBUG(2, ("Module '%s' loaded\n", module_name));
 
-       return nt_status;
+       return status;
+}
+
+/* Load all modules in list and return number of 
+ * modules that has been successfully loaded */
+int smb_load_modules(const char **modules)
+{
+       int i;
+       int success = 0;
+
+       for(i = 0; modules[i]; i++){
+               if(NT_STATUS_IS_OK(smb_load_module(modules[i]))) {
+                       success++;
+               }
+       }
+
+       DEBUG(2, ("%d modules successfully loaded\n", success));
+
+       return success;
+}
+
+NTSTATUS smb_probe_module(const char *subsystem, const char *module)
+{
+       pstring full_path;
+       
+       /* Check for absolute path */
+
+       /* if we make any 'samba multibyte string' 
+          calls here, we break 
+          for loading string modules */
+       if (module[0] == '/')
+               return smb_load_module(module);
+       
+       pstrcpy(full_path, lib_path(subsystem));
+       pstrcat(full_path, "/");
+       pstrcat(full_path, module);
+       pstrcat(full_path, ".");
+       pstrcat(full_path, shlib_ext());
+
+       DEBUG(5, ("Probing module %s: Trying to load from %s\n", module, full_path));
+       
+       return smb_load_module(full_path);
 }
 
 #else /* HAVE_DLOPEN */
 
 NTSTATUS smb_load_module(const char *module_name)
 {
-       DEBUG(0,("This samba executable has not been build with plugin support"));
+       DEBUG(0,("This samba executable has not been built with plugin support\n"));
+       return NT_STATUS_NOT_SUPPORTED;
+}
+
+int smb_load_modules(const char **modules)
+{
+       DEBUG(0,("This samba executable has not been built with plugin support\n"));
+       return -1;
+}
+
+NTSTATUS smb_probe_module(const char *subsystem, const char *module)
+{
+       DEBUG(0,("This samba executable has not been built with plugin support, not probing\n")); 
        return NT_STATUS_NOT_SUPPORTED;
 }
 
 #endif /* HAVE_DLOPEN */
+
+void init_modules(void)
+{
+       /* FIXME: This can cause undefined symbol errors :
+        *  smb_register_vfs() isn't available in nmbd, for example */
+       if(lp_preload_modules()) 
+               smb_load_modules(lp_preload_modules());
+}
+
+
+/*************************************************************************
+ * This functions /path/to/foobar.so -> foobar
+ ************************************************************************/
+void module_path_get_name(const char *path, pstring name)
+{
+       char *s;
+
+       /* First, make the path relative */
+       s = strrchr(path, '/');
+       if(s) pstrcpy(name, s+1);
+       else pstrcpy(name, path);
+       
+       if (dyn_SHLIBEXT && *dyn_SHLIBEXT && strlen(dyn_SHLIBEXT) < strlen(name)) {
+               int n = strlen(name) - strlen(dyn_SHLIBEXT);
+               
+               /* Remove extension if necessary */
+               if (name[n-1] == '.' && !strcmp(name+n, dyn_SHLIBEXT)) {
+                       name[n-1] = '\0';
+               }
+       }
+}
+
+
+/***************************************************************************
+ * This Function registers a idle event
+ *
+ * the registered funtions are run periodically
+ * and maybe shutdown idle connections (e.g. to an LDAP server)
+ ***************************************************************************/
+static smb_idle_event_struct *smb_idle_event_list = NULL;
+NTSTATUS smb_register_idle_event(smb_idle_event_struct *idle_event)
+{
+       if (!idle_event) {
+               return NT_STATUS_INVALID_PARAMETER;
+       }
+
+       idle_event->last_run = 0;
+
+       DLIST_ADD(smb_idle_event_list,idle_event);
+
+       return NT_STATUS_OK;
+}
+
+NTSTATUS smb_unregister_idle_event(smb_idle_event_struct *idle_event)
+{
+       if (!idle_event) {
+               return NT_STATUS_INVALID_PARAMETER;
+       }
+
+       DLIST_REMOVE(smb_idle_event_list,idle_event);
+
+       return NT_STATUS_OK;
+}
+
+void smb_run_idle_events(time_t now)
+{
+       smb_idle_event_struct *tmp_event = smb_idle_event_list;
+
+       while (tmp_event) {
+               time_t interval;
+
+               if (tmp_event->fn) {
+                       if (tmp_event->interval >= SMB_IDLE_EVENT_MIN_INTERVAL) {
+                               interval = tmp_event->interval;
+                       } else {
+                               interval = SMB_IDLE_EVENT_DEFAULT_INTERVAL;
+                       }
+                       if (now >(tmp_event->last_run+interval)) {
+                               tmp_event->fn(&tmp_event,now);
+                               tmp_event->last_run = now;
+                       }
+               }
+
+               tmp_event = tmp_event->next;
+       }
+
+       return;
+}
+
+/***************************************************************************
+ * This Function registers a exit event
+ *
+ * the registered funtions are run on exit()
+ * and maybe shutdown idle connections (e.g. to an LDAP server)
+ ***************************************************************************/
+static smb_exit_event_struct *smb_exit_event_list = NULL;
+NTSTATUS smb_register_exit_event(smb_exit_event_struct *exit_event)
+{
+       if (!exit_event) {
+               return NT_STATUS_INVALID_PARAMETER;
+       }
+
+       DLIST_ADD(smb_exit_event_list,exit_event);
+
+       return NT_STATUS_OK;
+}
+
+NTSTATUS smb_unregister_exit_event(smb_exit_event_struct *exit_event)
+{
+       if (!exit_event) {
+               return NT_STATUS_INVALID_PARAMETER;
+       }
+
+       DLIST_REMOVE(smb_exit_event_list,exit_event);
+
+       return NT_STATUS_OK;
+}
+
+void smb_run_exit_events(void)
+{
+       smb_exit_event_struct *tmp_event = smb_exit_event_list;
+
+       while (tmp_event) {
+               if (tmp_event->fn) {
+                       tmp_event->fn(&tmp_event);
+               }
+               tmp_event = tmp_event->next;
+       }
+
+       /* run exit_events only once */
+       smb_exit_event_list = NULL;
+
+       return;
+}
+