From 8e5251c1f30a86ef88c7c145c71deccf19d4189f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCnther=20Deschner?= Date: Tue, 13 Sep 2016 08:36:59 +0200 Subject: libgpo: add gp_inifile_enum_section() Guenther Signed-off-by: Guenther Deschner Reviewed-by: Andreas Schneider --- libgpo/gpo_ini.c | 74 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ libgpo/gpo_ini.h | 5 ++++ 2 files changed, 79 insertions(+) (limited to 'libgpo') diff --git a/libgpo/gpo_ini.c b/libgpo/gpo_ini.c index 3ea8006d1e1..8166bcb977e 100644 --- a/libgpo/gpo_ini.c +++ b/libgpo/gpo_ini.c @@ -214,6 +214,80 @@ NTSTATUS gp_inifile_getbool(struct gp_inifile_context *ctx, const char *key, boo return NT_STATUS_NOT_FOUND; } +/**************************************************************** +****************************************************************/ + +NTSTATUS gp_inifile_enum_section(struct gp_inifile_context *ctx, + const char *section, + size_t *num_ini_keys, + const char ***ini_keys, + const char ***ini_values) +{ + NTSTATUS status; + int i; + size_t num_keys = 0, num_vals = 0; + const char **keys = NULL; + const char **values = NULL; + + if (section == NULL || num_ini_keys == NULL || + ini_keys == NULL || ini_values == NULL) { + return NT_STATUS_INVALID_PARAMETER; + } + + for (i = 0; i < ctx->keyval_count; i++) { + + bool ok; + + /* + * section: KEYNAME + * KEYNAME:value matches + * KEYNAME_OEM:value not + */ + + if (strlen(section)+1 > strlen(ctx->data[i]->key)) { + continue; + } + + if (!strnequal(section, ctx->data[i]->key, strlen(section))) { + continue; + } + + if (ctx->data[i]->key[strlen(section)] != ':') { + continue; + } + + ok = add_string_to_array(ctx, ctx->data[i]->key, &keys, &num_keys); + if (!ok) { + status = NT_STATUS_NO_MEMORY; + goto failed; + } + + ok = add_string_to_array(ctx, ctx->data[i]->val, &values, &num_vals); + if (!ok) { + status = NT_STATUS_NO_MEMORY; + goto failed; + } + + if (num_keys != num_vals) { + status = NT_STATUS_INTERNAL_DB_CORRUPTION; + goto failed; + } + } + + *num_ini_keys = num_keys; + *ini_keys = keys; + *ini_values = values; + + return NT_STATUS_OK; + + failed: + talloc_free(keys); + talloc_free(values); + + return status; +} + + /**************************************************************** ****************************************************************/ diff --git a/libgpo/gpo_ini.h b/libgpo/gpo_ini.h index b948a7a32d0..7c945f85620 100644 --- a/libgpo/gpo_ini.h +++ b/libgpo/gpo_ini.h @@ -46,3 +46,8 @@ NTSTATUS gp_inifile_getstring(struct gp_inifile_context *ctx, const char *key, c NTSTATUS gp_inifile_getint(struct gp_inifile_context *ctx, const char *key, int *ret); NTSTATUS gp_inifile_getbool(struct gp_inifile_context *ctx, const char *key, bool *ret); +NTSTATUS gp_inifile_enum_section(struct gp_inifile_context *ctx, + const char *section, + size_t *num_ini_keys, + const char ***ini_keys, + const char ***ini_values); -- cgit v1.2.1