summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Sharpe <sharpe@samba.org>2003-04-20 04:53:55 +0000
committerRichard Sharpe <sharpe@samba.org>2003-04-20 04:53:55 +0000
commite5f79e7d960277775141f1b7acd4a1f65ac15454 (patch)
tree90e56050c440a149abdd0ee0c93f60b1cd407f4d
parentfdd5d9739a25209b091153a171352a9addcffc0f (diff)
downloadsamba-e5f79e7d960277775141f1b7acd4a1f65ac15454.tar.gz
samba-e5f79e7d960277775141f1b7acd4a1f65ac15454.tar.bz2
samba-e5f79e7d960277775141f1b7acd4a1f65ac15454.zip
More functionality, esp around adding keys and inheritance of security
descriptors etc ... (This used to be commit b8e85afefbe52701317632d1c1a446785ed66abf)
-rw-r--r--source3/utils/editreg.c27
1 files changed, 26 insertions, 1 deletions
diff --git a/source3/utils/editreg.c b/source3/utils/editreg.c
index 2c8f543690..b8670eb8b6 100644
--- a/source3/utils/editreg.c
+++ b/source3/utils/editreg.c
@@ -989,6 +989,18 @@ REG_KEY *nt_create_reg_key1(char *name, REG_KEY *parent)
return NULL;
}
+/*
+ * We will implement inheritence that is based on what the parent's SEC_DESC
+ * says, but the Owner and Group SIDs can be overwridden from the command line
+ * and additional ACEs can be applied from the command line etc.
+ */
+KEY_SEC_DESC *nt_inherit_security(REG_KEY *key)
+{
+
+ if (!key) return NULL;
+ return key->security;
+}
+
REG_KEY *nt_add_reg_key(REG_KEY *key, char *name, int create);
REG_KEY *nt_add_reg_key_list(REG_KEY *key, char * name, int create)
{
@@ -1054,14 +1066,27 @@ REG_KEY *nt_add_reg_key_list(REG_KEY *key, char * name, int create)
bzero(tmp, sizeof(REG_KEY));
+ tmp->name = strdup(c1);
+ if (!tmp->name) goto error;
+ tmp->owner = key;
+ /*
+ * Next, pull security from the parent, but override by with
+ * anything passed in on the command line
+ */
+ tmp->security = nt_inherit_security(key);
+
list->keys[list->key_count - 1] = tmp;
if (c2) {
- ret = nt_add_reg_key(key, name, True);
+ ret = nt_add_reg_key(key, c2, True);
}
+ if (lname) free(lname);
+
return ret;
+
error:
+ if (tmp) free(tmp);
if (lname) free(lname);
return NULL;
}