s4:registry - move some common constraint checks to the "local" backend
[kai/samba-autobuild/.git] / source4 / lib / registry / ldb.c
1 /*
2    Unix SMB/CIFS implementation.
3    Registry interface
4    Copyright (C) 2004-2007, Jelmer Vernooij, jelmer@samba.org
5    Copyright (C) 2008-2010, Matthias Dieter Wallnöfer, mdw@samba.org
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 3 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, see <http://www.gnu.org/licenses/>.
19 */
20
21 #include "includes.h"
22 #include "registry.h"
23 #include "lib/ldb/include/ldb.h"
24 #include "lib/ldb/include/ldb_errors.h"
25 #include "ldb_wrap.h"
26 #include "librpc/gen_ndr/winreg.h"
27 #include "param/param.h"
28
29 static struct hive_operations reg_backend_ldb;
30
31 struct ldb_key_data
32 {
33         struct hive_key key;
34         struct ldb_context *ldb;
35         struct ldb_dn *dn;
36         struct ldb_message **subkeys, **values;
37         unsigned int subkey_count, value_count;
38         const char *classname;
39 };
40
41 static void reg_ldb_unpack_value(TALLOC_CTX *mem_ctx,
42                                  struct ldb_message *msg,
43                                  const char **name, uint32_t *type,
44                                  DATA_BLOB *data)
45 {
46         const struct ldb_val *val;
47         uint32_t value_type;
48
49         if (name != NULL) {
50                 *name = talloc_strdup(mem_ctx,
51                                       ldb_msg_find_attr_as_string(msg, "value",
52                                       ""));
53         }
54
55         value_type = ldb_msg_find_attr_as_uint(msg, "type", 0);
56         *type = value_type;
57
58         val = ldb_msg_find_ldb_val(msg, "data");
59
60         switch (value_type)
61         {
62         case REG_SZ:
63         case REG_EXPAND_SZ:
64                 if (val != NULL) {
65                         /* The data should be provided as UTF16 string */
66                         convert_string_talloc(mem_ctx, CH_UTF8, CH_UTF16,
67                                               val->data, val->length,
68                                               (void **)&data->data, &data->length, false);
69                 } else {
70                         data->data = NULL;
71                         data->length = 0;
72                 }
73                 break;
74
75         case REG_DWORD:
76         case REG_DWORD_BIG_ENDIAN:
77                 if (val != NULL) {
78                         /* The data is a plain DWORD */
79                         uint32_t tmp = strtoul((char *)val->data, NULL, 0);
80                         data->data = talloc_size(mem_ctx, sizeof(uint32_t));
81                         if (data->data != NULL) {
82                                 SIVAL(data->data, 0, tmp);
83                         }
84                         data->length = sizeof(uint32_t);
85                 } else {
86                         data->data = NULL;
87                         data->length = 0;
88                 }
89                 break;
90
91         case REG_QWORD:
92                 if (val != NULL) {
93                         /* The data is a plain QWORD */
94                         uint64_t tmp = strtoull((char *)val->data, NULL, 0);
95                         data->data = talloc_size(mem_ctx, sizeof(uint64_t));
96                         if (data->data != NULL) {
97                                 SBVAL(data->data, 0, tmp);
98                         }
99                         data->length = sizeof(uint64_t);
100                 } else {
101                         data->data = NULL;
102                         data->length = 0;
103                 }
104                 break;
105
106         case REG_BINARY:
107         default:
108                 if (val != NULL) {
109                         data->data = talloc_memdup(mem_ctx, val->data,
110                                                    val->length);
111                         data->length = val->length;
112                 } else {
113                         data->data = NULL;
114                         data->length = 0;
115                 }
116                 break;
117         }
118 }
119
120 static struct ldb_message *reg_ldb_pack_value(struct ldb_context *ctx,
121                                               TALLOC_CTX *mem_ctx,
122                                               const char *name,
123                                               uint32_t type, DATA_BLOB data)
124 {
125         struct ldb_message *msg;
126         char *name_dup, *type_str;
127         int ret;
128
129         msg = talloc_zero(mem_ctx, struct ldb_message);
130         if (msg == NULL) {
131                 return NULL;
132         }
133
134         name_dup = talloc_strdup(msg, name);
135         if (name_dup == NULL) {
136                 talloc_free(msg);
137                 return NULL;
138         }
139
140         ret = ldb_msg_add_string(msg, "value", name_dup);
141         if (ret != LDB_SUCCESS) {
142                 talloc_free(msg);
143                 return NULL;
144         }
145
146         switch (type) {
147         case REG_SZ:
148         case REG_EXPAND_SZ:
149                 if ((data.length > 0) && (data.data != NULL)) {
150                         struct ldb_val *val;
151                         bool ret2 = false;
152
153                         val = talloc_zero(msg, struct ldb_val);
154                         if (val == NULL) {
155                                 talloc_free(msg);
156                                 return NULL;
157                         }
158
159                         /* The data is provided as UTF16 string */
160                         ret2 = convert_string_talloc(mem_ctx, CH_UTF16, CH_UTF8,
161                                                      (void *)data.data, data.length,
162                                                      (void **)&val->data, &val->length,
163                                                      false);
164                         if (ret2) {
165                                 ret = ldb_msg_add_value(msg, "data", val, NULL);
166                         } else {
167                                 /* workaround for non-standard data */
168                                 ret = ldb_msg_add_empty(msg, "data", LDB_FLAG_MOD_DELETE, NULL);
169                         }
170                 } else {
171                         ret = ldb_msg_add_empty(msg, "data", LDB_FLAG_MOD_DELETE, NULL);
172                 }
173                 break;
174
175         case REG_DWORD:
176         case REG_DWORD_BIG_ENDIAN:
177                 if ((data.length > 0) && (data.data != NULL)) {
178                         if (data.length == sizeof(uint32_t)) {
179                                 char *conv_str;
180
181                                 conv_str = talloc_asprintf(msg, "0x%8.8x",
182                                                            IVAL(data.data, 0));
183                                 if (conv_str == NULL) {
184                                         talloc_free(msg);
185                                         return NULL;
186                                 }
187                                 ret = ldb_msg_add_string(msg, "data", conv_str);
188                         } else {
189                                 /* workaround for non-standard data */
190                                 talloc_free(msg);
191                                 return NULL;
192                         }
193                 } else {
194                         ret = ldb_msg_add_empty(msg, "data", LDB_FLAG_MOD_DELETE, NULL);
195                 }
196                 break;
197
198         case REG_QWORD:
199                 if ((data.length > 0) && (data.data != NULL)) {
200                         if (data.length == sizeof(uint64_t)) {
201                                 char *conv_str;
202
203                                 conv_str = talloc_asprintf(msg, "0x%16.16llx",
204                                                            BVAL(data.data, 0));
205                                 if (conv_str == NULL) {
206                                         talloc_free(msg);
207                                         return NULL;
208                                 }
209                                 ret = ldb_msg_add_string(msg, "data", conv_str);
210                         } else {
211                                 /* workaround for non-standard data */
212                                 talloc_free(msg);
213                                 return NULL;
214
215                         }
216                 } else {
217                         ret = ldb_msg_add_empty(msg, "data", LDB_FLAG_MOD_DELETE, NULL);
218                 }
219                 break;
220
221         case REG_BINARY:
222         default:
223                 if ((data.length > 0) && (data.data != NULL)) {
224                         ret = ldb_msg_add_value(msg, "data", &data, NULL);
225                 } else {
226                         ret = ldb_msg_add_empty(msg, "data", LDB_FLAG_MOD_DELETE, NULL);
227                 }
228                 break;
229         }
230
231         if (ret != LDB_SUCCESS) {
232                 talloc_free(msg);
233                 return NULL;
234         }
235
236         type_str = talloc_asprintf(mem_ctx, "%u", type);
237         if (type_str == NULL) {
238                 talloc_free(msg);
239                 return NULL;
240         }
241
242         ret = ldb_msg_add_string(msg, "type", type_str);
243         if (ret != LDB_SUCCESS) {
244                 talloc_free(msg);
245                 return NULL;
246         }
247
248         return msg;
249 }
250
251 static char *reg_ldb_escape(TALLOC_CTX *mem_ctx, const char *value)
252 {
253         struct ldb_val val;
254
255         val.data = discard_const_p(uint8_t, value);
256         val.length = strlen(value);
257
258         return ldb_dn_escape_value(mem_ctx, val);
259 }
260
261 static int reg_close_ldb_key(struct ldb_key_data *key)
262 {
263         if (key->subkeys != NULL) {
264                 talloc_free(key->subkeys);
265                 key->subkeys = NULL;
266         }
267
268         if (key->values != NULL) {
269                 talloc_free(key->values);
270                 key->values = NULL;
271         }
272         return 0;
273 }
274
275 static struct ldb_dn *reg_path_to_ldb(TALLOC_CTX *mem_ctx,
276                                       const struct hive_key *from,
277                                       const char *path, const char *add)
278 {
279         struct ldb_dn *ret;
280         char *mypath;
281         char *begin;
282         struct ldb_key_data *kd = talloc_get_type(from, struct ldb_key_data);
283         struct ldb_context *ldb = kd->ldb;
284
285         mypath = talloc_strdup(mem_ctx, path);
286         if (mypath == NULL) {
287                 return NULL;
288         }
289
290         ret = ldb_dn_new(mem_ctx, ldb, add);
291         if (!ldb_dn_validate(ret)) {
292                 talloc_free(ret);
293                 return NULL;
294         }
295
296         if (!ldb_dn_add_base(ret, kd->dn)) {
297                 talloc_free(ret);
298                 return NULL;
299         }
300
301         while (mypath[0] != '\0') {
302                 begin = strchr(mypath, '\\');
303                 if (begin != NULL) {
304                         *begin = '\0';
305                 }
306
307                 if (!ldb_dn_add_child_fmt(ret, "key=%s",
308                                           reg_ldb_escape(mem_ctx, mypath))) {
309                         talloc_free(ret);
310                         return NULL;
311                 }
312
313                 if (begin != NULL) {
314                         mypath = begin + 1;
315                 } else {
316                         break;
317                 }
318         }
319
320         return ret;
321 }
322
323 static WERROR cache_subkeys(struct ldb_key_data *kd)
324 {
325         struct ldb_context *c = kd->ldb;
326         struct ldb_result *res;
327         int ret;
328
329         ret = ldb_search(c, c, &res, kd->dn, LDB_SCOPE_ONELEVEL,
330                          NULL, "(key=*)");
331         if (ret != LDB_SUCCESS) {
332                 DEBUG(0, ("Error getting subkeys for '%s': %s\n",
333                         ldb_dn_get_linearized(kd->dn), ldb_errstring(c)));
334                 return WERR_FOOBAR;
335         }
336
337         kd->subkey_count = res->count;
338         kd->subkeys = talloc_steal(kd, res->msgs);
339         talloc_free(res);
340
341         return WERR_OK;
342 }
343
344 static WERROR cache_values(struct ldb_key_data *kd)
345 {
346         struct ldb_context *c = kd->ldb;
347         struct ldb_result *res;
348         int ret;
349
350         ret = ldb_search(c, c, &res, kd->dn, LDB_SCOPE_ONELEVEL,
351                          NULL, "(value=*)");
352         if (ret != LDB_SUCCESS) {
353                 DEBUG(0, ("Error getting values for '%s': %s\n",
354                         ldb_dn_get_linearized(kd->dn), ldb_errstring(c)));
355                 return WERR_FOOBAR;
356         }
357
358         kd->value_count = res->count;
359         kd->values = talloc_steal(kd, res->msgs);
360         talloc_free(res);
361
362         return WERR_OK;
363 }
364
365
366 static WERROR ldb_get_subkey_by_id(TALLOC_CTX *mem_ctx,
367                                    const struct hive_key *k, uint32_t idx,
368                                    const char **name,
369                                    const char **classname,
370                                    NTTIME *last_mod_time)
371 {
372         struct ldb_key_data *kd = talloc_get_type(k, struct ldb_key_data);
373
374         /* Initialization */
375         if (name != NULL)
376                 *name = NULL;
377         if (classname != NULL)
378                 *classname = NULL;
379         if (last_mod_time != NULL)
380                 *last_mod_time = 0; /* TODO: we need to add this to the
381                                                 ldb backend properly */
382
383         /* Do a search if necessary */
384         if (kd->subkeys == NULL) {
385                 W_ERROR_NOT_OK_RETURN(cache_subkeys(kd));
386         }
387
388         if (idx >= kd->subkey_count)
389                 return WERR_NO_MORE_ITEMS;
390
391         if (name != NULL)
392                 *name = talloc_strdup(mem_ctx,
393                                       ldb_msg_find_attr_as_string(kd->subkeys[idx], "key", NULL));
394         if (classname != NULL)
395                 *classname = talloc_strdup(mem_ctx,
396                                            ldb_msg_find_attr_as_string(kd->subkeys[idx], "classname", NULL));
397
398         return WERR_OK;
399 }
400
401 static WERROR ldb_get_default_value(TALLOC_CTX *mem_ctx,
402                                     const struct hive_key *k,
403                                     const char **name, uint32_t *data_type,
404                                     DATA_BLOB *data)
405 {
406         struct ldb_key_data *kd = talloc_get_type(k, struct ldb_key_data);
407         struct ldb_context *c = kd->ldb;
408         const char* attrs[] = { "data", "type", NULL };
409         struct ldb_result *res;
410         int ret;
411
412         ret = ldb_search(c, mem_ctx, &res, kd->dn, LDB_SCOPE_BASE, attrs, "(dn=*)");
413
414         if (ret != LDB_SUCCESS) {
415                 DEBUG(0, ("Error getting default value for '%s': %s\n",
416                         ldb_dn_get_linearized(kd->dn), ldb_errstring(c)));
417                 return WERR_FOOBAR;
418         }
419
420         if (res->count == 0 || res->msgs[0]->num_elements == 0)
421                 return WERR_BADFILE;
422
423         if ((data_type != NULL) && (data != NULL)) {
424                 reg_ldb_unpack_value(mem_ctx, res->msgs[0], name, data_type,
425                                      data);
426         }
427
428         talloc_free(res);
429
430         return WERR_OK;
431 }
432
433 static WERROR ldb_get_value_by_id(TALLOC_CTX *mem_ctx, struct hive_key *k,
434                                   uint32_t idx, const char **name,
435                                   uint32_t *data_type, DATA_BLOB *data)
436 {
437         struct ldb_key_data *kd = talloc_get_type(k, struct ldb_key_data);
438
439         /* if the default value exists, give it back */
440         if (W_ERROR_IS_OK(ldb_get_default_value(mem_ctx, k, name, data_type,
441                 data))) {
442                 if (idx == 0)
443                         return WERR_OK;
444                 else
445                         --idx;
446         }
447
448         /* Do the search if necessary */
449         if (kd->values == NULL) {
450                 W_ERROR_NOT_OK_RETURN(cache_values(kd));
451         }
452
453         if (idx >= kd->value_count)
454                 return WERR_NO_MORE_ITEMS;
455
456         reg_ldb_unpack_value(mem_ctx, kd->values[idx], name, data_type, data);
457
458         return WERR_OK;
459 }
460
461 static WERROR ldb_get_value(TALLOC_CTX *mem_ctx, struct hive_key *k,
462                             const char *name, uint32_t *data_type,
463                             DATA_BLOB *data)
464 {
465         struct ldb_key_data *kd = talloc_get_type(k, struct ldb_key_data);
466         const char *res_name;
467         uint32_t idx;
468
469         /* the default value was requested, give it back */
470         if (name[0] == '\0') {
471                 return ldb_get_default_value(mem_ctx, k, NULL, data_type, data);
472         }
473
474         /* Do the search if necessary */
475         if (kd->values == NULL) {
476                 W_ERROR_NOT_OK_RETURN(cache_values(kd));
477         }
478
479         for (idx = 0; idx < kd->value_count; idx++) {
480                 res_name = ldb_msg_find_attr_as_string(kd->values[idx], "value",
481                                                        "");
482                 if (ldb_attr_cmp(name, res_name) == 0) {
483                         reg_ldb_unpack_value(mem_ctx, kd->values[idx], NULL,
484                                              data_type, data);
485                         return WERR_OK;
486                 }
487         }
488
489         return WERR_BADFILE;
490 }
491
492 static WERROR ldb_open_key(TALLOC_CTX *mem_ctx, const struct hive_key *h,
493                            const char *name, struct hive_key **key)
494 {
495         struct ldb_result *res;
496         struct ldb_dn *ldb_path;
497         int ret;
498         struct ldb_key_data *newkd;
499         struct ldb_key_data *kd = talloc_get_type(h, struct ldb_key_data);
500         struct ldb_context *c = kd->ldb;
501
502         ldb_path = reg_path_to_ldb(mem_ctx, h, name, NULL);
503         W_ERROR_HAVE_NO_MEMORY(ldb_path);
504
505         ret = ldb_search(c, mem_ctx, &res, ldb_path, LDB_SCOPE_BASE, NULL, "(key=*)");
506
507         if (ret != LDB_SUCCESS) {
508                 DEBUG(3, ("Error opening key '%s': %s\n",
509                         ldb_dn_get_linearized(ldb_path), ldb_errstring(c)));
510                 return WERR_FOOBAR;
511         } else if (res->count == 0) {
512                 DEBUG(3, ("Key '%s' not found\n",
513                         ldb_dn_get_linearized(ldb_path)));
514                 talloc_free(res);
515                 return WERR_BADFILE;
516         }
517
518         newkd = talloc_zero(mem_ctx, struct ldb_key_data);
519         W_ERROR_HAVE_NO_MEMORY(newkd);
520         newkd->key.ops = &reg_backend_ldb;
521         newkd->ldb = talloc_reference(newkd, kd->ldb);
522         newkd->dn = ldb_dn_copy(newkd, res->msgs[0]->dn);
523         newkd->classname = talloc_steal(newkd,
524                                         ldb_msg_find_attr_as_string(res->msgs[0], "classname", NULL));
525
526         talloc_free(res);
527
528         *key = (struct hive_key *)newkd;
529
530         return WERR_OK;
531 }
532
533 WERROR reg_open_ldb_file(TALLOC_CTX *parent_ctx, const char *location,
534                          struct auth_session_info *session_info,
535                          struct cli_credentials *credentials,
536                          struct tevent_context *ev_ctx,
537                          struct loadparm_context *lp_ctx,
538                          struct hive_key **k)
539 {
540         struct ldb_key_data *kd;
541         struct ldb_context *wrap;
542         struct ldb_message *attrs_msg;
543
544         if (location == NULL)
545                 return WERR_INVALID_PARAM;
546
547         wrap = ldb_wrap_connect(parent_ctx, ev_ctx, lp_ctx,
548                                 location, session_info, credentials, 0);
549
550         if (wrap == NULL) {
551                 DEBUG(1, (__FILE__": unable to connect\n"));
552                 return WERR_FOOBAR;
553         }
554
555         attrs_msg = ldb_msg_new(wrap);
556         W_ERROR_HAVE_NO_MEMORY(attrs_msg);
557         attrs_msg->dn = ldb_dn_new(attrs_msg, wrap, "@ATTRIBUTES");
558         W_ERROR_HAVE_NO_MEMORY(attrs_msg->dn);
559         ldb_msg_add_string(attrs_msg, "key", "CASE_INSENSITIVE");
560         ldb_msg_add_string(attrs_msg, "value", "CASE_INSENSITIVE");
561
562         ldb_add(wrap, attrs_msg);
563
564         ldb_set_debug_stderr(wrap);
565
566         kd = talloc_zero(parent_ctx, struct ldb_key_data);
567         kd->key.ops = &reg_backend_ldb;
568         kd->ldb = talloc_reference(kd, wrap);
569         talloc_set_destructor (kd, reg_close_ldb_key);
570         kd->dn = ldb_dn_new(kd, wrap, "hive=NONE");
571
572         *k = (struct hive_key *)kd;
573
574         return WERR_OK;
575 }
576
577 static WERROR ldb_add_key(TALLOC_CTX *mem_ctx, const struct hive_key *parent,
578                           const char *name, const char *classname,
579                           struct security_descriptor *sd,
580                           struct hive_key **newkey)
581 {
582         struct ldb_key_data *parentkd = discard_const_p(struct ldb_key_data, parent);
583         struct ldb_dn *ldb_path;
584         struct ldb_message *msg;
585         struct ldb_key_data *newkd;
586         int ret;
587
588         ldb_path = reg_path_to_ldb(mem_ctx, parent, name, NULL);
589         W_ERROR_HAVE_NO_MEMORY(ldb_path);
590
591         msg = ldb_msg_new(mem_ctx);
592         W_ERROR_HAVE_NO_MEMORY(msg);
593
594         msg->dn = ldb_path;
595
596         ldb_msg_add_string(msg, "key", name);
597         if (classname != NULL) {
598                 ldb_msg_add_string(msg, "classname", classname);
599         }
600
601         ret = ldb_add(parentkd->ldb, msg);
602
603         talloc_free(msg);
604
605         if (ret == LDB_ERR_ENTRY_ALREADY_EXISTS) {
606                 return WERR_ALREADY_EXISTS;
607         }
608
609         if (ret != LDB_SUCCESS) {
610                 DEBUG(1, ("ldb_add: %s\n", ldb_errstring(parentkd->ldb)));
611                 return WERR_FOOBAR;
612         }
613
614         DEBUG(2, ("key added: %s\n", ldb_dn_get_linearized(ldb_path)));
615
616         newkd = talloc_zero(mem_ctx, struct ldb_key_data);
617         W_ERROR_HAVE_NO_MEMORY(newkd);
618         newkd->ldb = talloc_reference(newkd, parentkd->ldb);
619         newkd->key.ops = &reg_backend_ldb;
620         newkd->dn = talloc_steal(newkd, ldb_path);
621         newkd->classname = talloc_steal(newkd, classname);
622
623         *newkey = (struct hive_key *)newkd;
624
625         /* reset cache */
626         talloc_free(parentkd->subkeys);
627         parentkd->subkeys = NULL;
628
629         return WERR_OK;
630 }
631
632 static WERROR ldb_del_value(TALLOC_CTX *mem_ctx, struct hive_key *key,
633                             const char *child)
634 {
635         int ret;
636         struct ldb_key_data *kd = talloc_get_type(key, struct ldb_key_data);
637         struct ldb_message *msg;
638         struct ldb_dn *childdn;
639
640         if (child[0] == '\0') {
641                 /* default value */
642                 msg = talloc_zero(mem_ctx, struct ldb_message);
643                 W_ERROR_HAVE_NO_MEMORY(msg);
644                 msg->dn = ldb_dn_copy(msg, kd->dn);
645                 W_ERROR_HAVE_NO_MEMORY(msg->dn);
646                 ldb_msg_add_empty(msg, "data", LDB_FLAG_MOD_DELETE, NULL);
647                 ldb_msg_add_empty(msg, "type", LDB_FLAG_MOD_DELETE, NULL);
648
649                 ret = ldb_modify(kd->ldb, msg);
650                 if (ret != LDB_SUCCESS) {
651                         DEBUG(1, ("ldb_del_value: %s\n", ldb_errstring(kd->ldb)));
652                         return WERR_FOOBAR;
653                 }
654         } else {
655                 /* normal value */
656                 childdn = ldb_dn_copy(kd->ldb, kd->dn);
657                 if (!ldb_dn_add_child_fmt(childdn, "value=%s",
658                                   reg_ldb_escape(childdn, child)))
659                 {
660                         talloc_free(childdn);
661                         return WERR_FOOBAR;
662                 }
663
664                 ret = ldb_delete(kd->ldb, childdn);
665
666                 talloc_free(childdn);
667
668                 if (ret == LDB_ERR_NO_SUCH_OBJECT) {
669                         return WERR_BADFILE;
670                 } else if (ret != LDB_SUCCESS) {
671                         DEBUG(1, ("ldb_del_value: %s\n", ldb_errstring(kd->ldb)));
672                         return WERR_FOOBAR;
673                 }
674         }
675
676         /* reset cache */
677         talloc_free(kd->values);
678         kd->values = NULL;
679
680         return WERR_OK;
681 }
682
683 static WERROR ldb_del_key(TALLOC_CTX *mem_ctx, const struct hive_key *key,
684                           const char *name)
685 {
686         unsigned int i;
687         int ret;
688         struct ldb_key_data *parentkd = talloc_get_type(key, struct ldb_key_data);
689         struct ldb_dn *ldb_path;
690         struct ldb_context *c = parentkd->ldb;
691         struct ldb_result *res_keys;
692         struct ldb_result *res_vals;
693         WERROR werr;
694         struct hive_key *hk;
695
696         /* Verify key exists by opening it */
697         werr = ldb_open_key(mem_ctx, key, name, &hk);
698         if (!W_ERROR_IS_OK(werr)) {
699                 return werr;
700         }
701
702         ldb_path = reg_path_to_ldb(mem_ctx, key, name, NULL);
703         W_ERROR_HAVE_NO_MEMORY(ldb_path);
704
705         /* Search for subkeys */
706         ret = ldb_search(c, mem_ctx, &res_keys, ldb_path, LDB_SCOPE_ONELEVEL,
707                          NULL, "(key=*)");
708
709         if (ret != LDB_SUCCESS) {
710                 DEBUG(0, ("Error getting subkeys for '%s': %s\n",
711                       ldb_dn_get_linearized(ldb_path), ldb_errstring(c)));
712                 return WERR_FOOBAR;
713         }
714
715         /* Search for values */
716         ret = ldb_search(c, mem_ctx, &res_vals, ldb_path, LDB_SCOPE_ONELEVEL,
717                          NULL, "(value=*)");
718
719         if (ret != LDB_SUCCESS) {
720                 DEBUG(0, ("Error getting values for '%s': %s\n",
721                       ldb_dn_get_linearized(ldb_path), ldb_errstring(c)));
722                 return WERR_FOOBAR;
723         }
724
725         /* Start an explicit transaction */
726         ret = ldb_transaction_start(c);
727
728         if (ret != LDB_SUCCESS) {
729                 DEBUG(0, ("ldb_transaction_start: %s\n", ldb_errstring(c)));
730                 return WERR_FOOBAR;
731         }
732
733         if (res_keys->count || res_vals->count)
734         {
735                 /* Delete any subkeys */
736                 for (i = 0; i < res_keys->count; i++)
737                 {
738                         werr = ldb_del_key(mem_ctx, hk,
739                                            ldb_msg_find_attr_as_string(
740                                                         res_keys->msgs[i],
741                                                         "key", NULL));
742                         if (!W_ERROR_IS_OK(werr)) {
743                                 ret = ldb_transaction_cancel(c);
744                                 return werr;
745                         }
746                 }
747
748                 /* Delete any values */
749                 for (i = 0; i < res_vals->count; i++)
750                 {
751                         werr = ldb_del_value(mem_ctx, hk,
752                                              ldb_msg_find_attr_as_string(
753                                                         res_vals->msgs[i],
754                                                         "value", NULL));
755                         if (!W_ERROR_IS_OK(werr)) {
756                                 ret = ldb_transaction_cancel(c);
757                                 return werr;
758                         }
759                 }
760         }
761
762         /* Delete the key itself */
763         ret = ldb_delete(c, ldb_path);
764
765         if (ret != LDB_SUCCESS)
766         {
767                 DEBUG(1, ("ldb_del_key: %s\n", ldb_errstring(c)));
768                 ret = ldb_transaction_cancel(c);
769                 return WERR_FOOBAR;
770         }
771
772         /* Commit the transaction */
773         ret = ldb_transaction_commit(c);
774
775         if (ret != LDB_SUCCESS)
776         {
777                 DEBUG(0, ("ldb_transaction_commit: %s\n", ldb_errstring(c)));
778                 ret = ldb_transaction_cancel(c);
779                 return WERR_FOOBAR;
780         }
781
782         /* reset cache */
783         talloc_free(parentkd->subkeys);
784         parentkd->subkeys = NULL;
785
786         return WERR_OK;
787 }
788
789 static WERROR ldb_set_value(struct hive_key *parent,
790                             const char *name, uint32_t type,
791                             const DATA_BLOB data)
792 {
793         struct ldb_message *msg;
794         struct ldb_key_data *kd = talloc_get_type(parent, struct ldb_key_data);
795         unsigned int i;
796         int ret;
797         TALLOC_CTX *mem_ctx = talloc_init("ldb_set_value");
798
799         msg = reg_ldb_pack_value(kd->ldb, mem_ctx, name, type, data);
800         W_ERROR_HAVE_NO_MEMORY(msg);
801
802         msg->dn = ldb_dn_copy(msg, kd->dn);
803         W_ERROR_HAVE_NO_MEMORY(msg->dn);
804
805         if (name[0] != '\0') {
806                 /* For a default value, we add/overwrite the attributes to/of the hive.
807                    For a normal value, we create a new child. */
808                 if (!ldb_dn_add_child_fmt(msg->dn, "value=%s",
809                                   reg_ldb_escape(mem_ctx, name)))
810                 {
811                         talloc_free(mem_ctx);
812                         return WERR_FOOBAR;
813                 }
814         }
815
816         /* Try first a "modify" and if this doesn't work do try an "add" */
817         for (i = 0; i < msg->num_elements; i++) {
818                 if (msg->elements[i].flags != LDB_FLAG_MOD_DELETE) {
819                         msg->elements[i].flags = LDB_FLAG_MOD_REPLACE;
820                 }
821         }
822         ret = ldb_modify(kd->ldb, msg);
823         if (ret == LDB_ERR_NO_SUCH_OBJECT) {
824                 i = 0;
825                 while (i < msg->num_elements) {
826                         if (msg->elements[i].flags == LDB_FLAG_MOD_DELETE) {
827                                 ldb_msg_remove_element(msg, &msg->elements[i]);
828                         } else {
829                                 ++i;
830                         }
831                 }
832                 ret = ldb_add(kd->ldb, msg);
833         }
834         if (ret == LDB_ERR_NO_SUCH_ATTRIBUTE) {
835                 /* ignore this -> the value didn't exist and also now doesn't */
836                 ret = LDB_SUCCESS;
837         }
838
839         if (ret != LDB_SUCCESS) {
840                 DEBUG(1, ("ldb_set_value: %s\n", ldb_errstring(kd->ldb)));
841                 talloc_free(mem_ctx);
842                 return WERR_FOOBAR;
843         }
844
845         /* reset cache */
846         talloc_free(kd->values);
847         kd->values = NULL;
848
849         talloc_free(mem_ctx);
850         return WERR_OK;
851 }
852
853 static WERROR ldb_get_key_info(TALLOC_CTX *mem_ctx,
854                                const struct hive_key *key,
855                                const char **classname,
856                                uint32_t *num_subkeys,
857                                uint32_t *num_values,
858                                NTTIME *last_change_time,
859                                uint32_t *max_subkeynamelen,
860                                uint32_t *max_valnamelen,
861                                uint32_t *max_valbufsize)
862 {
863         struct ldb_key_data *kd = talloc_get_type(key, struct ldb_key_data);
864         uint32_t default_value_type = REG_NONE;
865         DATA_BLOB default_value = { NULL, 0 };
866         WERROR werr;
867
868         /* Initialization */
869         if (classname != NULL)
870                 *classname = NULL;
871         if (num_subkeys != NULL)
872                 *num_subkeys = 0;
873         if (num_values != NULL)
874                 *num_values = 0;
875         if (last_change_time != NULL)
876                 *last_change_time = 0;
877         if (max_subkeynamelen != NULL)
878                 *max_subkeynamelen = 0;
879         if (max_valnamelen != NULL)
880                 *max_valnamelen = 0;
881         if (max_valbufsize != NULL)
882                 *max_valbufsize = 0;
883
884         /* We need this to get the default value (if it exists) for counting
885          * the values under the key and for finding out the longest value buffer
886          * size. If no default value exists the DATA_BLOB "default_value" will
887          * remain { NULL, 0 }. */
888         werr = ldb_get_default_value(mem_ctx, key, NULL, &default_value_type,
889                                      &default_value);
890         if ((!W_ERROR_IS_OK(werr)) && (!W_ERROR_EQUAL(werr, WERR_BADFILE))) {
891                 return werr;
892         }
893
894         if (kd->subkeys == NULL) {
895                 W_ERROR_NOT_OK_RETURN(cache_subkeys(kd));
896         }
897         if (kd->values == NULL) {
898                 W_ERROR_NOT_OK_RETURN(cache_values(kd));
899         }
900
901         if (classname != NULL) {
902                 *classname = kd->classname;
903         }
904
905         if (num_subkeys != NULL) {
906                 *num_subkeys = kd->subkey_count;
907         }
908         if (num_values != NULL) {
909                 *num_values = kd->value_count;
910                 /* also consider the default value if it exists */
911                 if (default_value.data != NULL) {
912                         ++(*num_values);
913                 }
914         }
915
916
917         if (max_subkeynamelen != NULL) {
918                 unsigned int i;
919                 struct ldb_message_element *el;
920
921                 for (i = 0; i < kd->subkey_count; i++) {
922                         el = ldb_msg_find_element(kd->subkeys[i], "key");
923                         *max_subkeynamelen = MAX(*max_subkeynamelen, el->values[0].length);
924                 }
925         }
926
927         if (max_valnamelen != NULL || max_valbufsize != NULL) {
928                 unsigned int i;
929                 struct ldb_message_element *el;
930                 W_ERROR_NOT_OK_RETURN(cache_values(kd));
931
932                 /* also consider the default value if it exists */
933                 if ((max_valbufsize != NULL) && (default_value.data != NULL)) {
934                                 *max_valbufsize = MAX(*max_valbufsize,
935                                                       default_value.length);
936                 }
937
938                 for (i = 0; i < kd->value_count; i++) {
939                         if (max_valnamelen != NULL) {
940                                 el = ldb_msg_find_element(kd->values[i], "value");
941                                 *max_valnamelen = MAX(*max_valnamelen, el->values[0].length);
942                         }
943
944                         if (max_valbufsize != NULL) {
945                                 uint32_t data_type;
946                                 DATA_BLOB data;
947                                 reg_ldb_unpack_value(mem_ctx,
948                                                      kd->values[i], NULL,
949                                                      &data_type, &data);
950                                 *max_valbufsize = MAX(*max_valbufsize, data.length);
951                                 talloc_free(data.data);
952                         }
953                 }
954         }
955
956         talloc_free(default_value.data);
957
958         return WERR_OK;
959 }
960
961 static struct hive_operations reg_backend_ldb = {
962         .name = "ldb",
963         .add_key = ldb_add_key,
964         .del_key = ldb_del_key,
965         .get_key_by_name = ldb_open_key,
966         .enum_value = ldb_get_value_by_id,
967         .enum_key = ldb_get_subkey_by_id,
968         .set_value = ldb_set_value,
969         .get_value_by_name = ldb_get_value,
970         .delete_value = ldb_del_value,
971         .get_key_info = ldb_get_key_info,
972 };