Skip to content

Commit

Permalink
Fix ini parsing in the s3 gpext modules. Fix ini parser API. Make the…
Browse files Browse the repository at this point in the history
… build work

Signed-off-by: Günther Deschner <[email protected]>
  • Loading branch information
synnack authored and gd committed Apr 20, 2009
1 parent 933482e commit 171a361
Show file tree
Hide file tree
Showing 7 changed files with 41 additions and 21 deletions.
3 changes: 2 additions & 1 deletion libgpo/config.mk
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
PRIVATE_DEPENDENCIES = LIBLDB LIBSAMBA-NET

LIBGPO_OBJ_FILES = ../libgpo/gpo_util.o ../libgpo/gpo_sec.o \
../libgpo/gpext/gpext.o ../libgpo/gpo_fetch.o \
../libgpo/gpext/gpext.o \
../libgpo/gpo_fetch.o ../libgpo/gpo_ini.o \
$(libgpodir)/ads_convenience.o $(libgpodir)/gpo_filesync.o
1 change: 1 addition & 0 deletions libgpo/gpo_fetch.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#include "includes.h"
#include "system/filesys.h"
#include "../libgpo/gpo.h"
#include "../libgpo/gpo_ini.h"

#if _SAMBA_BUILD_ == 4
#include "param/param.h"
Expand Down
19 changes: 15 additions & 4 deletions libgpo/gpo_ini.c
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ NTSTATUS gp_inifile_init_context(TALLOC_CTX *mem_ctx,
{
struct gp_inifile_context *ctx = NULL;
NTSTATUS status;
int rv;
char *tmp_filename = NULL;
const char *ini_filename = NULL;

Expand All @@ -192,6 +193,12 @@ NTSTATUS gp_inifile_init_context(TALLOC_CTX *mem_ctx,
goto failed;
}

rv = pm_process(tmp_filename, change_section, store_keyval_pair, ctx);
if (!rv) {
return NT_STATUS_NO_SUCH_FILE;
}


ctx->generated_filename = tmp_filename;
ctx->mem_ctx = mem_ctx;

Expand All @@ -217,7 +224,7 @@ NTSTATUS gp_inifile_init_context(TALLOC_CTX *mem_ctx,
#define GPT_INI_PARAMETER_VERSION "Version"
#define GPT_INI_PARAMETER_DISPLAYNAME "displayName"

NTSTATUS parse_gpt_ini(struct gp_inifile_context *ctx,
NTSTATUS parse_gpt_ini(TALLOC_CTX *mem_ctx,
const char *filename,
uint32_t *version,
char **display_name)
Expand All @@ -226,12 +233,16 @@ NTSTATUS parse_gpt_ini(struct gp_inifile_context *ctx,
int rv;
int v = 0;
char *name = NULL;
struct gp_inifile_context *ctx;

if (!filename) {
return NT_STATUS_INVALID_PARAMETER;
}

rv = pm_process(filename, change_section, store_keyval_pair, NULL);
ctx = talloc_zero(mem_ctx, struct gp_inifile_context);
NT_STATUS_HAVE_NO_MEMORY(ctx);

rv = pm_process(filename, change_section, store_keyval_pair, ctx);
if (!rv) {
return NT_STATUS_NO_SUCH_FILE;
}
Expand Down Expand Up @@ -263,7 +274,7 @@ NTSTATUS parse_gpt_ini(struct gp_inifile_context *ctx,
*version = v;
}

result = NT_STATUS_OK;
talloc_free(ctx);

return result;
return NT_STATUS_OK;
}
2 changes: 1 addition & 1 deletion libgpo/gpo_ini.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ NTSTATUS gp_inifile_init_context(TALLOC_CTX *mem_ctx, uint32_t flags,
const char *unix_path, const char *suffix,
struct gp_inifile_context **ctx_ret);

NTSTATUS parse_gpt_ini(struct gp_inifile_context *ctx,
NTSTATUS parse_gpt_ini(TALLOC_CTX *ctx,
const char *filename,
uint32_t *version,
char **display_name);
2 changes: 1 addition & 1 deletion source3/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ LIBADDNS_OBJ = $(LIBADDNS_OBJ0) $(SOCKET_WRAPPER_OBJ)

GPEXT_OBJ = ../libgpo/gpext/gpext.o @GPEXT_STATIC@

LIBGPO_OBJ0 = ../libgpo/gpo_ldap.o libgpo/gpo_ini.o ../libgpo/gpo_util.o \
LIBGPO_OBJ0 = ../libgpo/gpo_ldap.o ../libgpo/gpo_ini.o ../libgpo/gpo_util.o \
../libgpo/gpo_fetch.o libgpo/gpo_filesync.o ../libgpo/gpo_sec.o \
libgpo/gpo_reg.o \
$(GPEXT_OBJ)
Expand Down
10 changes: 7 additions & 3 deletions source3/libgpo/gpext/scripts.c
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ static NTSTATUS scripts_parse_ini_section(struct gp_inifile_context *ini_ctx,
size_t *num_entries)
{
NTSTATUS status = NT_STATUS_OBJECT_NAME_NOT_FOUND;
NTSTATUS result;
int i = 0;

while (1) {
Expand All @@ -141,8 +142,8 @@ static NTSTATUS scripts_parse_ini_section(struct gp_inifile_context *ini_ctx,
GP_SCRIPTS_SECTION_CMDLINE);
NT_STATUS_HAVE_NO_MEMORY(key);

script = iniparser_getstring(ini_ctx->dict, key, NULL);
if (!script) {
result = gp_inifile_getstring(ini_ctx, key, &script);
if (!NT_STATUS_IS_OK(result)) {
break;
}

Expand All @@ -151,7 +152,10 @@ static NTSTATUS scripts_parse_ini_section(struct gp_inifile_context *ini_ctx,
GP_SCRIPTS_SECTION_PARAMETERS);
NT_STATUS_HAVE_NO_MEMORY(key);

parameters = iniparser_getstring(ini_ctx->dict, key, NULL);
result = gp_inifile_getstring(ini_ctx, key, &parameters);
if (!NT_STATUS_IS_OK(result)) {
break;
}

{
struct gp_registry_entry *entry = NULL;
Expand Down
25 changes: 14 additions & 11 deletions source3/libgpo/gpext/security.c
Original file line number Diff line number Diff line change
Expand Up @@ -56,37 +56,40 @@ struct gpttmpl_table {
#define GPTTMPL_VALUE_CHICAGO "$CHICAGO$" /* whatever this is good for... */
#define GPTTMPL_PARAMETER_UNICODE "Unicode"

static NTSTATUS gpttmpl_parse_header(dictionary *dict,
static NTSTATUS gpttmpl_parse_header(struct gp_inifile_context *ini_ctx,
uint32_t *version_out)
{
const char *signature = NULL;
NTSTATUS result;
uint32_t version;
int is_unicode;

if (!dict) {
if (!ini_ctx) {
return NT_STATUS_INVALID_PARAMETER;
}

if ((signature = iniparser_getstring(dict, GPTTMPL_SECTION_VERSION
":"GPTTMPL_PARAMETER_SIGNATURE, NULL)) == NULL) {
result = gp_inifile_getstring(ini_ctx, GPTTMPL_SECTION_VERSION
":"GPTTMPL_PARAMETER_SIGNATURE, &signature);
if (!NT_STATUS_IS_OK(result)) {
return NT_STATUS_INTERNAL_DB_CORRUPTION;
}

if (!strequal(signature, GPTTMPL_VALUE_CHICAGO)) {
return NT_STATUS_INTERNAL_DB_CORRUPTION;
}

if ((version = iniparser_getint(dict, GPTTMPL_SECTION_VERSION
":"GPTTMPL_PARAMETER_REVISION, Undefined)) == Undefined) {
result = gp_inifile_getint(ini_ctx, GPTTMPL_SECTION_VERSION
":"GPTTMPL_PARAMETER_REVISION, &version);
if (!NT_STATUS_IS_OK(result))
return NT_STATUS_INTERNAL_DB_CORRUPTION;
}

if (version_out) {
*version_out = version;
}

/* treat that as boolean */
if ((!iniparser_getboolean(dict, GPTTMPL_SECTION_UNICODE
":"GPTTMPL_PARAMETER_UNICODE, Undefined)) == Undefined) {
result = gp_inifile_getint(ini_ctx, GPTTMPL_SECTION_UNICODE
":"GPTTMPL_PARAMETER_UNICODE, is_unicode);
if (!NT_STATUS_IS_OK(result) || !is_unicode) {
return NT_STATUS_INTERNAL_DB_CORRUPTION;
}

Expand All @@ -109,7 +112,7 @@ static NTSTATUS gpttmpl_init_context(TALLOC_CTX *mem_ctx,
GPTTMPL_UNIX_PATH, &tmp_ctx);
NT_STATUS_NOT_OK_RETURN(status);

status = gpttmpl_parse_header(tmp_ctx->dict, &version);
status = gpttmpl_parse_header(tmp_ctx, &version);
if (!NT_STATUS_IS_OK(status)) {
DEBUG(1,("gpttmpl_init_context: failed: %s\n",
nt_errstr(status)));
Expand Down

0 comments on commit 171a361

Please sign in to comment.