ad8afe2b16f7729708ea9cd66550f73fe1a27e61
[bbaumbach/samba-autobuild/.git] / source4 / lib / util / module.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    Copyright (C) Jelmer Vernooij 2005
5    
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2 of the License, or
9    (at your option) any later version.
10    
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15    
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20
21 /**
22  * @file
23  * @brief Module initialization function handling
24  */
25
26 #include "includes.h"
27 #include "system/dir.h"
28
29 static void *load_module(TALLOC_CTX *mem_ctx, const char *dir, const char *name)
30 {
31         char *path;
32         void *handle;
33         void *init_fn;
34
35         path = talloc_asprintf(mem_ctx, "%s/%s", dir, name);
36
37         handle = dlopen(path, RTLD_NOW);
38         if (handle == NULL) {
39                 DEBUG(0, ("Unable to open %s: %s\n", path, dlerror()));
40                 talloc_free(path);
41                 return NULL;
42         }
43
44         init_fn = dlsym(handle, "init_module");
45
46         if (init_fn == NULL) {
47                 DEBUG(0, ("Unable to find init_module() in %s: %s\n", path, dlerror()));
48                 DEBUG(1, ("Loading module '%s' failed\n", path));
49                 dlclose(handle);
50                 talloc_free(path);
51                 return NULL;
52         }
53
54         talloc_free(path);
55
56         return init_fn;
57 }
58
59 init_module_fn *load_modules(TALLOC_CTX *mem_ctx, const char *path)
60 {
61         DIR *dir;
62         struct dirent *entry;
63         int success = 0;
64         init_module_fn *ret = talloc_array(mem_ctx, init_module_fn, 2);
65
66         ret[0] = NULL;
67         
68         dir = opendir(path);
69         if (dir == NULL) {
70                 talloc_free(ret);
71                 return NULL;
72         }
73
74         while((entry = readdir(dir))) {
75                 if (!strcmp(entry->d_name, ".") || !strcmp(entry->d_name, ".."))
76                         continue;
77
78                 ret[success] = load_module(mem_ctx, path, entry->d_name);
79                 if (ret[success]) {
80                         ret = talloc_realloc(mem_ctx, ret, init_module_fn, success+2);
81                         success++;
82                         ret[success] = NULL;
83                 }
84         }
85
86         closedir(dir);
87
88         return ret;
89 }
90
91 BOOL run_init_functions(NTSTATUS (**fns) (void))
92 {
93         int i;
94         BOOL ret;
95         
96         if (fns == NULL)
97                 return True;
98         
99         for (i = 0; fns[i]; i++) { ret &= NT_STATUS_IS_OK(fns[i]()); }
100
101         return ret;
102 }