Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Christopher Ng
OpenLDAP
Commits
e7c5b684
Commit
e7c5b684
authored
18 years ago
by
Howard Chu
Browse files
Options
Downloads
Patches
Plain Diff
Rework module_unload API
parent
a031b995
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
servers/slapd/module.c
+33
-6
33 additions, 6 deletions
servers/slapd/module.c
with
33 additions
and
6 deletions
servers/slapd/module.c
+
33
−
6
View file @
e7c5b684
...
...
@@ -44,11 +44,12 @@ struct module_regtable_t {
typedef
struct
module_loaded_t
{
struct
module_loaded_t
*
next
;
lt_dlhandle
lib
;
char
name
[
1
];
}
module_loaded_t
;
module_loaded_t
*
module_list
=
NULL
;
static
int
module_unload
(
module_loaded_t
*
module
);
static
int
module_
int_
unload
(
module_loaded_t
*
module
);
#ifdef HAVE_EBCDIC
static
char
ebuf
[
BUFSIZ
];
...
...
@@ -74,7 +75,7 @@ int module_kill (void)
{
/* unload all modules before shutdown */
while
(
module_list
!=
NULL
)
{
module_unload
(
module_list
);
module_
int_
unload
(
module_list
);
}
if
(
lt_dlexit
())
{
...
...
@@ -91,6 +92,30 @@ int module_kill (void)
return
0
;
}
void
*
module_handle
(
const
char
*
file_name
)
{
module_loaded_t
*
module
;
for
(
module
=
module_list
;
module
;
module
=
module
->
next
)
{
if
(
!
strcmp
(
module
->
name
,
file_name
))
{
return
module
;
}
}
return
NULL
;
}
int
module_unload
(
const
char
*
file_name
)
{
module_loaded_t
*
module
;
module
=
module_handle
(
file_name
);
if
(
module
)
{
module_int_unload
(
module
);
return
0
;
}
return
-
1
;
/* not found */
}
int
module_load
(
const
char
*
file_name
,
int
argc
,
char
*
argv
[])
{
module_loaded_t
*
module
=
NULL
;
...
...
@@ -103,13 +128,15 @@ int module_load(const char* file_name, int argc, char *argv[])
#define file file_name
#endif
module
=
(
module_loaded_t
*
)
ch_calloc
(
1
,
sizeof
(
module_loaded_t
));
module
=
(
module_loaded_t
*
)
ch_calloc
(
1
,
sizeof
(
module_loaded_t
)
+
strlen
(
file_name
));
if
(
module
==
NULL
)
{
Debug
(
LDAP_DEBUG_ANY
,
"module_load failed: (%s) out of memory
\n
"
,
file_name
,
0
,
0
);
return
-
1
;
}
strcpy
(
module
->
name
,
file_name
);
#ifdef HAVE_EBCDIC
strcpy
(
file
,
file_name
);
...
...
@@ -183,7 +210,7 @@ int module_load(const char* file_name, int argc, char *argv[])
Debug
(
LDAP_DEBUG_CONFIG
,
"module %s: unknown registration type (%d)
\n
"
,
file_name
,
rc
,
0
);
module_unload
(
module
);
module_
int_
unload
(
module
);
return
-
1
;
}
...
...
@@ -192,7 +219,7 @@ int module_load(const char* file_name, int argc, char *argv[])
Debug
(
LDAP_DEBUG_CONFIG
,
"module %s: %s module could not be registered
\n
"
,
file_name
,
module_regtable
[
rc
].
type
,
0
);
module_unload
(
module
);
module_
int_
unload
(
module
);
return
rc
;
}
...
...
@@ -227,7 +254,7 @@ void *module_resolve (const void *module, const char *name)
return
(
lt_dlsym
(((
module_loaded_t
*
)
module
)
->
lib
,
name
));
}
static
int
module_unload
(
module_loaded_t
*
module
)
static
int
module_
int_
unload
(
module_loaded_t
*
module
)
{
module_loaded_t
*
mod
;
MODULE_TERM_FN
terminate
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment