From: Michael Adam Date: Thu, 12 Apr 2012 20:17:35 +0000 (+0200) Subject: s3:registry: wrap reg_createkey() in a transaction X-Git-Url: http://git.samba.org/?p=ddiss%2Fsamba.git;a=commitdiff_plain;h=14d9621c39c67872316c6d4f11387b7c3a6dbb00 s3:registry: wrap reg_createkey() in a transaction This is wrong layering (calling into regdb_transaction* in the reg_api code) but fixes a potential race. It makes the multi-step create procedure atomic. This should completely be done in the backend. (cherry picked from commit 65d9b116d0283b010e9e3c9ecf185ca42850838e) --- diff --git a/source3/registry/reg_api.c b/source3/registry/reg_api.c index b8d8f2cc29f..c7777a120f3 100644 --- a/source3/registry/reg_api.c +++ b/source3/registry/reg_api.c @@ -579,6 +579,13 @@ WERROR reg_createkey(TALLOC_CTX *ctx, struct registry_key *parent, goto done; } + err = regdb_transaction_start(); + if (!W_ERROR_IS_OK(err)) { + DEBUG(0, ("reg_createkey: failed to start transaction: %s\n", + win_errstr(err))); + goto done; + } + while ((end = strchr(path, '\\')) != NULL) { struct registry_key *tmp; enum winreg_CreateAction action; @@ -588,7 +595,7 @@ WERROR reg_createkey(TALLOC_CTX *ctx, struct registry_key *parent, err = reg_createkey(mem_ctx, key, path, KEY_ENUMERATE_SUB_KEYS, &tmp, &action); if (!W_ERROR_IS_OK(err)) { - goto done; + goto trans_done; } if (key != parent) { @@ -609,14 +616,14 @@ WERROR reg_createkey(TALLOC_CTX *ctx, struct registry_key *parent, if (paction != NULL) { *paction = REG_OPENED_EXISTING_KEY; } - goto done; + goto trans_done; } if (!W_ERROR_EQUAL(err, WERR_BADFILE)) { /* * Something but "notfound" has happened, so bail out */ - goto done; + goto trans_done; } /* @@ -627,7 +634,7 @@ WERROR reg_createkey(TALLOC_CTX *ctx, struct registry_key *parent, err = reg_openkey(mem_ctx, key, "", KEY_CREATE_SUB_KEY, &create_parent); if (!W_ERROR_IS_OK(err)) { - goto done; + goto trans_done; } /* @@ -635,10 +642,14 @@ WERROR reg_createkey(TALLOC_CTX *ctx, struct registry_key *parent, */ err = fill_subkey_cache(create_parent); - if (!W_ERROR_IS_OK(err)) goto done; + if (!W_ERROR_IS_OK(err)) { + goto trans_done; + } err = create_reg_subkey(key->key, path); - W_ERROR_NOT_OK_GOTO_DONE(err); + if (!W_ERROR_IS_OK(err)) { + goto trans_done; + } /* * Now open the newly created key @@ -649,6 +660,19 @@ WERROR reg_createkey(TALLOC_CTX *ctx, struct registry_key *parent, *paction = REG_CREATED_NEW_KEY; } +trans_done: + if (W_ERROR_IS_OK(err)) { + err = regdb_transaction_commit(); + if (!W_ERROR_IS_OK(err)) { + DEBUG(0, ("reg_createkey: Error committing transaction: %s\n", win_errstr(err))); + } + } else { + WERROR err1 = regdb_transaction_cancel(); + if (!W_ERROR_IS_OK(err1)) { + DEBUG(0, ("reg_createkey: Error cancelling transaction: %s\n", win_errstr(err1))); + } + } + done: TALLOC_FREE(mem_ctx); return err;