merge of get_dc_name()-like code from APP_HEAD; better support password server =...
[ira/wip.git] / source3 / lib / module.c
1 /* 
2    Unix SMB/CIFS implementation.
3    module loading system
4
5    Copyright (C) Jelmer Vernooij 2002
6    
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11    
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22 #include "includes.h"
23
24 #ifdef HAVE_DLOPEN
25 NTSTATUS smb_load_module(const char *module_name)
26 {
27         void *handle;
28         init_module_function *init;
29         NTSTATUS nt_status;
30
31         /* Always try to use LAZY symbol resolving; if the plugin has 
32          * backwards compatibility, there might be symbols in the 
33          * plugin referencing to old (removed) functions
34          */
35         handle = sys_dlopen(module_name, RTLD_LAZY);
36
37         if(!handle) {
38                 DEBUG(0, ("Error loading module '%s': %s\n", module_name, sys_dlerror()));
39                 return NT_STATUS_UNSUCCESSFUL;
40         }
41
42         init = sys_dlsym(handle, "init_module");
43
44         if(!init) {
45                 DEBUG(0, ("Error trying to resolve symbol 'init_module' in %s: %s\n", module_name, sys_dlerror()));
46                 return NT_STATUS_UNSUCCESSFUL;
47         }
48
49         nt_status = init();
50
51         DEBUG(2, ("Module '%s' loaded\n", module_name));
52
53         return nt_status;
54 }
55
56 /* Load all modules in list and return number of 
57  * modules that has been successfully loaded */
58 int smb_load_modules(const char **modules)
59 {
60         int i;
61         int success = 0;
62
63         for(i = 0; modules[i]; i++){
64                 if(NT_STATUS_IS_OK(smb_load_module(modules[i]))) {
65                         success++;
66                 }
67         }
68
69         DEBUG(2, ("%d modules successfully loaded\n", success));
70
71         return success;
72 }
73
74 #else /* HAVE_DLOPEN */
75
76 NTSTATUS smb_load_module(const char *module_name)
77 {
78         DEBUG(0,("This samba executable has not been build with plugin support"));
79         return NT_STATUS_NOT_SUPPORTED;
80 }
81
82 int smb_load_modules(const char **modules)
83 {
84         DEBUG(0,("This samba executable has not been build with plugin support"));
85         return -1;
86 }
87
88 #endif /* HAVE_DLOPEN */