d4f35c0e56de42f4c8c7ea8038f3b45af333d9c7
[kai/samba.git] / source / lib / ldb / common / ldb_modules.c
1
2 /* 
3    ldb database library
4
5    Copyright (C) Simo Sorce  2004
6
7      ** NOTE! The following LGPL license applies to the ldb
8      ** library. This does NOT imply that all of Samba is released
9      ** under the LGPL
10    
11    This library is free software; you can redistribute it and/or
12    modify it under the terms of the GNU Lesser General Public
13    License as published by the Free Software Foundation; either
14    version 2 of the License, or (at your option) any later version.
15
16    This library is distributed in the hope that it will be useful,
17    but WITHOUT ANY WARRANTY; without even the implied warranty of
18    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19    Lesser General Public License for more details.
20
21    You should have received a copy of the GNU Lesser General Public
22    License along with this library; if not, write to the Free Software
23    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
24 */
25
26 /*
27  *  Name: ldb
28  *
29  *  Component: ldb modules core
30  *
31  *  Description: core modules routines
32  *
33  *  Author: Simo Sorce
34  */
35
36 #include "includes.h"
37 #include "ldb/include/ldb.h"
38 #include "ldb/include/ldb_private.h"
39 #include "dlinklist.h"
40 #include <sys/types.h> 
41 #include <sys/stat.h> 
42 #include <unistd.h> 
43
44 #ifdef HAVE_DLOPEN_DISABLED
45 #include <dlfcn.h>
46 #endif
47
48 #define LDB_MODULE_PREFIX       "modules:"
49 #define LDB_MODULE_PREFIX_LEN   8
50
51 static char *talloc_strdup_no_spaces(struct ldb_context *ldb, const char *string)
52 {
53         int i, len;
54         char *trimmed;
55
56         trimmed = talloc_strdup(ldb, string);
57         if (!trimmed) {
58                 ldb_debug(ldb, LDB_DEBUG_FATAL, "Out of Memory in talloc_strdup_trim_spaces()\n");
59                 return NULL;
60         }
61
62         len = strlen(trimmed);
63         for (i = 0; trimmed[i] != '\0'; i++) {
64                 switch (trimmed[i]) {
65                 case ' ':
66                 case '\t':
67                 case '\n':
68                         memmove(&trimmed[i], &trimmed[i + 1], len -i -1);
69                         break;
70                 }
71         }
72
73         return trimmed;
74 }
75
76
77 /* modules are called in inverse order on the stack.
78    Lets place them as an admin would think the right order is.
79    Modules order is imprtant */
80 static char **ldb_modules_list_from_string(struct ldb_context *ldb, const char *string)
81 {
82         char **modules = NULL;
83         char *modstr, *p;
84         int i;
85
86         /* spaces not admitted */
87         modstr = talloc_strdup_no_spaces(ldb, string);
88         if ( ! modstr) {
89                 return NULL;
90         }
91
92         modules = talloc_realloc(ldb, modules, char *, 2);
93         if ( ! modules ) {
94                 ldb_debug(ldb, LDB_DEBUG_FATAL, "Out of Memory in ldb_modules_list_from_string()\n");
95                 talloc_free(modstr);
96                 return NULL;
97         }
98         talloc_steal(modules, modstr);
99
100         i = 0;
101         while ((p = strrchr(modstr, ',')) != NULL) {
102                 *p = '\0';
103                 p++;
104                 modules[i] = p;
105
106                 i++;
107                 modules = talloc_realloc(ldb, modules, char *, i + 2);
108                 if ( ! modules ) {
109                         ldb_debug(ldb, LDB_DEBUG_FATAL, "Out of Memory in ldb_modules_list_from_string()\n");
110                         return NULL;
111                 }
112
113         }
114         modules[i] = modstr;
115
116         modules[i + 1] = NULL;
117
118         return modules;
119 }
120
121 int ldb_load_modules(struct ldb_context *ldb, const char *options[])
122 {
123         char **modules = NULL;
124         int i;
125
126         /* find out which modules we are requested to activate */
127
128         /* check if we have a custom module list passd as ldb option */
129         if (options) {
130                 for (i = 0; options[i] != NULL; i++) {
131                         if (strncmp(options[i], LDB_MODULE_PREFIX, LDB_MODULE_PREFIX_LEN) == 0) {
132                                 modules = ldb_modules_list_from_string(ldb, &options[i][LDB_MODULE_PREFIX_LEN]);
133                         }
134                 }
135         }
136
137         /* if not overloaded by options and the backend is not ldap try to load the modules list form ldb */
138         if ((modules == NULL) && (strcmp("ldap", ldb->modules->ops->name) != 0)) { 
139                 int ret;
140                 const char * const attrs[] = { "@LIST" , NULL};
141                 struct ldb_message **msg = NULL;
142
143                 ret = ldb_search(ldb, "@MODULES", LDB_SCOPE_BASE, "", attrs, &msg);
144                 if (ret == 0 || (ret == 1 && msg[0]->num_elements == 0)) {
145                         ldb_debug(ldb, LDB_DEBUG_TRACE, "no modules required by the db\n");
146                 } else {
147                         if (ret < 0) {
148                                 ldb_debug(ldb, LDB_DEBUG_FATAL, "ldb error (%s) occurred searching for modules, bailing out\n", ldb_errstring(ldb));
149                                 return -1;
150                         }
151                         if (ret > 1) {
152                                 ldb_debug(ldb, LDB_DEBUG_FATAL, "Too many records found, bailing out\n");
153                                 talloc_free(msg);
154                                 return -1;
155                         }
156
157                         modules = ldb_modules_list_from_string(ldb, msg[0]->elements[0].values[0].data);
158
159                 }
160
161                 talloc_free(msg);
162         }
163
164         if (modules == NULL) {
165                 ldb_debug(ldb, LDB_DEBUG_TRACE, "No modules specified for this database\n");
166                 return 0;
167         }
168
169         for (i = 0; modules[i] != NULL; i++) {
170                 struct ldb_module *current;
171
172                 if (strcmp(modules[i], "schema") == 0) {
173                         current = schema_module_init(ldb, options);
174                         if (!current) {
175                                 ldb_debug(ldb, LDB_DEBUG_FATAL, "function 'init_module' in %s fails\n", modules[i]);
176                                 return -1;
177                         }
178                         DLIST_ADD(ldb->modules, current);
179                         continue;
180                 }
181
182                 if (strcmp(modules[i], "timestamps") == 0) {
183                         current = timestamps_module_init(ldb, options);
184                         if (!current) {
185                                 ldb_debug(ldb, LDB_DEBUG_FATAL, "function 'init_module' in %s fails\n", modules[i]);
186                                 return -1;
187                         }
188                         DLIST_ADD(ldb->modules, current);
189                         continue;
190                 }
191
192 #ifdef _SAMBA_BUILD_
193                 if (strcmp(modules[i], "samldb") == 0) {
194                         current = samldb_module_init(ldb, options);
195                         if (!current) {
196                                 ldb_debug(ldb, LDB_DEBUG_FATAL, "function 'init_module' in %s fails\n", modules[i]);
197                                 return -1;
198                         }
199                         DLIST_ADD(ldb->modules, current);
200                         continue;
201                 }
202 #endif
203
204                 ldb_debug(ldb, LDB_DEBUG_WARNING, "WARNING: Module [%s] not found\n", modules[i]);
205         }
206
207         talloc_free(modules);
208         return 0; 
209 }
210
211 /*
212    helper functions to call the next module in chain
213 */
214
215 int ldb_next_search(struct ldb_module *module, 
216                     const char *base,
217                     enum ldb_scope scope,
218                     const char *expression,
219                     const char * const *attrs, struct ldb_message ***res)
220 {
221         if (!module->next) {
222                 return -1;
223         }
224         return module->next->ops->search(module->next, base, scope, expression, attrs, res);
225 }
226
227 int ldb_next_search_bytree(struct ldb_module *module, 
228                            const char *base,
229                            enum ldb_scope scope,
230                            struct ldb_parse_tree *tree,
231                            const char * const *attrs, struct ldb_message ***res)
232 {
233         if (!module->next) {
234                 return -1;
235         }
236         return module->next->ops->search_bytree(module->next, base, scope, tree, attrs, res);
237 }
238
239 int ldb_next_add_record(struct ldb_module *module, const struct ldb_message *message)
240 {
241         if (!module->next) {
242                 return -1;
243         }
244         return module->next->ops->add_record(module->next, message);
245 }
246
247 int ldb_next_modify_record(struct ldb_module *module, const struct ldb_message *message)
248 {
249         if (!module->next) {
250                 return -1;
251         }
252         return module->next->ops->modify_record(module->next, message);
253 }
254
255 int ldb_next_delete_record(struct ldb_module *module, const char *dn)
256 {
257         if (!module->next) {
258                 return -1;
259         }
260         return module->next->ops->delete_record(module->next, dn);
261 }
262
263 int ldb_next_rename_record(struct ldb_module *module, const char *olddn, const char *newdn)
264 {
265         if (!module->next) {
266                 return -1;
267         }
268         return module->next->ops->rename_record(module->next, olddn, newdn);
269 }
270
271 int ldb_next_named_lock(struct ldb_module *module, const char *lockname)
272 {
273         if (!module->next) {
274                 return -1;
275         }
276         return module->next->ops->named_lock(module->next, lockname);
277 }
278
279 int ldb_next_named_unlock(struct ldb_module *module, const char *lockname)
280 {
281         if (!module->next) {
282                 return -1;
283         }
284         return module->next->ops->named_unlock(module->next, lockname);
285 }
286
287 const char *ldb_next_errstring(struct ldb_module *module)
288 {
289         if (!module->next) {
290                 return NULL;
291         }
292         return module->next->ops->errstring(module->next);
293 }
294