]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/module.c
More CLDAP tweaks, to differentiate between real LDAPv2 CLDAP and "other"
[openldap] / servers / slapd / module.c
index 4559be0e0cf556c6b4b240de504e9a2a75544fbd..9ccac73ac55350436d60a2b9f3c29969c8a4a300 100644 (file)
@@ -40,7 +40,13 @@ int module_init (void)
 {
        if (lt_dlinit()) {
                const char *error = lt_dlerror();
+#ifdef NEW_LOGGING
+               LDAP_LOG(( "module", LDAP_LEVEL_CRIT,
+                          "module_init: lt_ldinit failed: %s\n", error ));
+#else
                Debug(LDAP_DEBUG_ANY, "lt_dlinit failed: %s\n", error, 0, 0);
+#endif
+
                return -1;
        }
        return 0;
@@ -55,7 +61,13 @@ int module_kill (void)
 
        if (lt_dlexit()) {
                const char *error = lt_dlerror();
+#ifdef NEW_LOGGING
+               LDAP_LOG(( "module", LDAP_LEVEL_CRIT,
+                          "module_kill: lt_dlexit failed: %s\n", error ));
+#else
                Debug(LDAP_DEBUG_ANY, "lt_dlexit failed: %s\n", error, 0, 0);
+#endif
+
                return -1;
        }
        return 0;
@@ -70,8 +82,14 @@ int module_load(const char* file_name, int argc, char *argv[])
 
        module = (module_loaded_t *)ch_calloc(1, sizeof(module_loaded_t));
        if (module == NULL) {
+#ifdef NEW_LOGGING
+               LDAP_LOG(( "module", LDAP_LEVEL_CRIT,
+                          "module_load:  (%s) out of memory.\n", file_name ));
+#else
                Debug(LDAP_DEBUG_ANY, "module_load failed: (%s) out of memory\n", file_name,
                        0, 0);
+#endif
+
                return -1;
        }
 
@@ -82,17 +100,37 @@ int module_load(const char* file_name, int argc, char *argv[])
         */
        if ((module->lib = lt_dlopen(file_name)) == NULL) {
                error = lt_dlerror();
+#ifdef NEW_LOGGING
+               LDAP_LOG(( "module", LDAP_LEVEL_CRIT,
+                          "module_load: lt_dlopen failed: (%s) %s.\n",
+                          file_name, error ));
+#else
                Debug(LDAP_DEBUG_ANY, "lt_dlopen failed: (%s) %s\n", file_name,
                        error, 0);
+#endif
+
                ch_free(module);
                return -1;
        }
 
+#ifdef NEW_LOGGING
+       LDAP_LOG(( "module", LDAP_LEVEL_INFO,
+                  "module_load: loaded module %s\n", file_name ));
+#else
        Debug(LDAP_DEBUG_CONFIG, "loaded module %s\n", file_name, 0, 0);
+#endif
+
    
        if ((initialize = lt_dlsym(module->lib, "init_module")) == NULL) {
+#ifdef NEW_LOGGING
+               LDAP_LOG(( "module", LDAP_LEVEL_ERR,
+                          "module_load: module %s : no init_module() function found\n",
+                          file_name ));
+#else
                Debug(LDAP_DEBUG_CONFIG, "module %s: no init_module() function found\n",
                        file_name, 0, 0);
+#endif
+
                lt_dlclose(module->lib);
                ch_free(module);
                return -1;
@@ -115,8 +153,14 @@ int module_load(const char* file_name, int argc, char *argv[])
         */
        rc = initialize(argc, argv);
        if (rc == -1) {
+#ifdef NEW_LOGGING
+               LDAP_LOG(( "module", LDAP_LEVEL_ERR,
+                          "module_load:  module %s init_module() failed\n", file_name));
+#else
                Debug(LDAP_DEBUG_CONFIG, "module %s: init_module() failed\n",
                        file_name, 0, 0);
+#endif
+
                lt_dlclose(module->lib);
                ch_free(module);
                return rc;
@@ -125,16 +169,29 @@ int module_load(const char* file_name, int argc, char *argv[])
        if (rc >= (sizeof(module_regtable) / sizeof(struct module_regtable_t))
                || module_regtable[rc].proc == NULL)
        {
+#ifdef NEW_LOGGING
+               LDAP_LOG(( "module", LDAP_LEVEL_ERR,
+                          "module_load: module %s: unknown registration type (%d).\n", file_name));
+#else
                Debug(LDAP_DEBUG_CONFIG, "module %s: unknown registration type (%d)\n",
                        file_name, rc, 0);
+#endif
+
                module_unload(module);
                return -1;
        }
 
        rc = (module_regtable[rc].proc)(module, file_name);
        if (rc != 0) {
+#ifdef NEW_LOGGING
+               LDAP_LOG(( "module", LDAP_LEVEL_ERR,
+                          "module_load: module %s:%s could not be registered.\n",
+                          file_name, module_regtable[rc].type ));
+#else
                Debug(LDAP_DEBUG_CONFIG, "module %s: %s module could not be registered\n",
                        file_name, module_regtable[rc].type, 0);
+#endif
+
                module_unload(module);
                return rc;
        }
@@ -142,8 +199,15 @@ int module_load(const char* file_name, int argc, char *argv[])
        module->next = module_list;
        module_list = module;
 
+#ifdef NEW_LOGGING
+       LDAP_LOG(( "module", LDAP_LEVEL_INFO,
+                  "module_load: module %s:%s registered\n", file_name,
+                  module_regtable[rc].type ));
+#else
        Debug(LDAP_DEBUG_CONFIG, "module %s: %s module registered\n",
                file_name, module_regtable[rc].type, 0);
+#endif
+
        return 0;
 }