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. */
25 #define DBGC_CLASS DBGC_REGISTRY
27 static struct db_context *regdb = NULL;
28 static int regdb_refcount;
30 static bool regdb_key_exists(const char *key);
31 static bool regdb_key_is_base_key(const char *key);
33 /* List the deepest path into the registry. All part components will be created.*/
35 /* If you want to have a part of the path controlled by the tdb and part by
36 a virtual registry db (e.g. printing), then you have to list the deepest path.
37 For example,"HKLM/SOFTWARE/Microsoft/Windows NT/CurrentVersion/Print"
38 allows the reg_db backend to handle everything up to
39 "HKLM/SOFTWARE/Microsoft/Windows NT/CurrentVersion" and then we'll hook
40 the reg_printing backend onto the last component of the path (see
41 KEY_PRINTING_2K in include/rpc_reg.h) --jerry */
43 static const char *builtin_registry_paths[] = {
53 KEY_SAMBA_GROUP_POLICY,
54 KEY_GP_MACHINE_POLICY,
55 KEY_GP_MACHINE_WIN_POLICY,
58 KEY_GP_USER_WIN_POLICY,
59 KEY_WINLOGON_GPEXT_PATH,
60 "HKLM\\SYSTEM\\CurrentControlSet\\Control\\Print\\Monitors",
62 "HKLM\\SYSTEM\\CurrentControlSet\\Control\\Terminal Server\\DefaultUserConfiguration",
71 struct builtin_regkey_value {
73 const char *valuename;
81 static struct builtin_regkey_value builtin_registry_values[] = {
83 SAMBA_PRINTER_PORT_NAME, REG_SZ, { "" } },
85 "DefaultSpoolDirectory", REG_SZ, { "C:\\Windows\\System32\\Spool\\Printers" } },
87 "DisplayName", REG_SZ, { "Event Log" } },
89 "ErrorControl", REG_DWORD, { (char*)0x00000001 } },
90 { NULL, NULL, 0, { NULL } }
94 * Initialize a key in the registry:
95 * create each component key of the specified path.
97 static WERROR init_registry_key_internal(const char *add_path)
100 TALLOC_CTX *frame = talloc_stackframe();
103 char *remaining = NULL;
106 struct regsubkey_ctr *subkeys;
109 DEBUG(6, ("init_registry_key: Adding [%s]\n", add_path));
111 path = talloc_strdup(frame, add_path);
112 base = talloc_strdup(frame, "");
113 if (!path || !base) {
119 while (next_token_talloc(frame, &p, &keyname, "\\")) {
121 /* build up the registry path from the components */
124 base = talloc_asprintf(frame, "%s\\", base);
130 base = talloc_asprintf_append(base, "%s", keyname);
136 /* get the immediate subkeyname (if we have one ) */
138 subkeyname = talloc_strdup(frame, "");
144 remaining = talloc_strdup(frame, p);
151 if (!next_token_talloc(frame, &p2,
154 subkeyname = talloc_strdup(frame,p2);
162 DEBUG(10,("init_registry_key: Storing key [%s] with "
163 "subkey [%s]\n", base,
164 *subkeyname ? subkeyname : "NULL"));
166 /* we don't really care if the lookup succeeds or not
167 * since we are about to update the record.
168 * We just want any subkeys already present */
170 werr = regsubkey_ctr_init(frame, &subkeys);
171 if (!W_ERROR_IS_OK(werr)) {
172 DEBUG(0,("talloc() failure!\n"));
176 regdb_fetch_keys(base, subkeys);
178 werr = regsubkey_ctr_addkey(subkeys, subkeyname);
179 if (!W_ERROR_IS_OK(werr)) {
183 if (!regdb_store_keys( base, subkeys)) {
184 werr = WERR_CAN_NOT_COMPLETE;
197 * Initialize a key in the registry:
198 * create each component key of the specified path,
199 * wrapped in one db transaction.
201 WERROR init_registry_key(const char *add_path)
205 if (regdb_key_exists(add_path)) {
209 if (regdb->transaction_start(regdb) != 0) {
210 DEBUG(0, ("init_registry_key: transaction_start failed\n"));
211 return WERR_REG_IO_FAILURE;
214 werr = init_registry_key_internal(add_path);
215 if (!W_ERROR_IS_OK(werr)) {
219 if (regdb->transaction_commit(regdb) != 0) {
220 DEBUG(0, ("init_registry_key: Could not commit transaction\n"));
221 return WERR_REG_IO_FAILURE;
227 if (regdb->transaction_cancel(regdb) != 0) {
228 smb_panic("init_registry_key: transaction_cancel failed\n");
234 /***********************************************************************
235 Open the registry data in the tdb
236 ***********************************************************************/
238 WERROR init_registry_data(void)
241 TALLOC_CTX *frame = talloc_stackframe();
242 struct regval_ctr *values;
247 * First, check for the existence of the needed keys and values.
248 * If all do already exist, we can save the writes.
250 for (i=0; builtin_registry_paths[i] != NULL; i++) {
251 if (!regdb_key_exists(builtin_registry_paths[i])) {
256 for (i=0; builtin_registry_values[i].path != NULL; i++) {
257 values = TALLOC_ZERO_P(frame, struct regval_ctr);
258 if (values == NULL) {
263 regdb_fetch_values(builtin_registry_values[i].path, values);
264 if (!regval_ctr_key_exists(values,
265 builtin_registry_values[i].valuename))
280 * There are potentially quite a few store operations which are all
281 * indiviually wrapped in tdb transactions. Wrapping them in a single
282 * transaction gives just a single transaction_commit() to actually do
283 * its fsync()s. See tdb/common/transaction.c for info about nested
284 * transaction behaviour.
287 if (regdb->transaction_start(regdb) != 0) {
288 DEBUG(0, ("init_registry_data: tdb_transaction_start "
290 werr = WERR_REG_IO_FAILURE;
294 /* loop over all of the predefined paths and add each component */
296 for (i=0; builtin_registry_paths[i] != NULL; i++) {
297 if (regdb_key_exists(builtin_registry_paths[i])) {
300 werr = init_registry_key_internal(builtin_registry_paths[i]);
301 if (!W_ERROR_IS_OK(werr)) {
306 /* loop over all of the predefined values and add each component */
308 for (i=0; builtin_registry_values[i].path != NULL; i++) {
310 values = TALLOC_ZERO_P(frame, struct regval_ctr);
311 if (values == NULL) {
316 regdb_fetch_values(builtin_registry_values[i].path, values);
318 /* preserve existing values across restarts. Only add new ones */
320 if (!regval_ctr_key_exists(values,
321 builtin_registry_values[i].valuename))
323 switch(builtin_registry_values[i].type) {
325 regval_ctr_addvalue(values,
326 builtin_registry_values[i].valuename,
328 (char*)&builtin_registry_values[i].data.dw_value,
334 builtin_registry_values[i].data.string,
336 regval_ctr_addvalue(values,
337 builtin_registry_values[i].valuename,
340 data.uni_str_len*sizeof(uint16));
344 DEBUG(0, ("init_registry_data: invalid value "
345 "type in builtin_registry_values "
347 builtin_registry_values[i].type));
349 regdb_store_values(builtin_registry_values[i].path,
355 if (regdb->transaction_commit(regdb) != 0) {
356 DEBUG(0, ("init_registry_data: Could not commit "
358 werr = WERR_REG_IO_FAILURE;
366 if (regdb->transaction_cancel(regdb) != 0) {
367 smb_panic("init_registry_data: tdb_transaction_cancel "
376 /***********************************************************************
377 Open the registry database
378 ***********************************************************************/
380 WERROR regdb_init(void)
382 const char *vstring = "INFO/version";
387 DEBUG(10, ("regdb_init: incrementing refcount (%d)\n",
393 regdb = db_open(NULL, state_path("registry.tdb"), 0,
394 REG_TDB_FLAGS, O_RDWR, 0600);
396 regdb = db_open(NULL, state_path("registry.tdb"), 0,
397 REG_TDB_FLAGS, O_RDWR|O_CREAT, 0600);
399 werr = ntstatus_to_werror(map_nt_error_from_unix(errno));
400 DEBUG(1,("regdb_init: Failed to open registry %s (%s)\n",
401 state_path("registry.tdb"), strerror(errno) ));
405 DEBUG(10,("regdb_init: Successfully created registry tdb\n"));
410 vers_id = dbwrap_fetch_int32(regdb, vstring);
412 if ( vers_id != REGVER_V1 ) {
414 /* any upgrade code here if needed */
415 DEBUG(10, ("regdb_init: got %s = %d != %d\n", vstring,
416 vers_id, REGVER_V1));
417 status = dbwrap_trans_store_int32(regdb, vstring, REGVER_V1);
418 if (!NT_STATUS_IS_OK(status)) {
419 DEBUG(1, ("regdb_init: error storing %s = %d: %s\n",
420 vstring, REGVER_V1, nt_errstr(status)));
421 return ntstatus_to_werror(status);
423 DEBUG(10, ("regdb_init: stored %s = %d\n",
424 vstring, REGVER_V1));
431 /***********************************************************************
432 Open the registry. Must already have been initialized by regdb_init()
433 ***********************************************************************/
435 WERROR regdb_open( void )
437 WERROR result = WERR_OK;
440 DEBUG(10,("regdb_open: incrementing refcount (%d)\n", regdb_refcount));
447 regdb = db_open(NULL, state_path("registry.tdb"), 0,
448 REG_TDB_FLAGS, O_RDWR, 0600);
450 result = ntstatus_to_werror( map_nt_error_from_unix( errno ) );
451 DEBUG(0,("regdb_open: Failed to open %s! (%s)\n",
452 state_path("registry.tdb"), strerror(errno) ));
458 DEBUG(10,("regdb_open: refcount reset (%d)\n", regdb_refcount));
463 /***********************************************************************
464 ***********************************************************************/
466 int regdb_close( void )
468 if (regdb_refcount == 0) {
474 DEBUG(10,("regdb_close: decrementing refcount (%d)\n", regdb_refcount));
476 if ( regdb_refcount > 0 )
479 SMB_ASSERT( regdb_refcount >= 0 );
485 WERROR regdb_transaction_start(void)
487 return (regdb->transaction_start(regdb) == 0) ?
488 WERR_OK : WERR_REG_IO_FAILURE;
491 WERROR regdb_transaction_commit(void)
493 return (regdb->transaction_commit(regdb) == 0) ?
494 WERR_OK : WERR_REG_IO_FAILURE;
497 WERROR regdb_transaction_cancel(void)
499 return (regdb->transaction_cancel(regdb) == 0) ?
500 WERR_OK : WERR_REG_IO_FAILURE;
503 /***********************************************************************
504 return the tdb sequence number of the registry tdb.
505 this is an indicator for the content of the registry
506 having changed. it will change upon regdb_init, too, though.
507 ***********************************************************************/
508 int regdb_get_seqnum(void)
510 return regdb->get_seqnum(regdb);
514 static WERROR regdb_delete_key_with_prefix(struct db_context *db,
519 WERROR werr = WERR_NOMEM;
520 TALLOC_CTX *mem_ctx = talloc_stackframe();
522 if (keyname == NULL) {
523 werr = WERR_INVALID_PARAM;
527 if (prefix == NULL) {
528 path = discard_const_p(char, keyname);
530 path = talloc_asprintf(mem_ctx, "%s/%s", prefix, keyname);
536 path = normalize_reg_path(mem_ctx, path);
541 werr = ntstatus_to_werror(dbwrap_delete_bystring(db, path));
543 /* treat "not" found" as ok */
544 if (W_ERROR_EQUAL(werr, WERR_NOT_FOUND)) {
549 talloc_free(mem_ctx);
554 static WERROR regdb_delete_values(const char *keyname)
556 return regdb_delete_key_with_prefix(regdb, keyname, REG_VALUE_PREFIX);
559 static WERROR regdb_delete_secdesc(const char *keyname)
561 return regdb_delete_key_with_prefix(regdb, keyname, REG_SECDESC_PREFIX);
564 static WERROR regdb_delete_subkeylist(const char *keyname)
566 return regdb_delete_key_with_prefix(regdb, keyname, NULL);
569 static WERROR regdb_delete_key_lists(const char *keyname)
573 werr = regdb_delete_values(keyname);
574 if (!W_ERROR_IS_OK(werr)) {
575 DEBUG(1, (__location__ " Deleting %s/%s failed: %s\n",
576 REG_VALUE_PREFIX, keyname, win_errstr(werr)));
580 werr = regdb_delete_secdesc(keyname);
581 if (!W_ERROR_IS_OK(werr)) {
582 DEBUG(1, (__location__ " Deleting %s/%s failed: %s\n",
583 REG_SECDESC_PREFIX, keyname, win_errstr(werr)));
587 werr = regdb_delete_subkeylist(keyname);
588 if (!W_ERROR_IS_OK(werr)) {
589 DEBUG(1, (__location__ " Deleting %s failed: %s\n",
590 keyname, win_errstr(werr)));
598 /***********************************************************************
599 Add subkey strings to the registry tdb under a defined key
600 fmt is the same format as tdb_pack except this function only supports
602 ***********************************************************************/
604 static bool regdb_store_keys_internal(const char *key, struct regsubkey_ctr *ctr)
607 uint8 *buffer = NULL;
611 uint32 num_subkeys = regsubkey_ctr_numkeys(ctr);
612 char *keyname = NULL;
613 TALLOC_CTX *ctx = talloc_stackframe();
620 keyname = talloc_strdup(ctx, key);
624 keyname = normalize_reg_path(ctx, keyname);
626 /* allocate some initial memory */
628 buffer = (uint8 *)SMB_MALLOC(1024);
629 if (buffer == NULL) {
635 /* store the number of subkeys */
637 len += tdb_pack(buffer+len, buflen-len, "d", num_subkeys);
639 /* pack all the strings */
641 for (i=0; i<num_subkeys; i++) {
644 thistime = tdb_pack(buffer+len, buflen-len, "f",
645 regsubkey_ctr_specific_key(ctr, i));
646 if (len+thistime > buflen) {
649 * tdb_pack hasn't done anything because of the short
650 * buffer, allocate extra space.
652 buffer = SMB_REALLOC_ARRAY(buffer, uint8_t,
655 DEBUG(0, ("regdb_store_keys: Failed to realloc "
656 "memory of size [%u]\n",
657 (unsigned int)(len+thistime)*2));
661 buflen = (len+thistime)*2;
662 thistime2 = tdb_pack(
663 buffer+len, buflen-len, "f",
664 regsubkey_ctr_specific_key(ctr, i));
665 if (thistime2 != thistime) {
666 DEBUG(0, ("tdb_pack failed\n"));
674 /* finally write out the data */
678 status = dbwrap_store_bystring(regdb, keyname, dbuf, TDB_REPLACE);
679 if (!NT_STATUS_IS_OK(status)) {
685 * Delete a sorted subkey cache for regdb_key_exists, will be
686 * recreated automatically
688 keyname = talloc_asprintf(ctx, "%s/%s", REG_SORTED_SUBKEYS_PREFIX,
690 if (keyname != NULL) {
691 dbwrap_delete_bystring(regdb, keyname);
700 /***********************************************************************
701 Store the new subkey record and create any child key records that
702 do not currently exist
703 ***********************************************************************/
705 bool regdb_store_keys(const char *key, struct regsubkey_ctr *ctr)
707 int num_subkeys, old_num_subkeys, i;
709 struct regsubkey_ctr *subkeys = NULL, *old_subkeys = NULL;
710 char *oldkeyname = NULL;
711 TALLOC_CTX *ctx = talloc_stackframe();
714 if (!regdb_key_is_base_key(key) && !regdb_key_exists(key)) {
719 * fetch a list of the old subkeys so we can determine if anything has
723 werr = regsubkey_ctr_init(ctx, &old_subkeys);
724 if (!W_ERROR_IS_OK(werr)) {
725 DEBUG(0,("regdb_store_keys: talloc() failure!\n"));
729 regdb_fetch_keys(key, old_subkeys);
731 num_subkeys = regsubkey_ctr_numkeys(ctr);
732 old_num_subkeys = regsubkey_ctr_numkeys(old_subkeys);
733 if ((num_subkeys && old_num_subkeys) &&
734 (num_subkeys == old_num_subkeys)) {
736 for (i = 0; i < num_subkeys; i++) {
737 if (strcmp(regsubkey_ctr_specific_key(ctr, i),
738 regsubkey_ctr_specific_key(old_subkeys, i))
744 if (i == num_subkeys) {
746 * Nothing changed, no point to even start a tdb
749 TALLOC_FREE(old_subkeys);
754 TALLOC_FREE(old_subkeys);
756 if (regdb->transaction_start(regdb) != 0) {
757 DEBUG(0, ("regdb_store_keys: transaction_start failed\n"));
762 * Re-fetch the old keys inside the transaction
765 werr = regsubkey_ctr_init(ctx, &old_subkeys);
766 if (!W_ERROR_IS_OK(werr)) {
767 DEBUG(0,("regdb_store_keys: talloc() failure!\n"));
771 regdb_fetch_keys(key, old_subkeys);
774 * Make the store operation as safe as possible without transactions:
776 * (1) For each subkey removed from ctr compared with old_subkeys:
778 * (a) First delete the value db entry.
780 * (b) Next delete the secdesc db record.
782 * (c) Then delete the subkey list entry.
784 * (2) Now write the list of subkeys of the parent key,
785 * deleting removed entries and adding new ones.
787 * (3) Finally create the subkey list entries for the added keys.
789 * This way if we crash half-way in between deleting the subkeys
790 * and storing the parent's list of subkeys, no old data can pop up
791 * out of the blue when re-adding keys later on.
794 /* (1) delete removed keys' lists (values/secdesc/subkeys) */
796 num_subkeys = regsubkey_ctr_numkeys(old_subkeys);
797 for (i=0; i<num_subkeys; i++) {
798 oldkeyname = regsubkey_ctr_specific_key(old_subkeys, i);
800 if (regsubkey_ctr_key_exists(ctr, oldkeyname)) {
802 * It's still around, don't delete
808 path = talloc_asprintf(ctx, "%s/%s", key, oldkeyname);
813 werr = regdb_delete_key_lists(path);
814 W_ERROR_NOT_OK_GOTO(werr, cancel);
819 TALLOC_FREE(old_subkeys);
821 /* (2) store the subkey list for the parent */
823 if (!regdb_store_keys_internal(key, ctr) ) {
824 DEBUG(0,("regdb_store_keys: Failed to store new subkey list "
825 "for parent [%s]\n", key));
829 /* (3) now create records for any subkeys that don't already exist */
831 num_subkeys = regsubkey_ctr_numkeys(ctr);
833 if (num_subkeys == 0) {
834 werr = regsubkey_ctr_init(ctx, &subkeys);
835 if (!W_ERROR_IS_OK(werr)) {
836 DEBUG(0,("regdb_store_keys: talloc() failure!\n"));
840 if (!regdb_store_keys_internal(key, subkeys)) {
841 DEBUG(0,("regdb_store_keys: Failed to store "
842 "new record for key [%s]\n", key));
845 TALLOC_FREE(subkeys);
849 for (i=0; i<num_subkeys; i++) {
850 path = talloc_asprintf(ctx, "%s/%s",
852 regsubkey_ctr_specific_key(ctr, i));
856 werr = regsubkey_ctr_init(ctx, &subkeys);
857 if (!W_ERROR_IS_OK(werr)) {
858 DEBUG(0,("regdb_store_keys: talloc() failure!\n"));
862 if (regdb_fetch_keys( path, subkeys ) == -1) {
863 /* create a record with 0 subkeys */
864 if (!regdb_store_keys_internal(path, subkeys)) {
865 DEBUG(0,("regdb_store_keys: Failed to store "
866 "new record for key [%s]\n", path));
871 TALLOC_FREE(subkeys);
875 if (regdb->transaction_commit(regdb) != 0) {
876 DEBUG(0, ("regdb_store_keys: Could not commit transaction\n"));
884 if (regdb->transaction_cancel(regdb) != 0) {
885 smb_panic("regdb_store_keys: transaction_cancel failed\n");
894 static WERROR regdb_create_subkey(const char *key, const char *subkey)
897 struct regsubkey_ctr *subkeys;
898 TALLOC_CTX *mem_ctx = talloc_stackframe();
900 if (!regdb_key_is_base_key(key) && !regdb_key_exists(key)) {
901 werr = WERR_NOT_FOUND;
905 werr = regsubkey_ctr_init(mem_ctx, &subkeys);
906 W_ERROR_NOT_OK_GOTO_DONE(werr);
908 if (regdb_fetch_keys(key, subkeys) < 0) {
909 werr = WERR_REG_IO_FAILURE;
913 if (regsubkey_ctr_key_exists(subkeys, subkey)) {
918 talloc_free(subkeys);
920 werr = regdb_transaction_start();
921 W_ERROR_NOT_OK_GOTO_DONE(werr);
923 werr = regsubkey_ctr_init(mem_ctx, &subkeys);
924 W_ERROR_NOT_OK_GOTO(werr, cancel);
926 if (regdb_fetch_keys(key, subkeys) < 0) {
927 werr = WERR_REG_IO_FAILURE;
931 werr = regsubkey_ctr_addkey(subkeys, subkey);
932 W_ERROR_NOT_OK_GOTO(werr, cancel);
934 if (!regdb_store_keys_internal(key, subkeys)) {
935 DEBUG(0, (__location__ " failed to store new subkey list for "
936 "parent key %s\n", key));
937 werr = WERR_REG_IO_FAILURE;
941 werr = regdb_transaction_commit();
942 if (!W_ERROR_IS_OK(werr)) {
943 DEBUG(0, (__location__ " failed to commit transaction: %s\n",
950 werr = regdb_transaction_cancel();
951 if (!W_ERROR_IS_OK(werr)) {
952 DEBUG(0, (__location__ " failed to cancel transaction: %s\n",
957 talloc_free(mem_ctx);
961 static WERROR regdb_delete_subkey(const char *key, const char *subkey)
964 struct regsubkey_ctr *subkeys;
966 TALLOC_CTX *mem_ctx = talloc_stackframe();
968 if (!regdb_key_is_base_key(key) && !regdb_key_exists(key)) {
969 werr = WERR_NOT_FOUND;
973 path = talloc_asprintf(mem_ctx, "%s/%s", key, subkey);
979 if (!regdb_key_exists(path)) {
984 werr = regdb_transaction_start();
985 W_ERROR_NOT_OK_GOTO_DONE(werr);
987 werr = regdb_delete_key_lists(path);
988 W_ERROR_NOT_OK_GOTO(werr, cancel);
990 werr = regsubkey_ctr_init(mem_ctx, &subkeys);
991 W_ERROR_NOT_OK_GOTO(werr, cancel);
993 if (regdb_fetch_keys(key, subkeys) < 0) {
994 werr = WERR_REG_IO_FAILURE;
998 werr = regsubkey_ctr_delkey(subkeys, subkey);
999 W_ERROR_NOT_OK_GOTO(werr, cancel);
1001 if (!regdb_store_keys_internal(key, subkeys)) {
1002 DEBUG(0, (__location__ " failed to store new subkey_list for "
1003 "parent key %s\n", key));
1004 werr = WERR_REG_IO_FAILURE;
1008 werr = regdb_transaction_commit();
1009 if (!W_ERROR_IS_OK(werr)) {
1010 DEBUG(0, (__location__ " failed to commit transaction: %s\n",
1017 werr2 = regdb_transaction_cancel();
1018 if (!W_ERROR_IS_OK(werr2)) {
1019 DEBUG(0, (__location__ " failed to cancel transaction: %s\n",
1020 win_errstr(werr2)));
1024 talloc_free(mem_ctx);
1028 static TDB_DATA regdb_fetch_key_internal(TALLOC_CTX *mem_ctx, const char *key)
1033 path = normalize_reg_path(mem_ctx, key);
1035 return make_tdb_data(NULL, 0);
1038 data = dbwrap_fetch_bystring(regdb, mem_ctx, path);
1046 * check whether a given key name represents a base key,
1047 * i.e one without a subkey separator ('/' or '\').
1049 static bool regdb_key_is_base_key(const char *key)
1051 TALLOC_CTX *mem_ctx = talloc_stackframe();
1059 path = normalize_reg_path(mem_ctx, key);
1061 DEBUG(0, ("out of memory! (talloc failed)\n"));
1065 if (*path == '\0') {
1069 ret = (strrchr(path, '/') == NULL);
1072 TALLOC_FREE(mem_ctx);
1077 * regdb_key_exists() is a very frequent operation. It can be quite
1078 * time-consuming to fully fetch the parent's subkey list, talloc_strdup all
1079 * subkeys and then compare the keyname linearly to all the parent's subkeys.
1081 * The following code tries to make this operation as efficient as possible:
1082 * Per registry key we create a list of subkeys that is very efficient to
1083 * search for existence of a subkey. Its format is:
1085 * 4 bytes num_subkeys
1086 * 4*num_subkey bytes offset into the string array
1087 * then follows a sorted list of subkeys in uppercase
1089 * This record is created by create_sorted_subkeys() on demand if it does not
1090 * exist. scan_parent_subkeys() uses regdb->parse_record to search the sorted
1091 * list, the parsing code and the binary search can be found in
1092 * parent_subkey_scanner. The code uses parse_record() to avoid a memcpy of
1093 * the potentially large subkey record.
1095 * The sorted subkey record is deleted in regdb_store_keys_internal and
1096 * recreated on demand.
1099 static int cmp_keynames(const void *p1, const void *p2)
1101 return StrCaseCmp(*((char **)p1), *((char **)p2));
1104 static bool create_sorted_subkeys(const char *key, const char *sorted_keyname)
1106 char **sorted_subkeys;
1107 struct regsubkey_ctr *ctr;
1108 bool result = false;
1117 if (regdb->transaction_start(regdb) != 0) {
1118 DEBUG(0, ("create_sorted_subkeys: transaction_start "
1123 werr = regsubkey_ctr_init(talloc_tos(), &ctr);
1124 if (!W_ERROR_IS_OK(werr)) {
1128 res = regdb_fetch_keys(key, ctr);
1133 num_subkeys = regsubkey_ctr_numkeys(ctr);
1134 sorted_subkeys = talloc_array(ctr, char *, num_subkeys);
1135 if (sorted_subkeys == NULL) {
1139 len = 4 + 4*num_subkeys;
1141 for (i = 0; i < num_subkeys; i++) {
1142 sorted_subkeys[i] = talloc_strdup_upper(sorted_subkeys,
1143 regsubkey_ctr_specific_key(ctr, i));
1144 if (sorted_subkeys[i] == NULL) {
1147 len += strlen(sorted_subkeys[i])+1;
1150 qsort(sorted_subkeys, num_subkeys, sizeof(char *), cmp_keynames);
1152 buf = talloc_array(ctr, char, len);
1156 p = buf + 4 + 4*num_subkeys;
1158 SIVAL(buf, 0, num_subkeys);
1160 for (i=0; i < num_subkeys; i++) {
1161 ptrdiff_t offset = p - buf;
1162 SIVAL(buf, 4 + 4*i, offset);
1163 strlcpy(p, sorted_subkeys[i], len-offset);
1164 p += strlen(sorted_subkeys[i]) + 1;
1167 status = dbwrap_store_bystring(
1168 regdb, sorted_keyname, make_tdb_data((uint8_t *)buf, len),
1170 if (!NT_STATUS_IS_OK(status)) {
1172 * Don't use a "goto fail;" here, this would commit the broken
1173 * transaction. See below for an explanation.
1175 if (regdb->transaction_cancel(regdb) == -1) {
1176 DEBUG(0, ("create_sorted_subkeys: transaction_cancel "
1186 * We only get here via the "goto fail" when we did not write anything
1187 * yet. Using transaction_commit even in a failure case is necessary
1188 * because this (disposable) call might be nested in other
1189 * transactions. Doing a cancel here would destroy the possibility of
1190 * a transaction_commit for transactions that we might be wrapped in.
1192 if (regdb->transaction_commit(regdb) == -1) {
1193 DEBUG(0, ("create_sorted_subkeys: transaction_start "
1202 struct scan_subkey_state {
1208 static int parent_subkey_scanner(TDB_DATA key, TDB_DATA data,
1211 struct scan_subkey_state *state =
1212 (struct scan_subkey_state *)private_data;
1213 uint32_t num_subkeys;
1216 if (data.dsize < sizeof(uint32_t)) {
1220 state->scanned = true;
1221 state->found = false;
1223 tdb_unpack(data.dptr, data.dsize, "d", &num_subkeys);
1229 uint32_t idx = (l+u)/2;
1230 char *s = (char *)data.dptr + IVAL(data.dptr, 4 + 4*idx);
1231 int comparison = strcmp(state->name, s);
1233 if (comparison < 0) {
1235 } else if (comparison > 0) {
1238 state->found = true;
1245 static bool scan_parent_subkeys(const char *parent, const char *name)
1249 struct scan_subkey_state state = { 0, };
1250 bool result = false;
1255 path = normalize_reg_path(talloc_tos(), parent);
1260 key = talloc_asprintf(talloc_tos(), "%s/%s",
1261 REG_SORTED_SUBKEYS_PREFIX, path);
1266 state.name = talloc_strdup_upper(talloc_tos(), name);
1267 if (state.name == NULL) {
1270 state.scanned = false;
1272 res = regdb->parse_record(regdb, string_term_tdb_data(key),
1273 parent_subkey_scanner, &state);
1275 if (state.scanned) {
1276 result = state.found;
1278 if (!create_sorted_subkeys(path, key)) {
1281 res = regdb->parse_record(regdb, string_term_tdb_data(key),
1282 parent_subkey_scanner, &state);
1283 if ((res == 0) && (state.scanned)) {
1284 result = state.found;
1290 TALLOC_FREE(state.name);
1295 * Check for the existence of a key.
1297 * Existence of a key is authoritatively defined by its
1298 * existence in the list of subkeys of its parent key.
1299 * The exeption of this are keys without a parent key,
1300 * i.e. the "base" keys (HKLM, HKCU, ...).
1302 static bool regdb_key_exists(const char *key)
1304 TALLOC_CTX *mem_ctx = talloc_stackframe();
1313 path = normalize_reg_path(mem_ctx, key);
1315 DEBUG(0, ("out of memory! (talloc failed)\n"));
1319 if (*path == '\0') {
1323 p = strrchr(path, '/');
1325 /* this is a base key */
1326 value = regdb_fetch_key_internal(mem_ctx, path);
1327 ret = (value.dptr != NULL);
1330 ret = scan_parent_subkeys(path, p+1);
1334 TALLOC_FREE(mem_ctx);
1339 /***********************************************************************
1340 Retrieve an array of strings containing subkeys. Memory should be
1341 released by the caller.
1342 ***********************************************************************/
1344 int regdb_fetch_keys(const char *key, struct regsubkey_ctr *ctr)
1353 TALLOC_CTX *frame = talloc_stackframe();
1356 DEBUG(11,("regdb_fetch_keys: Enter key => [%s]\n", key ? key : "NULL"));
1358 if (!regdb_key_exists(key)) {
1362 werr = regsubkey_ctr_set_seqnum(ctr, regdb_get_seqnum());
1363 if (!W_ERROR_IS_OK(werr)) {
1367 value = regdb_fetch_key_internal(frame, key);
1369 if (value.dptr == NULL) {
1370 DEBUG(10, ("regdb_fetch_keys: no subkeys found for key [%s]\n",
1377 buflen = value.dsize;
1378 len = tdb_unpack( buf, buflen, "d", &num_items);
1380 for (i=0; i<num_items; i++) {
1381 len += tdb_unpack(buf+len, buflen-len, "f", subkeyname);
1382 werr = regsubkey_ctr_addkey(ctr, subkeyname);
1383 if (!W_ERROR_IS_OK(werr)) {
1384 DEBUG(5, ("regdb_fetch_keys: regsubkey_ctr_addkey "
1385 "failed: %s\n", win_errstr(werr)));
1390 DEBUG(11,("regdb_fetch_keys: Exit [%d] items\n", num_items));
1398 /****************************************************************************
1399 Unpack a list of registry values frem the TDB
1400 ***************************************************************************/
1402 static int regdb_unpack_values(struct regval_ctr *values, uint8 *buf, int buflen)
1409 uint32 num_values = 0;
1412 /* loop and unpack the rest of the registry values */
1414 len += tdb_unpack(buf+len, buflen-len, "d", &num_values);
1416 for ( i=0; i<num_values; i++ ) {
1417 /* unpack the next regval */
1422 valuename[0] = '\0';
1423 len += tdb_unpack(buf+len, buflen-len, "fdB",
1429 /* add the new value. Paranoid protective code -- make sure data_p is valid */
1431 if (*valuename && size && data_p) {
1432 regval_ctr_addvalue(values, valuename, type,
1433 (const char *)data_p, size);
1435 SAFE_FREE(data_p); /* 'B' option to tdb_unpack does a malloc() */
1437 DEBUG(8,("specific: [%s], len: %d\n", valuename, size));
1443 /****************************************************************************
1444 Pack all values in all printer keys
1445 ***************************************************************************/
1447 static int regdb_pack_values(struct regval_ctr *values, uint8 *buf, int buflen)
1451 struct regval_blob *val;
1457 num_values = regval_ctr_numvals( values );
1459 /* pack the number of values first */
1461 len += tdb_pack( buf+len, buflen-len, "d", num_values );
1463 /* loop over all values */
1465 for ( i=0; i<num_values; i++ ) {
1466 val = regval_ctr_specific_value( values, i );
1467 len += tdb_pack(buf+len, buflen-len, "fdB",
1471 regval_data_p(val) );
1477 /***********************************************************************
1478 Retrieve an array of strings containing subkeys. Memory should be
1479 released by the caller.
1480 ***********************************************************************/
1482 int regdb_fetch_values(const char* key, struct regval_ctr *values)
1484 char *keystr = NULL;
1485 TALLOC_CTX *ctx = talloc_stackframe();
1489 DEBUG(10,("regdb_fetch_values: Looking for value of key [%s] \n", key));
1491 if (!regdb_key_exists(key)) {
1495 keystr = talloc_asprintf(ctx, "%s/%s", REG_VALUE_PREFIX, key);
1500 values->seqnum = regdb_get_seqnum();
1502 value = regdb_fetch_key_internal(ctx, keystr);
1505 /* all keys have zero values by default */
1509 regdb_unpack_values(values, value.dptr, value.dsize);
1510 ret = regval_ctr_numvals(values);
1517 bool regdb_store_values(const char *key, struct regval_ctr *values)
1519 TDB_DATA old_data, data;
1520 char *keystr = NULL;
1521 TALLOC_CTX *ctx = talloc_stackframe();
1524 bool result = false;
1526 DEBUG(10,("regdb_store_values: Looking for value of key [%s] \n", key));
1528 if (!regdb_key_exists(key)) {
1534 len = regdb_pack_values(values, data.dptr, data.dsize);
1536 DEBUG(0,("regdb_store_values: unable to pack values. len <= 0\n"));
1540 data.dptr = TALLOC_ARRAY(ctx, uint8, len);
1543 len = regdb_pack_values(values, data.dptr, data.dsize);
1545 SMB_ASSERT( len == data.dsize );
1547 keystr = talloc_asprintf(ctx, "%s/%s", REG_VALUE_PREFIX, key );
1551 keystr = normalize_reg_path(ctx, keystr);
1556 old_data = dbwrap_fetch_bystring(regdb, ctx, keystr);
1558 if ((old_data.dptr != NULL)
1559 && (old_data.dsize == data.dsize)
1560 && (memcmp(old_data.dptr, data.dptr, data.dsize) == 0))
1566 status = dbwrap_trans_store_bystring(regdb, keystr, data, TDB_REPLACE);
1568 result = NT_STATUS_IS_OK(status);
1575 static WERROR regdb_get_secdesc(TALLOC_CTX *mem_ctx, const char *key,
1576 struct security_descriptor **psecdesc)
1581 TALLOC_CTX *tmp_ctx = talloc_stackframe();
1582 WERROR err = WERR_OK;
1584 DEBUG(10, ("regdb_get_secdesc: Getting secdesc of key [%s]\n", key));
1586 if (!regdb_key_exists(key)) {
1591 tdbkey = talloc_asprintf(tmp_ctx, "%s/%s", REG_SECDESC_PREFIX, key);
1592 if (tdbkey == NULL) {
1596 normalize_dbkey(tdbkey);
1598 data = dbwrap_fetch_bystring(regdb, tmp_ctx, tdbkey);
1599 if (data.dptr == NULL) {
1604 status = unmarshall_sec_desc(mem_ctx, (uint8 *)data.dptr, data.dsize,
1607 if (NT_STATUS_EQUAL(status, NT_STATUS_NO_MEMORY)) {
1609 } else if (!NT_STATUS_IS_OK(status)) {
1610 err = WERR_REG_CORRUPT;
1614 TALLOC_FREE(tmp_ctx);
1618 static WERROR regdb_set_secdesc(const char *key,
1619 struct security_descriptor *secdesc)
1621 TALLOC_CTX *mem_ctx = talloc_stackframe();
1623 WERROR err = WERR_NOMEM;
1626 if (!regdb_key_exists(key)) {
1631 tdbkey = talloc_asprintf(mem_ctx, "%s/%s", REG_SECDESC_PREFIX, key);
1632 if (tdbkey == NULL) {
1635 normalize_dbkey(tdbkey);
1637 if (secdesc == NULL) {
1638 /* assuming a delete */
1639 err = ntstatus_to_werror(dbwrap_trans_delete_bystring(regdb,
1644 err = ntstatus_to_werror(marshall_sec_desc(mem_ctx, secdesc,
1647 W_ERROR_NOT_OK_GOTO_DONE(err);
1649 err = ntstatus_to_werror(dbwrap_trans_store_bystring(regdb, tdbkey,
1653 TALLOC_FREE(mem_ctx);
1657 bool regdb_subkeys_need_update(struct regsubkey_ctr *subkeys)
1659 return (regdb_get_seqnum() != regsubkey_ctr_get_seqnum(subkeys));
1662 bool regdb_values_need_update(struct regval_ctr *values)
1664 return (regdb_get_seqnum() != values->seqnum);
1668 * Table of function pointers for default access
1671 struct registry_ops regdb_ops = {
1672 .fetch_subkeys = regdb_fetch_keys,
1673 .fetch_values = regdb_fetch_values,
1674 .store_subkeys = regdb_store_keys,
1675 .store_values = regdb_store_values,
1676 .create_subkey = regdb_create_subkey,
1677 .delete_subkey = regdb_delete_subkey,
1678 .get_secdesc = regdb_get_secdesc,
1679 .set_secdesc = regdb_set_secdesc,
1680 .subkeys_need_update = regdb_subkeys_need_update,
1681 .values_need_update = regdb_values_need_update