From 94b6f516af1d0400077a46c7a1eab9022e7f4ad0 Mon Sep 17 00:00:00 2001 From: Richard Sharpe Date: Mon, 21 Apr 2003 05:18:13 +0000 Subject: Start the outline of the code to store a registry tree ... (This used to be commit 03fce4ed0f73586928424e75bd6d7db9ff7105dd) --- source3/utils/editreg.c | 101 +++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 99 insertions(+), 2 deletions(-) diff --git a/source3/utils/editreg.c b/source3/utils/editreg.c index 4df0b5f677..72ae17a45f 100644 --- a/source3/utils/editreg.c +++ b/source3/utils/editreg.c @@ -331,6 +331,7 @@ Hope this helps.... (Although it was "fun" for me to uncover this things, static int verbose = 0; static int print_security = 0; static int full_print = 0; +static char *def_owner_sid_str = NULL; /* * These definitions are for the in-memory registry structure. @@ -594,6 +595,7 @@ struct regf_struct_s { REG_KEY *root; /* Root of the tree for this file */ int sk_count, sk_map_size; SK_MAP *sk_map; + char *owner_sid_str; SEC_DESC *def_sec_desc; }; @@ -1172,6 +1174,27 @@ int string_to_sid(DOM_SID **sid, char *sid_str) return 1; } +/* + * Create an ACE + */ +ACE *nt_create_ace(int type, int flags, unsigned int perms, char *sid) +{ + ACE *ace; + + ace = (ACE *)malloc(sizeof(ACE)); + if (!ace) goto error; + ace->type = type; + ace->flags = flags; + ace->perms = perms; + if (!string_to_sid(&ace->trustee, sid)) + goto error; + return ace; + + error: + if (ace) nt_delete_ace(ace); + return NULL; +} + /* * Create a default ACL */ @@ -1179,13 +1202,34 @@ ACL *nt_create_default_acl(REGF *regf) { ACL *acl; - acl = (ACL *)malloc(sizeof(ACL)); + acl = (ACL *)malloc(sizeof(ACL) + 7*sizeof(ACE *)); if (!acl) goto error; + acl->rev = 2; + acl->refcnt = 1; + acl->num_aces = 8; + + acl->aces[0] = nt_create_ace(0x00, 0x0, 0xF003F, regf->owner_sid_str); + if (!acl->aces[0]) goto error; + acl->aces[1] = nt_create_ace(0x00, 0x0, 0xF003F, "S-1-5-18"); + if (!acl->aces[1]) goto error; + acl->aces[2] = nt_create_ace(0x00, 0x0, 0xF003F, "S-1-5-32-544"); + if (!acl->aces[2]) goto error; + acl->aces[3] = nt_create_ace(0x00, 0x0, 0x20019, "S-1-5-12"); + if (!acl->aces[3]) goto error; + acl->aces[4] = nt_create_ace(0x00, 0x0B, 0x10000000, regf->owner_sid_str); + if (!acl->aces[4]) goto error; + acl->aces[5] = nt_create_ace(0x00, 0x0B, 0x10000000, "S-1-5-18"); + if (!acl->aces[5]) goto error; + acl->aces[6] = nt_create_ace(0x00, 0x0B, 0x10000000, "S-1-5-32-544"); + if (!acl->aces[6]) goto error; + acl->aces[7] = nt_create_ace(0x00, 0x0B, 0x80000000, "S-1-5-12"); + if (!acl->aces[7]) goto error; return acl; error: if (acl) nt_delete_acl(acl); + return NULL; } /* @@ -1556,6 +1600,7 @@ REGF *nt_create_regf(void) REGF *tmp = (REGF *)malloc(sizeof(REGF)); if (!tmp) return tmp; bzero(tmp, sizeof(REGF)); + tmp->owner_sid_str = def_owner_sid_str; return tmp; } @@ -2352,6 +2397,33 @@ int nt_load_registry(REGF *regf) return 1; } +/* + * These structures keep track of the output format of the registry + */ +typedef struct hbin_blk_s { + struct hbin_blk_s *next; + unsigned int file_offset; /* Offset in file */ + unsigned int free_space; /* Amount of free space in block */ + unsigned int fsp_off; /* Start of free space in block */ +} HBIN_BLK; + +/* + * Store a KEY in the file ... + */ +int nt_store_reg_key(REGF *regf, REG_KEY *key) +{ + + return 0; +} + +/* + * Store the registry header ... + */ +int nt_store_reg_header(REGF *regf){ + + return 0; +} + /* * Store the registry in the output file * We write out the header and then each of the keys etc into the file @@ -3243,6 +3315,7 @@ int main(int argc, char *argv[]) char *cmd_file_name = NULL; char *out_file_name = NULL; CMD_FILE *cmd_file = NULL; + DOM_SID *lsid; if (argc < 2) { usage(); @@ -3253,7 +3326,7 @@ int main(int argc, char *argv[]) * Now, process the arguments */ - while ((opt = getopt(argc, argv, "fspvko:c:")) != EOF) { + while ((opt = getopt(argc, argv, "fspvko:O:c:")) != EOF) { switch (opt) { case 'c': commands = 1; @@ -3271,6 +3344,19 @@ int main(int argc, char *argv[]) regf_opt += 2; break; + case 'O': + def_owner_sid_str = strdup(optarg); + regf_opt += 2; + if (!string_to_sid(&lsid, def_owner_sid_str)) { + fprintf(stderr, "Default Owner SID: %s is incorrectly formatted\n", + def_owner_sid_str); + free(def_owner_sid_str); + def_owner_sid_str = NULL; + } + else + nt_delete_sid(lsid); + break; + case 'p': print_keys++; regf_opt++; @@ -3298,6 +3384,17 @@ int main(int argc, char *argv[]) } } + /* + * We only want to complain about the lack of a default owner SID if + * we need one. This approximates that need + */ + if (!def_owner_sid_str) { + def_owner_sid_str = "S-1-5-21-1-2-3-4"; + if (out_file_name || verbose) + fprintf(stderr, "Warning, default owner SID not set. Setting to %s\n", + def_owner_sid_str); + } + if ((regf = nt_create_regf()) == NULL) { fprintf(stderr, "Could not create registry object: %s\n", strerror(errno)); exit(2); -- cgit