2 Unix SMB/CIFS implementation.
3 Samba utility functions
4 Copyright (C) Jelmer Vernooij 2002-2003,2005-2007
5 Copyright (C) Stefan (metze) Metzmacher 2003
6 Copyright (C) Andrew Bartlett 2011
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #include "dynconfig/dynconfig.h"
24 #include "lib/util/samba_modules.h"
25 #include "lib/util/util_paths.h"
26 #include "system/filesys.h"
27 #include "system/dir.h"
30 * Obtain the init function from a shared library file
32 init_module_fn
load_module(const char *path
, bool is_probe
, void **handle_out
)
38 /* This should be a WAF build, where modules should be built
39 * with no undefined symbols and are already linked against
40 * the libraries that they are loaded by */
41 handle
= dlopen(path
, RTLD_NOW
);
43 /* This call should reset any possible non-fatal errors that
44 occurred since last call to dl* functions */
48 int level
= is_probe
? 5 : 0;
49 DEBUG(level
, ("Error loading module '%s': %s\n", path
, error
? error
: ""));
53 init_fn
= (init_module_fn
)dlsym(handle
, SAMBA_INIT_MODULE
);
55 /* we could check dlerror() to determine if it worked, because
56 dlsym() can validly return NULL, but what would we do with
57 a NULL pointer as a module init function? */
59 if (init_fn
== NULL
) {
60 DEBUG(0, ("Unable to find %s() in %s: %s\n",
61 SAMBA_INIT_MODULE
, path
, dlerror()));
62 DEBUG(1, ("Loading module '%s' failed\n", path
));
71 return (init_module_fn
)init_fn
;
75 * Obtain list of init functions from the modules in the specified
78 static init_module_fn
*load_modules(TALLOC_CTX
*mem_ctx
, const char *path
)
84 init_module_fn
*ret
= talloc_array(mem_ctx
, init_module_fn
, 2);
94 while((entry
= readdir(dir
))) {
95 if (ISDOT(entry
->d_name
) || ISDOTDOT(entry
->d_name
))
98 filename
= talloc_asprintf(mem_ctx
, "%s/%s", path
, entry
->d_name
);
100 ret
[success
] = load_module(filename
, true, NULL
);
102 ret
= talloc_realloc(mem_ctx
, ret
, init_module_fn
, success
+2);
107 talloc_free(filename
);
116 * Run the specified init functions.
118 * @return true if all functions ran successfully, false otherwise
120 bool run_init_functions(TALLOC_CTX
*ctx
, init_module_fn
*fns
)
128 for (i
= 0; fns
[i
]; i
++) { ret
&= (bool)NT_STATUS_IS_OK(fns
[i
](ctx
)); }
134 * Load the initialization functions from DSO files for a specific subsystem.
136 * Will return an array of function pointers to initialization functions
139 init_module_fn
*load_samba_modules(TALLOC_CTX
*mem_ctx
, const char *subsystem
)
141 char *path
= modules_path(mem_ctx
, subsystem
);
144 ret
= load_modules(mem_ctx
, path
);
151 static NTSTATUS
load_module_absolute_path(const char *module_path
,
158 DBG_INFO("%s module '%s'\n",
159 is_probe
? "Probing" : "Loading",
162 init
= load_module(module_path
, is_probe
, &handle
);
164 return NT_STATUS_UNSUCCESSFUL
;
167 DBG_NOTICE("Module '%s' loaded\n", module_path
);
170 if (!NT_STATUS_IS_OK(status
)) {
171 DBG_ERR("Module '%s' initialization failed: %s\n",
173 get_friendly_nt_error_msg(status
));
181 /* Load all modules in list and return number of
182 * modules that has been successfully loaded */
183 int smb_load_all_modules_absoute_path(const char **modules
)
188 for(i
= 0; modules
[i
] != NULL
; i
++) {
189 const char *module
= modules
[i
];
192 if (module
[0] != '/') {
196 status
= load_module_absolute_path(module
, false);
197 if (NT_STATUS_IS_OK(status
)) {
202 DEBUG(2, ("%d modules successfully loaded\n", success
));
208 * @brief Check if a module exist and load it.
210 * @param[in] subsystem The name of the subsystem the module belongs too.
212 * @param[in] module The name of the module
214 * @return A NTSTATUS code
216 NTSTATUS
smb_probe_module(const char *subsystem
, const char *module
)
219 char *module_path
= NULL
;
220 TALLOC_CTX
*tmp_ctx
= talloc_stackframe();
222 if (subsystem
== NULL
) {
223 status
= NT_STATUS_INVALID_PARAMETER
;
226 if (module
== NULL
) {
227 status
= NT_STATUS_INVALID_PARAMETER
;
231 if (strchr(module
, '/')) {
232 status
= NT_STATUS_INVALID_PARAMETER
;
236 module_path
= talloc_asprintf(tmp_ctx
,
238 modules_path(tmp_ctx
, subsystem
),
241 if (module_path
== NULL
) {
242 status
= NT_STATUS_NO_MEMORY
;
246 status
= load_module_absolute_path(module_path
, true);
249 TALLOC_FREE(tmp_ctx
);
254 * @brief Check if a module exist and load it.
256 * Warning: Using this function can have security implecations!
258 * @param[in] subsystem The name of the subsystem the module belongs too.
260 * @param[in] module Load a module using an absolute path.
262 * @return A NTSTATUS code
264 NTSTATUS
smb_probe_module_absolute_path(const char *module
)
266 if (module
== NULL
) {
267 return NT_STATUS_INVALID_PARAMETER
;
269 if (module
[0] != '/') {
270 return NT_STATUS_INVALID_PARAMETER
;
273 return load_module_absolute_path(module
, true);
277 * @brief Load a module.
279 * @param[in] subsystem The name of the subsystem the module belongs too.
281 * @param[in] module Check if a module exists and load it.
283 * @return A NTSTATUS code
285 NTSTATUS
smb_load_module(const char *subsystem
, const char *module
)
288 char *module_path
= NULL
;
289 TALLOC_CTX
*tmp_ctx
= talloc_stackframe();
291 if (subsystem
== NULL
) {
292 status
= NT_STATUS_INVALID_PARAMETER
;
295 if (module
== NULL
) {
296 status
= NT_STATUS_INVALID_PARAMETER
;
300 if (strchr(module
, '/')) {
301 status
= NT_STATUS_INVALID_PARAMETER
;
305 module_path
= talloc_asprintf(tmp_ctx
,
307 modules_path(tmp_ctx
, subsystem
),
310 if (module_path
== NULL
) {
311 status
= NT_STATUS_NO_MEMORY
;
315 status
= load_module_absolute_path(module_path
, false);
318 TALLOC_FREE(tmp_ctx
);