summaryrefslogtreecommitdiff
path: root/source3/include
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2009-03-01 02:13:21 +0100
committerGünther Deschner <gd@samba.org>2009-04-20 23:15:43 +0200
commitcecd142f2bb77787985a1a55b1f55cef7ff9af75 (patch)
tree29057bcded115e8f296cef8b11011a1d76336e80 /source3/include
parent9930e5b3db6b47fa4a1611ed0719ed73340bf8c0 (diff)
downloadsamba-cecd142f2bb77787985a1a55b1f55cef7ff9af75.tar.gz
samba-cecd142f2bb77787985a1a55b1f55cef7ff9af75.tar.bz2
samba-cecd142f2bb77787985a1a55b1f55cef7ff9af75.zip
Move some libgpo files to root.
Signed-off-by: Günther Deschner <gd@samba.org>
Diffstat (limited to 'source3/include')
-rw-r--r--source3/include/gpo.h158
-rw-r--r--source3/include/includes.h2
2 files changed, 1 insertions, 159 deletions
diff --git a/source3/include/gpo.h b/source3/include/gpo.h
deleted file mode 100644
index bf5ff6a598..0000000000
--- a/source3/include/gpo.h
+++ /dev/null
@@ -1,158 +0,0 @@
-/*
- * Unix SMB/CIFS implementation.
- * Group Policy Object Support
- * Copyright (C) Guenther Deschner 2005-2008
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, see <http://www.gnu.org/licenses/>.
- */
-
-enum GPO_LINK_TYPE {
- GP_LINK_UNKOWN = 0,
- GP_LINK_MACHINE = 1,
- GP_LINK_SITE = 2,
- GP_LINK_DOMAIN = 3,
- GP_LINK_OU = 4,
- GP_LINK_LOCAL = 5 /* for convenience */
-};
-
-/* GPO_OPTIONS */
-#define GPO_FLAG_DISABLE 0x00000001
-#define GPO_FLAG_FORCE 0x00000002
-
-/* GPO_LIST_FLAGS */
-#define GPO_LIST_FLAG_MACHINE 0x00000001
-#define GPO_LIST_FLAG_SITEONLY 0x00000002
-
-/* following flags from http://support.microsoft.com/kb/312164/EN-US/ */
-#define GPO_INFO_FLAG_MACHINE 0x00000001
-#define GPO_INFO_FLAG_BACKGROUND 0x00000010
-#define GPO_INFO_FLAG_SLOWLINK 0x00000020
-#define GPO_INFO_FLAG_VERBOSE 0x00000040
-#define GPO_INFO_FLAG_NOCHANGES 0x00000080
-#define GPO_INFO_FLAG_LINKTRANSITION 0x00000100
-#define GPO_INFO_FLAG_LOGRSOP_TRANSITION 0x00000200
-#define GPO_INFO_FLAG_FORCED_REFRESH 0x00000400
-#define GPO_INFO_FLAG_SAFEMODE_BOOT 0x00000800
-
-#define GPO_VERSION_USER(x) (x >> 16)
-#define GPO_VERSION_MACHINE(x) (x & 0xffff)
-
-struct GROUP_POLICY_OBJECT {
- uint32_t options; /* GPFLAGS_* */
- uint32_t version;
- const char *ds_path;
- const char *file_sys_path;
- const char *display_name;
- const char *name;
- const char *link;
- enum GPO_LINK_TYPE link_type;
- const char *user_extensions;
- const char *machine_extensions;
- SEC_DESC *security_descriptor;
- struct GROUP_POLICY_OBJECT *next, *prev;
-};
-
-/* the following is seen on the DS (see adssearch.pl for details) */
-
-/* the type field in a 'gPLink', the same as GPO_FLAG ? */
-#define GPO_LINK_OPT_NONE 0x00000000
-#define GPO_LINK_OPT_DISABLED 0x00000001
-#define GPO_LINK_OPT_ENFORCED 0x00000002
-
-/* GPO_LINK_OPT_ENFORCED takes precedence over GPOPTIONS_BLOCK_INHERITANCE */
-
-/* 'gPOptions', maybe a bitmask as well */
-enum GPO_INHERIT {
- GPOPTIONS_INHERIT = 0,
- GPOPTIONS_BLOCK_INHERITANCE = 1
-};
-
-/* 'flags' in a 'groupPolicyContainer' object */
-#define GPFLAGS_ALL_ENABLED 0x00000000
-#define GPFLAGS_USER_SETTINGS_DISABLED 0x00000001
-#define GPFLAGS_MACHINE_SETTINGS_DISABLED 0x00000002
-#define GPFLAGS_ALL_DISABLED (GPFLAGS_USER_SETTINGS_DISABLED | \
- GPFLAGS_MACHINE_SETTINGS_DISABLED)
-
-struct GP_LINK {
- const char *gp_link; /* raw link name */
- uint32_t gp_opts; /* inheritance options GPO_INHERIT */
- uint32_t num_links; /* number of links */
- char **link_names; /* array of parsed link names */
- uint32_t *link_opts; /* array of parsed link opts GPO_LINK_OPT_* */
-};
-
-struct GP_EXT {
- const char *gp_extension; /* raw extension name */
- uint32_t num_exts;
- char **extensions;
- char **extensions_guid;
- char **snapins;
- char **snapins_guid;
- struct GP_EXT *next, *prev;
-};
-
-#define GPO_CACHE_DIR "gpo_cache"
-#define GPT_INI "GPT.INI"
-#define GPO_REFRESH_INTERVAL 60*90
-
-#define GPO_REG_STATE_MACHINE "State\\Machine"
-
-enum gp_reg_action {
- GP_REG_ACTION_NONE = 0,
- GP_REG_ACTION_ADD_VALUE = 1,
- GP_REG_ACTION_ADD_KEY = 2,
- GP_REG_ACTION_DEL_VALUES = 3,
- GP_REG_ACTION_DEL_VALUE = 4,
- GP_REG_ACTION_DEL_ALL_VALUES = 5,
- GP_REG_ACTION_DEL_KEYS = 6,
- GP_REG_ACTION_SEC_KEY_SET = 7,
- GP_REG_ACTION_SEC_KEY_RESET = 8
-};
-
-struct gp_registry_entry {
- enum gp_reg_action action;
- const char *key;
- const char *value;
- struct registry_value *data;
-};
-
-struct gp_registry_value {
- const char *value;
- struct registry_value *data;
-};
-
-struct gp_registry_entry2 {
- enum gp_reg_action action;
- const char *key;
- size_t num_values;
- struct gp_registry_value **values;
-};
-
-struct gp_registry_entries {
- size_t num_entries;
- struct gp_registry_entry **entries;
-};
-
-struct gp_registry_context {
- const struct nt_user_token *token;
- const char *path;
- struct registry_key *curr_key;
-};
-
-#define GP_EXT_GUID_SECURITY "827D319E-6EAC-11D2-A4EA-00C04F79F83A"
-#define GP_EXT_GUID_REGISTRY "35378EAC-683F-11D2-A89A-00C04FBBCFA2"
-#define GP_EXT_GUID_SCRIPTS "42B5FAAE-6536-11D2-AE5A-0000F87571E3"
-
-#include "libgpo/gpext/gpext.h"
diff --git a/source3/include/includes.h b/source3/include/includes.h
index 10319b7429..943de8db7b 100644
--- a/source3/include/includes.h
+++ b/source3/include/includes.h
@@ -609,7 +609,7 @@ struct smb_iconv_convenience *lp_iconv_convenience(void *lp_ctx);
#include "mapping.h"
#include "passdb.h"
#include "rpc_secdes.h"
-#include "gpo.h"
+#include "../libgpo/gpo.h"
#include "authdata.h"
#include "msdfs.h"
#include "rap.h"