From 3d5972c43f536b94122100e1e30f92a4f8441768 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Mon, 10 May 2010 00:07:10 +0200 Subject: s3-libgpo: move group policy protos to where they belong. Guenther --- source3/libgpo/gpext/registry.c | 2 ++ source3/libgpo/gpext/scripts.c | 4 ++- source3/libgpo/gpext/security.c | 4 ++- source3/libgpo/gpo_filesync.c | 2 ++ source3/libgpo/gpo_proto.h | 77 +++++++++++++++++++++++++++++++++++++++++ source3/libgpo/gpo_reg.c | 2 ++ 6 files changed, 89 insertions(+), 2 deletions(-) create mode 100644 source3/libgpo/gpo_proto.h (limited to 'source3/libgpo') diff --git a/source3/libgpo/gpext/registry.c b/source3/libgpo/gpext/registry.c index ae2adcc90d..d7018556d8 100644 --- a/source3/libgpo/gpext/registry.c +++ b/source3/libgpo/gpext/registry.c @@ -19,6 +19,8 @@ #include "includes.h" #include "../libgpo/gpo_ini.h" +#include "../libgpo/gpo.h" +#include "libgpo/gpo_proto.h" #define GP_EXT_NAME "registry" diff --git a/source3/libgpo/gpext/scripts.c b/source3/libgpo/gpext/scripts.c index 43f9b3afb5..3ec5805309 100644 --- a/source3/libgpo/gpext/scripts.c +++ b/source3/libgpo/gpext/scripts.c @@ -18,7 +18,9 @@ */ #include "includes.h" -#include "libgpo/gpo_ini.h" +#include "../libgpo/gpo_ini.h" +#include "../libgpo/gpo.h" +#include "libgpo/gpo_proto.h" #define GP_EXT_NAME "scripts" diff --git a/source3/libgpo/gpext/security.c b/source3/libgpo/gpext/security.c index f0a52fda5d..208db700ff 100644 --- a/source3/libgpo/gpext/security.c +++ b/source3/libgpo/gpext/security.c @@ -18,7 +18,9 @@ */ #include "includes.h" -#include "libgpo/gpo_ini.h" +#include "../libgpo/gpo_ini.h" +#include "../libgpo/gpo.h" +#include "libgpo/gpo_proto.h" #define GP_EXT_NAME "security" diff --git a/source3/libgpo/gpo_filesync.c b/source3/libgpo/gpo_filesync.c index 85323c12c9..a3002fe860 100644 --- a/source3/libgpo/gpo_filesync.c +++ b/source3/libgpo/gpo_filesync.c @@ -18,6 +18,8 @@ */ #include "includes.h" +#include "../libgpo/gpo.h" +#include "libgpo/gpo_proto.h" struct sync_context { TALLOC_CTX *mem_ctx; diff --git a/source3/libgpo/gpo_proto.h b/source3/libgpo/gpo_proto.h new file mode 100644 index 0000000000..e093d1eb0c --- /dev/null +++ b/source3/libgpo/gpo_proto.h @@ -0,0 +1,77 @@ + +/* The following definitions come from libgpo/gpo_filesync.c */ + +NTSTATUS gpo_copy_file(TALLOC_CTX *mem_ctx, + struct cli_state *cli, + const char *nt_path, + const char *unix_path); +NTSTATUS gpo_sync_directories(TALLOC_CTX *mem_ctx, + struct cli_state *cli, + const char *nt_path, + const char *local_path); + +/* The following definitions come from libgpo/gpo_ini.c */ + +NTSTATUS parse_gpt_ini(TALLOC_CTX *mem_ctx, + const char *filename, + uint32_t *version, + char **display_name); + +/* The following definitions come from libgpo/gpo_reg.c */ + +struct nt_user_token *registry_create_system_token(TALLOC_CTX *mem_ctx); +WERROR gp_init_reg_ctx(TALLOC_CTX *mem_ctx, + const char *initial_path, + uint32_t desired_access, + const struct nt_user_token *token, + struct gp_registry_context **reg_ctx); +void gp_free_reg_ctx(struct gp_registry_context *reg_ctx); +WERROR gp_store_reg_subkey(TALLOC_CTX *mem_ctx, + const char *subkeyname, + struct registry_key *curr_key, + struct registry_key **new_key); +WERROR gp_read_reg_subkey(TALLOC_CTX *mem_ctx, + struct gp_registry_context *reg_ctx, + const char *subkeyname, + struct registry_key **key); +WERROR gp_store_reg_val_sz(TALLOC_CTX *mem_ctx, + struct registry_key *key, + const char *val_name, + const char *val); +WERROR gp_read_reg_val_sz(TALLOC_CTX *mem_ctx, + struct registry_key *key, + const char *val_name, + const char **val); +WERROR gp_reg_state_store(TALLOC_CTX *mem_ctx, + uint32_t flags, + const char *dn, + const struct nt_user_token *token, + struct GROUP_POLICY_OBJECT *gpo_list); +WERROR gp_reg_state_read(TALLOC_CTX *mem_ctx, + uint32_t flags, + const DOM_SID *sid, + struct GROUP_POLICY_OBJECT **gpo_list); +WERROR gp_secure_key(TALLOC_CTX *mem_ctx, + uint32_t flags, + struct registry_key *key, + const DOM_SID *sid); +void dump_reg_val(int lvl, const char *direction, + const char *key, const char *subkey, + struct registry_value *val); +void dump_reg_entry(uint32_t flags, + const char *dir, + struct gp_registry_entry *entry); +void dump_reg_entries(uint32_t flags, + const char *dir, + struct gp_registry_entry *entries, + size_t num_entries); +bool add_gp_registry_entry_to_array(TALLOC_CTX *mem_ctx, + struct gp_registry_entry *entry, + struct gp_registry_entry **entries, + size_t *num); +WERROR reg_apply_registry_entry(TALLOC_CTX *mem_ctx, + struct registry_key *root_key, + struct gp_registry_context *reg_ctx, + struct gp_registry_entry *entry, + const struct nt_user_token *token, + uint32_t flags); diff --git a/source3/libgpo/gpo_reg.c b/source3/libgpo/gpo_reg.c index 0c26dbedc6..f191eb8711 100644 --- a/source3/libgpo/gpo_reg.c +++ b/source3/libgpo/gpo_reg.c @@ -18,6 +18,8 @@ */ #include "includes.h" +#include "../libgpo/gpo.h" +#include "libgpo/gpo_proto.h" /**************************************************************** -- cgit