registry: remove an unused variable from regdb_set_secdesc().
[Samba.git] / source / registry / reg_backend_db.c
blobfb071ae27392863ab04d3dfda8560a5b418d31bd
1 /*
2 * Unix SMB/CIFS implementation.
3 * Virtual Windows Registry Layer
4 * Copyright (C) Gerald Carter 2002-2005
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 3 of the License, or
9 * (at your option) any later version.
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.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
20 /* Implementation of internal registry database functions. */
22 #include "includes.h"
24 #undef DBGC_CLASS
25 #define DBGC_CLASS DBGC_REGISTRY
27 static struct db_context *regdb = NULL;
28 static int regdb_refcount;
30 /* List the deepest path into the registry. All part components will be created.*/
32 /* If you want to have a part of the path controlled by the tdb and part by
33 a virtual registry db (e.g. printing), then you have to list the deepest path.
34 For example,"HKLM/SOFTWARE/Microsoft/Windows NT/CurrentVersion/Print"
35 allows the reg_db backend to handle everything up to
36 "HKLM/SOFTWARE/Microsoft/Windows NT/CurrentVersion" and then we'll hook
37 the reg_printing backend onto the last component of the path (see
38 KEY_PRINTING_2K in include/rpc_reg.h) --jerry */
40 static const char *builtin_registry_paths[] = {
41 KEY_PRINTING_2K,
42 KEY_PRINTING_PORTS,
43 KEY_PRINTING,
44 KEY_SHARES,
45 KEY_EVENTLOG,
46 KEY_SMBCONF,
47 KEY_PERFLIB,
48 KEY_PERFLIB_009,
49 "HKLM\\SYSTEM\\CurrentControlSet\\Control\\Print\\Monitors",
50 KEY_PROD_OPTIONS,
51 "HKLM\\SYSTEM\\CurrentControlSet\\Control\\Terminal Server\\DefaultUserConfiguration",
52 KEY_TCPIP_PARAMS,
53 KEY_NETLOGON_PARAMS,
54 KEY_HKU,
55 KEY_HKCR,
56 KEY_HKPD,
57 KEY_HKPT,
58 NULL };
60 struct builtin_regkey_value {
61 const char *path;
62 const char *valuename;
63 uint32 type;
64 union {
65 const char *string;
66 uint32 dw_value;
67 } data;
70 static struct builtin_regkey_value builtin_registry_values[] = {
71 { KEY_PRINTING_PORTS,
72 SAMBA_PRINTER_PORT_NAME, REG_SZ, { "" } },
73 { KEY_PRINTING_2K,
74 "DefaultSpoolDirectory", REG_SZ, { "C:\\Windows\\System32\\Spool\\Printers" } },
75 { KEY_EVENTLOG,
76 "DisplayName", REG_SZ, { "Event Log" } },
77 { KEY_EVENTLOG,
78 "ErrorControl", REG_DWORD, { (char*)0x00000001 } },
79 { NULL, NULL, 0, { NULL } }
82 /***********************************************************************
83 Open the registry data in the tdb
84 ***********************************************************************/
86 static bool init_registry_data(void)
88 char *path = NULL;
89 char *base = NULL;
90 char *remaining = NULL;
91 TALLOC_CTX *frame = NULL;
92 char *keyname;
93 char *subkeyname;
94 REGSUBKEY_CTR *subkeys;
95 REGVAL_CTR *values;
96 int i;
97 const char *p, *p2;
98 UNISTR2 data;
101 * There are potentially quite a few store operations which are all
102 * indiviually wrapped in tdb transactions. Wrapping them in a single
103 * transaction gives just a single transaction_commit() to actually do
104 * its fsync()s. See tdb/common/transaction.c for info about nested
105 * transaction behaviour.
108 if (regdb->transaction_start(regdb) == -1) {
109 DEBUG(0, ("init_registry_data: tdb_transaction_start "
110 "failed\n"));
111 return false;
114 /* loop over all of the predefined paths and add each component */
116 for (i=0; builtin_registry_paths[i] != NULL; i++) {
118 frame = talloc_stackframe();
120 DEBUG(6, ("init_registry_data: Adding [%s]\n",
121 builtin_registry_paths[i]));
123 path = talloc_strdup(frame, builtin_registry_paths[i]);
124 base = talloc_strdup(frame, "");
125 if (!path || !base) {
126 goto fail;
128 p = path;
130 while (next_token_talloc(frame, &p, &keyname, "\\")) {
132 /* build up the registry path from the components */
134 if (*base) {
135 base = talloc_asprintf(frame, "%s\\", base);
136 if (!base) {
137 goto fail;
140 base = talloc_asprintf_append(base, "%s", keyname);
141 if (!base) {
142 goto fail;
145 /* get the immediate subkeyname (if we have one ) */
147 subkeyname = talloc_strdup(frame, "");
148 if (!subkeyname) {
149 goto fail;
151 if (*p) {
152 remaining = talloc_strdup(frame, p);
153 if (!remaining) {
154 goto fail;
156 p2 = remaining;
158 if (!next_token_talloc(frame, &p2,
159 &subkeyname, "\\"))
161 subkeyname = talloc_strdup(frame,p2);
162 if (!subkeyname) {
163 goto fail;
168 DEBUG(10,("init_registry_data: Storing key [%s] with "
169 "subkey [%s]\n", base,
170 *subkeyname ? subkeyname : "NULL"));
172 /* we don't really care if the lookup succeeds or not
173 * since we are about to update the record.
174 * We just want any subkeys already present */
176 if (!(subkeys = TALLOC_ZERO_P(frame, REGSUBKEY_CTR))) {
177 DEBUG(0,("talloc() failure!\n"));
178 goto fail;
181 regdb_fetch_keys(base, subkeys);
182 if (*subkeyname) {
183 regsubkey_ctr_addkey( subkeys, subkeyname);
185 if (!regdb_store_keys( base, subkeys)) {
186 goto fail;
190 TALLOC_FREE(frame);
193 /* loop over all of the predefined values and add each component */
195 frame = talloc_stackframe();
197 for (i=0; builtin_registry_values[i].path != NULL; i++) {
199 if (!(values = TALLOC_ZERO_P(frame, REGVAL_CTR))) {
200 goto fail;
203 regdb_fetch_values(builtin_registry_values[i].path, values);
205 /* preserve existing values across restarts. Only add new ones */
207 if (!regval_ctr_key_exists(values,
208 builtin_registry_values[i].valuename))
210 switch(builtin_registry_values[i].type) {
211 case REG_DWORD:
212 regval_ctr_addvalue(values,
213 builtin_registry_values[i].valuename,
214 REG_DWORD,
215 (char*)&builtin_registry_values[i].data.dw_value,
216 sizeof(uint32));
217 break;
219 case REG_SZ:
220 init_unistr2(&data,
221 builtin_registry_values[i].data.string,
222 UNI_STR_TERMINATE);
223 regval_ctr_addvalue(values,
224 builtin_registry_values[i].valuename,
225 REG_SZ,
226 (char*)data.buffer,
227 data.uni_str_len*sizeof(uint16));
228 break;
230 default:
231 DEBUG(0, ("init_registry_data: invalid value "
232 "type in builtin_registry_values "
233 "[%d]\n",
234 builtin_registry_values[i].type));
236 regdb_store_values(builtin_registry_values[i].path,
237 values);
239 TALLOC_FREE(values);
242 TALLOC_FREE(frame);
244 if (regdb->transaction_commit(regdb) == -1) {
245 DEBUG(0, ("init_registry_data: Could not commit "
246 "transaction\n"));
247 return false;
250 return true;
252 fail:
254 TALLOC_FREE(frame);
256 if (regdb->transaction_cancel(regdb) == -1) {
257 smb_panic("init_registry_data: tdb_transaction_cancel "
258 "failed\n");
261 return false;
264 /***********************************************************************
265 Open the registry database
266 ***********************************************************************/
268 bool regdb_init( void )
270 const char *vstring = "INFO/version";
271 uint32 vers_id;
273 if ( regdb ) {
274 DEBUG(10,("regdb_init: incrementing refcount (%d)\n", regdb_refcount));
275 regdb_refcount++;
276 return true;
279 if ( !(regdb = db_open(NULL, state_path("registry.tdb"), 0, REG_TDB_FLAGS, O_RDWR, 0600)) )
281 regdb = db_open(NULL, state_path("registry.tdb"), 0, REG_TDB_FLAGS, O_RDWR|O_CREAT, 0600);
282 if ( !regdb ) {
283 DEBUG(0,("regdb_init: Failed to open registry %s (%s)\n",
284 state_path("registry.tdb"), strerror(errno) ));
285 return false;
288 DEBUG(10,("regdb_init: Successfully created registry tdb\n"));
291 regdb_refcount = 1;
293 vers_id = dbwrap_fetch_int32(regdb, vstring);
295 if ( vers_id != REGVER_V1 ) {
296 /* any upgrade code here if needed */
297 DEBUG(10, ("regdb_init: got INFO/version = %d != %d\n",
298 vers_id, REGVER_V1));
301 /* always setup the necessary keys and values */
303 if ( !init_registry_data() ) {
304 DEBUG(0,("regdb_init: Failed to initialize data in registry!\n"));
305 return false;
308 return true;
311 /***********************************************************************
312 Open the registry. Must already have been initialized by regdb_init()
313 ***********************************************************************/
315 WERROR regdb_open( void )
317 WERROR result = WERR_OK;
319 if ( regdb ) {
320 DEBUG(10,("regdb_open: incrementing refcount (%d)\n", regdb_refcount));
321 regdb_refcount++;
322 return WERR_OK;
325 become_root();
327 regdb = db_open(NULL, state_path("registry.tdb"), 0, REG_TDB_FLAGS, O_RDWR, 0600);
328 if ( !regdb ) {
329 result = ntstatus_to_werror( map_nt_error_from_unix( errno ) );
330 DEBUG(0,("regdb_open: Failed to open %s! (%s)\n",
331 state_path("registry.tdb"), strerror(errno) ));
334 unbecome_root();
336 regdb_refcount = 1;
337 DEBUG(10,("regdb_open: refcount reset (%d)\n", regdb_refcount));
339 return result;
342 /***********************************************************************
343 ***********************************************************************/
345 int regdb_close( void )
347 if (regdb_refcount == 0) {
348 return 0;
351 regdb_refcount--;
353 DEBUG(10,("regdb_close: decrementing refcount (%d)\n", regdb_refcount));
355 if ( regdb_refcount > 0 )
356 return 0;
358 SMB_ASSERT( regdb_refcount >= 0 );
360 TALLOC_FREE(regdb);
361 return 0;
364 /***********************************************************************
365 return the tdb sequence number of the registry tdb.
366 this is an indicator for the content of the registry
367 having changed. it will change upon regdb_init, too, though.
368 ***********************************************************************/
369 int regdb_get_seqnum(void)
371 return regdb->get_seqnum(regdb);
374 /***********************************************************************
375 Add subkey strings to the registry tdb under a defined key
376 fmt is the same format as tdb_pack except this function only supports
377 fstrings
378 ***********************************************************************/
380 static bool regdb_store_keys_internal(const char *key, REGSUBKEY_CTR *ctr)
382 TDB_DATA dbuf;
383 uint8 *buffer = NULL;
384 int i = 0;
385 uint32 len, buflen;
386 bool ret = true;
387 uint32 num_subkeys = regsubkey_ctr_numkeys(ctr);
388 char *keyname = NULL;
389 TALLOC_CTX *ctx = talloc_stackframe();
390 NTSTATUS status;
392 if (!key) {
393 return false;
396 keyname = talloc_strdup(ctx, key);
397 if (!keyname) {
398 return false;
400 keyname = normalize_reg_path(ctx, keyname);
402 /* allocate some initial memory */
404 buffer = (uint8 *)SMB_MALLOC(1024);
405 if (buffer == NULL) {
406 return false;
408 buflen = 1024;
409 len = 0;
411 /* store the number of subkeys */
413 len += tdb_pack(buffer+len, buflen-len, "d", num_subkeys);
415 /* pack all the strings */
417 for (i=0; i<num_subkeys; i++) {
418 len += tdb_pack(buffer+len, buflen-len, "f",
419 regsubkey_ctr_specific_key(ctr, i));
420 if (len > buflen) {
421 /* allocate some extra space */
422 buffer = (uint8 *)SMB_REALLOC(buffer, len*2);
423 if(buffer == NULL) {
424 DEBUG(0, ("regdb_store_keys: Failed to realloc "
425 "memory of size [%d]\n", len*2));
426 ret = false;
427 goto done;
429 buflen = len*2;
430 len = tdb_pack(buffer+len, buflen-len, "f",
431 regsubkey_ctr_specific_key(ctr, i));
435 /* finally write out the data */
437 dbuf.dptr = buffer;
438 dbuf.dsize = len;
439 status = dbwrap_store_bystring(regdb, keyname, dbuf, TDB_REPLACE);
440 if (!NT_STATUS_IS_OK(status)) {
441 ret = false;
442 goto done;
445 done:
446 TALLOC_FREE(ctx);
447 SAFE_FREE(buffer);
448 return ret;
451 /***********************************************************************
452 Store the new subkey record and create any child key records that
453 do not currently exist
454 ***********************************************************************/
456 bool regdb_store_keys(const char *key, REGSUBKEY_CTR *ctr)
458 int num_subkeys, i;
459 char *path = NULL;
460 REGSUBKEY_CTR *subkeys = NULL, *old_subkeys = NULL;
461 char *oldkeyname = NULL;
462 TALLOC_CTX *ctx = talloc_stackframe();
463 NTSTATUS status;
466 * fetch a list of the old subkeys so we can determine if anything has
467 * changed
470 if (!(old_subkeys = TALLOC_ZERO_P(ctx, REGSUBKEY_CTR))) {
471 DEBUG(0,("regdb_store_keys: talloc() failure!\n"));
472 return false;
475 regdb_fetch_keys(key, old_subkeys);
477 if ((ctr->num_subkeys && old_subkeys->num_subkeys) &&
478 (ctr->num_subkeys == old_subkeys->num_subkeys)) {
480 for (i = 0; i<ctr->num_subkeys; i++) {
481 if (strcmp(ctr->subkeys[i],
482 old_subkeys->subkeys[i]) != 0) {
483 break;
486 if (i == ctr->num_subkeys) {
488 * Nothing changed, no point to even start a tdb
489 * transaction
491 TALLOC_FREE(old_subkeys);
492 return true;
496 TALLOC_FREE(old_subkeys);
498 if (regdb->transaction_start(regdb) == -1) {
499 DEBUG(0, ("regdb_store_keys: transaction_start failed\n"));
500 goto fail;
504 * Re-fetch the old keys inside the transaction
507 if (!(old_subkeys = TALLOC_ZERO_P(ctx, REGSUBKEY_CTR))) {
508 DEBUG(0,("regdb_store_keys: talloc() failure!\n"));
509 goto cancel;
512 regdb_fetch_keys(key, old_subkeys);
514 /* store the subkey list for the parent */
516 if (!regdb_store_keys_internal(key, ctr) ) {
517 DEBUG(0,("regdb_store_keys: Failed to store new subkey list "
518 "for parent [%s]\n", key));
519 goto cancel;
522 /* now delete removed keys */
524 num_subkeys = regsubkey_ctr_numkeys(old_subkeys);
525 for (i=0; i<num_subkeys; i++) {
526 oldkeyname = regsubkey_ctr_specific_key(old_subkeys, i);
528 if (regsubkey_ctr_key_exists(ctr, oldkeyname)) {
530 * It's still around, don't delete
533 continue;
536 path = talloc_asprintf(ctx, "%s/%s", key, oldkeyname);
537 if (!path) {
538 goto cancel;
540 path = normalize_reg_path(ctx, path);
541 if (!path) {
542 goto cancel;
544 status = dbwrap_delete_bystring(regdb, path);
545 if (!NT_STATUS_IS_OK(status)) {
546 DEBUG(1, ("Deleting %s failed\n", path));
547 goto cancel;
550 TALLOC_FREE(path);
551 path = talloc_asprintf(ctx, "%s/%s/%s",
552 REG_VALUE_PREFIX,
553 key,
554 oldkeyname );
555 if (!path) {
556 goto cancel;
558 path = normalize_reg_path(ctx, path);
559 if (!path) {
560 goto cancel;
564 * Ignore errors here, we might have no values around
566 dbwrap_delete_bystring(regdb, path);
567 TALLOC_FREE(path);
570 TALLOC_FREE(old_subkeys);
572 /* now create records for any subkeys that don't already exist */
574 num_subkeys = regsubkey_ctr_numkeys(ctr);
576 if (num_subkeys == 0) {
577 if (!(subkeys = TALLOC_ZERO_P(ctx, REGSUBKEY_CTR)) ) {
578 DEBUG(0,("regdb_store_keys: talloc() failure!\n"));
579 goto cancel;
582 if (!regdb_store_keys_internal(key, subkeys)) {
583 DEBUG(0,("regdb_store_keys: Failed to store "
584 "new record for key [%s]\n", key));
585 goto cancel;
587 TALLOC_FREE(subkeys);
591 for (i=0; i<num_subkeys; i++) {
592 path = talloc_asprintf(ctx, "%s/%s",
593 key,
594 regsubkey_ctr_specific_key(ctr, i));
595 if (!path) {
596 goto cancel;
598 if (!(subkeys = TALLOC_ZERO_P(ctx, REGSUBKEY_CTR)) ) {
599 DEBUG(0,("regdb_store_keys: talloc() failure!\n"));
600 goto cancel;
603 if (regdb_fetch_keys( path, subkeys ) == -1) {
604 /* create a record with 0 subkeys */
605 if (!regdb_store_keys_internal(path, subkeys)) {
606 DEBUG(0,("regdb_store_keys: Failed to store "
607 "new record for key [%s]\n", path));
608 goto cancel;
612 TALLOC_FREE(subkeys);
613 TALLOC_FREE(path);
616 if (regdb->transaction_commit(regdb) == -1) {
617 DEBUG(0, ("regdb_store_keys: Could not commit transaction\n"));
618 goto fail;
621 TALLOC_FREE(ctx);
622 return true;
624 cancel:
625 if (regdb->transaction_cancel(regdb) == -1) {
626 smb_panic("regdb_store_keys: transaction_cancel failed\n");
629 fail:
630 TALLOC_FREE(ctx);
632 return false;
636 /***********************************************************************
637 Retrieve an array of strings containing subkeys. Memory should be
638 released by the caller.
639 ***********************************************************************/
641 int regdb_fetch_keys(const char *key, REGSUBKEY_CTR *ctr)
643 char *path = NULL;
644 uint32 num_items;
645 uint8 *buf;
646 uint32 buflen, len;
647 int i;
648 fstring subkeyname;
649 int ret = -1;
650 TALLOC_CTX *frame = talloc_stackframe();
651 struct db_record *rec;
653 DEBUG(11,("regdb_fetch_keys: Enter key => [%s]\n", key ? key : "NULL"));
655 path = talloc_strdup(frame, key);
656 if (!path) {
657 goto fail;
660 /* convert to key format */
661 path = talloc_string_sub(frame, path, "\\", "/");
662 if (!path) {
663 goto fail;
665 strupper_m(path);
667 rec = regdb->fetch_locked(regdb, frame, string_term_tdb_data(path));
668 if (rec == NULL) {
669 ret = 0;
670 goto fail;
673 ctr->seqnum = regdb_get_seqnum();
675 buf = rec->value.dptr;
676 buflen = rec->value.dsize;
678 if ( !buf ) {
679 DEBUG(5,("regdb_fetch_keys: tdb lookup failed to locate key [%s]\n", key));
680 goto fail;
683 len = tdb_unpack( buf, buflen, "d", &num_items);
685 for (i=0; i<num_items; i++) {
686 len += tdb_unpack(buf+len, buflen-len, "f", subkeyname);
687 regsubkey_ctr_addkey(ctr, subkeyname);
690 DEBUG(11,("regdb_fetch_keys: Exit [%d] items\n", num_items));
692 ret = num_items;
693 fail:
694 TALLOC_FREE(frame);
695 return ret;
698 /****************************************************************************
699 Unpack a list of registry values frem the TDB
700 ***************************************************************************/
702 static int regdb_unpack_values(REGVAL_CTR *values, uint8 *buf, int buflen)
704 int len = 0;
705 uint32 type;
706 fstring valuename;
707 uint32 size;
708 uint8 *data_p;
709 uint32 num_values = 0;
710 int i;
712 /* loop and unpack the rest of the registry values */
714 len += tdb_unpack(buf+len, buflen-len, "d", &num_values);
716 for ( i=0; i<num_values; i++ ) {
717 /* unpack the next regval */
719 type = REG_NONE;
720 size = 0;
721 data_p = NULL;
722 valuename[0] = '\0';
723 len += tdb_unpack(buf+len, buflen-len, "fdB",
724 valuename,
725 &type,
726 &size,
727 &data_p);
729 /* add the new value. Paranoid protective code -- make sure data_p is valid */
731 if (*valuename && size && data_p) {
732 regval_ctr_addvalue(values, valuename, type,
733 (const char *)data_p, size);
735 SAFE_FREE(data_p); /* 'B' option to tdb_unpack does a malloc() */
737 DEBUG(8,("specific: [%s], len: %d\n", valuename, size));
740 return len;
743 /****************************************************************************
744 Pack all values in all printer keys
745 ***************************************************************************/
747 static int regdb_pack_values(REGVAL_CTR *values, uint8 *buf, int buflen)
749 int len = 0;
750 int i;
751 REGISTRY_VALUE *val;
752 int num_values;
754 if ( !values )
755 return 0;
757 num_values = regval_ctr_numvals( values );
759 /* pack the number of values first */
761 len += tdb_pack( buf+len, buflen-len, "d", num_values );
763 /* loop over all values */
765 for ( i=0; i<num_values; i++ ) {
766 val = regval_ctr_specific_value( values, i );
767 len += tdb_pack(buf+len, buflen-len, "fdB",
768 regval_name(val),
769 regval_type(val),
770 regval_size(val),
771 regval_data_p(val) );
774 return len;
777 /***********************************************************************
778 Retrieve an array of strings containing subkeys. Memory should be
779 released by the caller.
780 ***********************************************************************/
782 int regdb_fetch_values( const char* key, REGVAL_CTR *values )
784 char *keystr = NULL;
785 TALLOC_CTX *ctx = talloc_stackframe();
786 struct db_record *rec;
787 int ret = 0;
789 DEBUG(10,("regdb_fetch_values: Looking for value of key [%s] \n", key));
791 keystr = talloc_asprintf(ctx, "%s/%s", REG_VALUE_PREFIX, key);
792 if (!keystr) {
793 return 0;
795 keystr = normalize_reg_path(ctx, keystr);
796 if (!keystr) {
797 goto done;
800 rec = regdb->fetch_locked(regdb, ctx, string_term_tdb_data(keystr));
801 if (rec == NULL) {
802 goto done;
805 values->seqnum = regdb_get_seqnum();
807 if (!rec->value.dptr) {
808 /* all keys have zero values by default */
809 goto done;
812 regdb_unpack_values(values, rec->value.dptr, rec->value.dsize);
813 ret = regval_ctr_numvals(values);
815 done:
816 TALLOC_FREE(ctx);
817 return ret;
820 bool regdb_store_values( const char *key, REGVAL_CTR *values )
822 TDB_DATA old_data, data;
823 char *keystr = NULL;
824 TALLOC_CTX *ctx = talloc_stackframe();
825 int len, ret;
826 bool result = false;
828 DEBUG(10,("regdb_store_values: Looking for value of key [%s] \n", key));
830 ZERO_STRUCT(data);
832 len = regdb_pack_values(values, data.dptr, data.dsize);
833 if (len <= 0) {
834 DEBUG(0,("regdb_store_values: unable to pack values. len <= 0\n"));
835 goto done;
838 data.dptr = TALLOC_ARRAY(ctx, uint8, len);
839 data.dsize = len;
841 len = regdb_pack_values(values, data.dptr, data.dsize);
843 SMB_ASSERT( len == data.dsize );
845 keystr = talloc_asprintf(ctx, "%s/%s", REG_VALUE_PREFIX, key );
846 if (!keystr) {
847 goto done;
849 keystr = normalize_reg_path(ctx, keystr);
850 if (!keystr) {
851 goto done;
854 old_data = dbwrap_fetch_bystring(regdb, ctx, keystr);
856 if ((old_data.dptr != NULL)
857 && (old_data.dsize == data.dsize)
858 && (memcmp(old_data.dptr, data.dptr, data.dsize) == 0))
860 result = true;
861 goto done;
864 ret = dbwrap_trans_store(regdb, string_term_tdb_data(keystr), data,
865 TDB_REPLACE);
866 result = (ret != -1);
868 done:
869 TALLOC_FREE(ctx);
870 return result;
873 static WERROR regdb_get_secdesc(TALLOC_CTX *mem_ctx, const char *key,
874 struct security_descriptor **psecdesc)
876 char *tdbkey;
877 TDB_DATA data;
878 NTSTATUS status;
879 TALLOC_CTX *tmp_ctx = talloc_stackframe();
881 DEBUG(10, ("regdb_get_secdesc: Getting secdesc of key [%s]\n", key));
883 if (asprintf(&tdbkey, "%s/%s", REG_SECDESC_PREFIX, key) == -1) {
884 return WERR_NOMEM;
886 normalize_dbkey(tdbkey);
888 data = dbwrap_fetch_bystring(regdb, tmp_ctx, tdbkey);
889 SAFE_FREE(tdbkey);
891 if (data.dptr == NULL) {
892 return WERR_BADFILE;
895 status = unmarshall_sec_desc(mem_ctx, (uint8 *)data.dptr, data.dsize,
896 psecdesc);
898 TALLOC_FREE(tmp_ctx);
900 if (NT_STATUS_EQUAL(status, NT_STATUS_NO_MEMORY)) {
901 return WERR_NOMEM;
904 if (!NT_STATUS_IS_OK(status)) {
905 return WERR_REG_CORRUPT;
908 return WERR_OK;
911 static WERROR regdb_set_secdesc(const char *key,
912 struct security_descriptor *secdesc)
914 TALLOC_CTX *mem_ctx = talloc_stackframe();
915 char *tdbkey;
916 WERROR err = WERR_NOMEM;
917 TDB_DATA tdbdata;
918 int tdb_ret;
920 tdbkey = talloc_asprintf(mem_ctx, "%s/%s", REG_SECDESC_PREFIX, key);
921 if (tdbkey == NULL) {
922 goto done;
924 normalize_dbkey(tdbkey);
926 if (secdesc == NULL) {
927 /* assuming a delete */
928 tdb_ret = dbwrap_trans_delete(regdb,
929 string_term_tdb_data(tdbkey));
930 if (tdb_ret == -1) {
931 err = ntstatus_to_werror(map_nt_error_from_unix(errno));
932 } else {
933 err = WERR_OK;
935 goto done;
938 err = ntstatus_to_werror(marshall_sec_desc(mem_ctx, secdesc,
939 &tdbdata.dptr,
940 &tdbdata.dsize));
941 if (!W_ERROR_IS_OK(err)) {
942 goto done;
945 tdb_ret = dbwrap_trans_store(regdb, string_term_tdb_data(tdbkey),
946 tdbdata, 0);
947 if (tdb_ret == -1) {
948 err = ntstatus_to_werror(map_nt_error_from_unix(errno));
949 goto done;
952 done:
953 TALLOC_FREE(mem_ctx);
954 return err;
957 bool regdb_subkeys_need_update(REGSUBKEY_CTR *subkeys)
959 return (regdb_get_seqnum() != subkeys->seqnum);
962 bool regdb_values_need_update(REGVAL_CTR *values)
964 return (regdb_get_seqnum() != values->seqnum);
968 * Table of function pointers for default access
971 REGISTRY_OPS regdb_ops = {
972 regdb_fetch_keys,
973 regdb_fetch_values,
974 regdb_store_keys,
975 regdb_store_values,
976 NULL,
977 regdb_get_secdesc,
978 regdb_set_secdesc,
979 regdb_subkeys_need_update,
980 regdb_values_need_update