r23578: When calling DeleteKey for a key that has subkey(s), Windows
authorMichael Adam <obnox@samba.org>
Thu, 21 Jun 2007 22:18:42 +0000 (22:18 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 17:23:32 +0000 (12:23 -0500)
returns WERR_ACCESS_DENIED. This adapts reg_deletekey to behave
the same way.

Michael
(This used to be commit 0c9cb69b45e8c51b8c3fa0b0d034a6cad2374055)

source3/registry/reg_api.c

index 4bcc6d73035202d68d3802597b10e70ba172f267..e163759dabcf6e371cde00abe2c25a266e36bf03 100644 (file)
@@ -386,6 +386,7 @@ WERROR reg_deletekey(struct registry_key *parent, const char *path)
        TALLOC_CTX *mem_ctx;
        char *name, *end;
        int num_subkeys;
+       struct registry_key *tmp_key;
 
        if (!(mem_ctx = talloc_init("reg_createkey"))) return WERR_NOMEM;
 
@@ -394,18 +395,30 @@ WERROR reg_deletekey(struct registry_key *parent, const char *path)
                goto error;
        }
 
-       if ((end = strrchr(name, '\\')) != NULL) {
-               struct registry_key *tmp;
+       /* check if the key has subkeys */
+       err = reg_openkey(mem_ctx, parent, name, REG_KEY_READ, &tmp_key);
+       if (!W_ERROR_IS_OK(err)) {
+               goto error;
+       }
+       if (!W_ERROR_IS_OK(err = fill_subkey_cache(tmp_key))) {
+               goto error;
+       }
+       if (tmp_key->subkeys->num_subkeys > 0) {
+               err = WERR_ACCESS_DENIED;
+               goto error;
+       }
 
+       /* no subkeys - proceed with delete */
+       if ((end = strrchr(name, '\\')) != NULL) {
                *end = '\0';
 
                err = reg_openkey(mem_ctx, parent, name,
-                                 SEC_RIGHTS_CREATE_SUBKEY, &tmp);
+                                 SEC_RIGHTS_CREATE_SUBKEY, &tmp_key);
                if (!W_ERROR_IS_OK(err)) {
                        goto error;
                }
 
-               parent = tmp;
+               parent = tmp_key;
                name = end+1;
        }