smbd: Remove unused [push_pull]_file_id_24
[Samba.git] / libgpo / gpo_util.c
blob0c72340033ca1caffd9871eebf5601febdeb9b6f
1 /*
2 * Unix SMB/CIFS implementation.
3 * Group Policy Object Support
4 * Copyright (C) Guenther Deschner 2005-2008
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
20 #include "includes.h"
21 #include "system/filesys.h"
22 #include "librpc/gen_ndr/ndr_misc.h"
23 #include "../librpc/gen_ndr/ndr_security.h"
24 #include "../libgpo/gpo.h"
25 #include "../libcli/security/security.h"
26 #include "registry.h"
27 #include "libgpo/gpo_proto.h"
28 #include "libgpo/gpext/gpext.h"
30 #if 0
31 #define DEFAULT_DOMAIN_POLICY "Default Domain Policy"
32 #define DEFAULT_DOMAIN_CONTROLLERS_POLICY "Default Domain Controllers Policy"
33 #endif
35 /* should we store a parsed guid ? */
36 struct gp_table {
37 const char *name;
38 const char *guid_string;
41 #if 0 /* unused */
42 static struct gp_table gpo_default_policy[] = {
43 { DEFAULT_DOMAIN_POLICY,
44 "31B2F340-016D-11D2-945F-00C04FB984F9" },
45 { DEFAULT_DOMAIN_CONTROLLERS_POLICY,
46 "6AC1786C-016F-11D2-945F-00C04fB984F9" },
47 { NULL, NULL }
49 #endif
51 /* the following is seen in gPCMachineExtensionNames / gPCUserExtensionNames */
53 static struct gp_table gpo_cse_extensions[] = {
54 /* used to be "Administrative Templates Extension" */
55 /* "Registry Settings"
56 (http://support.microsoft.com/kb/216357/EN-US/) */
57 { "Registry Settings",
58 GP_EXT_GUID_REGISTRY },
59 { "Microsoft Disc Quota",
60 "3610EDA5-77EF-11D2-8DC5-00C04FA31A66" },
61 { "EFS recovery",
62 "B1BE8D72-6EAC-11D2-A4EA-00C04F79F83A" },
63 { "Folder Redirection",
64 "25537BA6-77A8-11D2-9B6C-0000F8080861" },
65 { "IP Security",
66 "E437BC1C-AA7D-11D2-A382-00C04F991E27" },
67 { "Internet Explorer Branding",
68 "A2E30F80-D7DE-11d2-BBDE-00C04F86AE3B" },
69 { "QoS Packet Scheduler",
70 "426031c0-0b47-4852-b0ca-ac3d37bfcb39" },
71 { "Scripts",
72 GP_EXT_GUID_SCRIPTS },
73 { "Security",
74 GP_EXT_GUID_SECURITY },
75 { "Software Installation",
76 "C6DC5466-785A-11D2-84D0-00C04FB169F7" },
77 { "Wireless Group Policy",
78 "0ACDD40C-75AC-BAA0-BF6DE7E7FE63" },
79 { "Application Management",
80 "C6DC5466-785A-11D2-84D0-00C04FB169F7" },
81 { "unknown",
82 "3060E8D0-7020-11D2-842D-00C04FA372D4" },
83 { NULL, NULL }
86 /* guess work */
87 static struct gp_table gpo_cse_snapin_extensions[] = {
88 { "Administrative Templates",
89 "0F6B957D-509E-11D1-A7CC-0000F87571E3" },
90 { "Certificates",
91 "53D6AB1D-2488-11D1-A28C-00C04FB94F17" },
92 { "EFS recovery policy processing",
93 "B1BE8D72-6EAC-11D2-A4EA-00C04F79F83A" },
94 { "Folder Redirection policy processing",
95 "25537BA6-77A8-11D2-9B6C-0000F8080861" },
96 { "Folder Redirection",
97 "88E729D6-BDC1-11D1-BD2A-00C04FB9603F" },
98 { "Registry policy processing",
99 "35378EAC-683F-11D2-A89A-00C04FBBCFA2" },
100 { "Remote Installation Services",
101 "3060E8CE-7020-11D2-842D-00C04FA372D4" },
102 { "Security Settings",
103 "803E14A0-B4FB-11D0-A0D0-00A0C90F574B" },
104 { "Security policy processing",
105 "827D319E-6EAC-11D2-A4EA-00C04F79F83A" },
106 { "unknown",
107 "3060E8D0-7020-11D2-842D-00C04FA372D4" },
108 { "unknown2",
109 "53D6AB1B-2488-11D1-A28C-00C04FB94F17" },
110 { NULL, NULL }
113 /****************************************************************
114 ****************************************************************/
116 static const char *name_to_guid_string(const char *name,
117 struct gp_table *table)
119 int i;
121 for (i = 0; table[i].name; i++) {
122 if (strequal(name, table[i].name)) {
123 return table[i].guid_string;
127 return NULL;
130 /****************************************************************
131 ****************************************************************/
133 static const char *guid_string_to_name(const char *guid_string,
134 struct gp_table *table)
136 int i;
138 for (i = 0; table[i].guid_string; i++) {
139 if (strequal(guid_string, table[i].guid_string)) {
140 return table[i].name;
144 return NULL;
147 /****************************************************************
148 ****************************************************************/
150 static const char *snapin_guid_string_to_name(const char *guid_string,
151 struct gp_table *table)
153 int i;
154 for (i = 0; table[i].guid_string; i++) {
155 if (strequal(guid_string, table[i].guid_string)) {
156 return table[i].name;
159 return NULL;
162 #if 0 /* unused */
163 static const char *default_gpo_name_to_guid_string(const char *name)
165 return name_to_guid_string(name, gpo_default_policy);
168 static const char *default_gpo_guid_string_to_name(const char *guid)
170 return guid_string_to_name(guid, gpo_default_policy);
172 #endif
174 /****************************************************************
175 ****************************************************************/
177 const char *cse_gpo_guid_string_to_name(const char *guid)
179 return guid_string_to_name(guid, gpo_cse_extensions);
182 /****************************************************************
183 ****************************************************************/
185 const char *cse_gpo_name_to_guid_string(const char *name)
187 return name_to_guid_string(name, gpo_cse_extensions);
190 /****************************************************************
191 ****************************************************************/
193 const char *cse_snapin_gpo_guid_string_to_name(const char *guid)
195 return snapin_guid_string_to_name(guid, gpo_cse_snapin_extensions);
198 /****************************************************************
199 ****************************************************************/
201 void dump_gp_ext(struct GP_EXT *gp_ext, int debuglevel)
203 int lvl = debuglevel;
204 int i;
206 if (gp_ext == NULL) {
207 return;
210 DEBUG(lvl,("\t---------------------\n\n"));
211 DEBUGADD(lvl,("\tname:\t\t\t%s\n", gp_ext->gp_extension));
213 for (i=0; i< gp_ext->num_exts; i++) {
215 DEBUGADD(lvl,("\textension:\t\t\t%s\n",
216 gp_ext->extensions_guid[i]));
217 DEBUGADD(lvl,("\textension (name):\t\t\t%s\n",
218 gp_ext->extensions[i]));
220 DEBUGADD(lvl,("\tsnapin:\t\t\t%s\n",
221 gp_ext->snapins_guid[i]));
222 DEBUGADD(lvl,("\tsnapin (name):\t\t\t%s\n",
223 gp_ext->snapins[i]));
227 #ifdef HAVE_LDAP
229 /****************************************************************
230 ****************************************************************/
232 void dump_gpo(const struct GROUP_POLICY_OBJECT *gpo,
233 int debuglevel)
235 int lvl = debuglevel;
236 TALLOC_CTX *frame = talloc_stackframe();
238 if (gpo == NULL) {
239 goto out;
242 DEBUG(lvl,("---------------------\n\n"));
244 DEBUGADD(lvl,("name:\t\t\t%s\n", gpo->name));
245 DEBUGADD(lvl,("displayname:\t\t%s\n", gpo->display_name));
246 DEBUGADD(lvl,("version:\t\t%d (0x%08x)\n", gpo->version, gpo->version));
247 DEBUGADD(lvl,("version_user:\t\t%d (0x%04x)\n",
248 GPO_VERSION_USER(gpo->version),
249 GPO_VERSION_USER(gpo->version)));
250 DEBUGADD(lvl,("version_machine:\t%d (0x%04x)\n",
251 GPO_VERSION_MACHINE(gpo->version),
252 GPO_VERSION_MACHINE(gpo->version)));
253 DEBUGADD(lvl,("filesyspath:\t\t%s\n", gpo->file_sys_path));
254 DEBUGADD(lvl,("dspath:\t\t%s\n", gpo->ds_path));
256 DEBUGADD(lvl,("options:\t\t%d ", gpo->options));
257 switch (gpo->options) {
258 case GPFLAGS_ALL_ENABLED:
259 DEBUGADD(lvl,("GPFLAGS_ALL_ENABLED\n"));
260 break;
261 case GPFLAGS_USER_SETTINGS_DISABLED:
262 DEBUGADD(lvl,("GPFLAGS_USER_SETTINGS_DISABLED\n"));
263 break;
264 case GPFLAGS_MACHINE_SETTINGS_DISABLED:
265 DEBUGADD(lvl,("GPFLAGS_MACHINE_SETTINGS_DISABLED\n"));
266 break;
267 case GPFLAGS_ALL_DISABLED:
268 DEBUGADD(lvl,("GPFLAGS_ALL_DISABLED\n"));
269 break;
270 default:
271 DEBUGADD(lvl,("unknown option: %d\n", gpo->options));
272 break;
275 DEBUGADD(lvl,("link:\t\t\t%s\n", gpo->link));
276 DEBUGADD(lvl,("link_type:\t\t%d ", gpo->link_type));
277 switch (gpo->link_type) {
278 case GP_LINK_UNKOWN:
279 DEBUGADD(lvl,("GP_LINK_UNKOWN\n"));
280 break;
281 case GP_LINK_OU:
282 DEBUGADD(lvl,("GP_LINK_OU\n"));
283 break;
284 case GP_LINK_DOMAIN:
285 DEBUGADD(lvl,("GP_LINK_DOMAIN\n"));
286 break;
287 case GP_LINK_SITE:
288 DEBUGADD(lvl,("GP_LINK_SITE\n"));
289 break;
290 case GP_LINK_MACHINE:
291 DEBUGADD(lvl,("GP_LINK_MACHINE\n"));
292 break;
293 default:
294 break;
297 DEBUGADD(lvl,("machine_extensions:\t%s\n", gpo->machine_extensions));
299 if (gpo->machine_extensions) {
301 struct GP_EXT *gp_ext = NULL;
303 if (!ads_parse_gp_ext(frame, gpo->machine_extensions,
304 &gp_ext)) {
305 goto out;
307 dump_gp_ext(gp_ext, lvl);
310 DEBUGADD(lvl,("user_extensions:\t%s\n", gpo->user_extensions));
312 if (gpo->user_extensions) {
314 struct GP_EXT *gp_ext = NULL;
316 if (!ads_parse_gp_ext(frame, gpo->user_extensions,
317 &gp_ext)) {
318 goto out;
320 dump_gp_ext(gp_ext, lvl);
322 if (gpo->security_descriptor) {
323 DEBUGADD(lvl,("security descriptor:\n"));
325 NDR_PRINT_DEBUG(security_descriptor, gpo->security_descriptor);
327 out:
328 talloc_free(frame);
331 /****************************************************************
332 ****************************************************************/
334 void dump_gpo_list(const struct GROUP_POLICY_OBJECT *gpo_list,
335 int debuglevel)
337 const struct GROUP_POLICY_OBJECT *gpo = NULL;
339 for (gpo = gpo_list; gpo; gpo = gpo->next) {
340 dump_gpo(gpo, debuglevel);
344 /****************************************************************
345 ****************************************************************/
347 void dump_gplink(const struct GP_LINK *gp_link)
349 int i;
350 int lvl = 10;
352 if (gp_link == NULL) {
353 return;
356 DEBUG(lvl,("---------------------\n\n"));
358 DEBUGADD(lvl,("gplink: %s\n", gp_link->gp_link));
359 DEBUGADD(lvl,("gpopts: %d ", gp_link->gp_opts));
360 switch (gp_link->gp_opts) {
361 case GPOPTIONS_INHERIT:
362 DEBUGADD(lvl,("GPOPTIONS_INHERIT\n"));
363 break;
364 case GPOPTIONS_BLOCK_INHERITANCE:
365 DEBUGADD(lvl,("GPOPTIONS_BLOCK_INHERITANCE\n"));
366 break;
367 default:
368 break;
371 DEBUGADD(lvl,("num links: %d\n", gp_link->num_links));
373 for (i = 0; i < gp_link->num_links; i++) {
375 DEBUGADD(lvl,("---------------------\n\n"));
377 DEBUGADD(lvl,("link: #%d\n", i + 1));
378 DEBUGADD(lvl,("name: %s\n", gp_link->link_names[i]));
380 DEBUGADD(lvl,("opt: %d ", gp_link->link_opts[i]));
381 if (gp_link->link_opts[i] & GPO_LINK_OPT_ENFORCED) {
382 DEBUGADD(lvl,("GPO_LINK_OPT_ENFORCED "));
384 if (gp_link->link_opts[i] & GPO_LINK_OPT_DISABLED) {
385 DEBUGADD(lvl,("GPO_LINK_OPT_DISABLED"));
387 DEBUGADD(lvl,("\n"));
391 #endif /* HAVE_LDAP */
393 /****************************************************************
394 ****************************************************************/
396 bool gpo_get_gp_ext_from_gpo(TALLOC_CTX *mem_ctx,
397 uint32_t flags,
398 const struct GROUP_POLICY_OBJECT *gpo,
399 struct GP_EXT **gp_ext)
401 ZERO_STRUCTP(*gp_ext);
403 if (flags & GPO_INFO_FLAG_MACHINE) {
405 if (gpo->machine_extensions) {
407 if (!ads_parse_gp_ext(mem_ctx, gpo->machine_extensions,
408 gp_ext)) {
409 return false;
412 } else {
414 if (gpo->user_extensions) {
416 if (!ads_parse_gp_ext(mem_ctx, gpo->user_extensions,
417 gp_ext)) {
418 return false;
423 return true;
426 /****************************************************************
427 ****************************************************************/
429 NTSTATUS gpo_process_gpo_list(TALLOC_CTX *mem_ctx,
430 const struct security_token *token,
431 const struct GROUP_POLICY_OBJECT *deleted_gpo_list,
432 const struct GROUP_POLICY_OBJECT *changed_gpo_list,
433 const char *extensions_guid_filter,
434 uint32_t flags)
436 NTSTATUS status = NT_STATUS_OK;
437 struct registry_key *root_key = NULL;
438 struct gp_registry_context *reg_ctx = NULL;
439 WERROR werr;
441 /* get the key here */
442 if (flags & GPO_LIST_FLAG_MACHINE) {
443 werr = gp_init_reg_ctx(mem_ctx, KEY_HKLM, REG_KEY_WRITE,
444 get_system_token(),
445 &reg_ctx);
446 } else {
447 werr = gp_init_reg_ctx(mem_ctx, KEY_HKCU, REG_KEY_WRITE,
448 token,
449 &reg_ctx);
451 if (!W_ERROR_IS_OK(werr)) {
452 talloc_free(reg_ctx);
453 return werror_to_ntstatus(werr);
456 root_key = reg_ctx->curr_key;
458 status = gpext_process_extension(mem_ctx,
459 flags, token, root_key,
460 deleted_gpo_list,
461 changed_gpo_list,
462 extensions_guid_filter);
463 talloc_free(reg_ctx);
464 talloc_free(root_key);
465 gpext_free_gp_extensions();
467 return status;
470 /****************************************************************
471 ****************************************************************/
473 NTSTATUS gpo_get_unix_path(TALLOC_CTX *mem_ctx,
474 const char *cache_dir,
475 const struct GROUP_POLICY_OBJECT *gpo,
476 char **unix_path)
478 char *server, *share, *nt_path;
479 return gpo_explode_filesyspath(mem_ctx, cache_dir, gpo->file_sys_path,
480 &server, &share, &nt_path, unix_path);
483 /****************************************************************
484 ****************************************************************/
486 char *gpo_flag_str(TALLOC_CTX *ctx, uint32_t flags)
488 char *str = NULL;
490 if (flags == 0) {
491 return NULL;
494 str = talloc_strdup(ctx, "");
495 if (!str) {
496 return NULL;
499 if (flags & GPO_INFO_FLAG_SLOWLINK)
500 str = talloc_strdup_append(str, "GPO_INFO_FLAG_SLOWLINK ");
501 if (flags & GPO_INFO_FLAG_VERBOSE)
502 str = talloc_strdup_append(str, "GPO_INFO_FLAG_VERBOSE ");
503 if (flags & GPO_INFO_FLAG_SAFEMODE_BOOT)
504 str = talloc_strdup_append(str, "GPO_INFO_FLAG_SAFEMODE_BOOT ");
505 if (flags & GPO_INFO_FLAG_NOCHANGES)
506 str = talloc_strdup_append(str, "GPO_INFO_FLAG_NOCHANGES ");
507 if (flags & GPO_INFO_FLAG_MACHINE)
508 str = talloc_strdup_append(str, "GPO_INFO_FLAG_MACHINE ");
509 if (flags & GPO_INFO_FLAG_LOGRSOP_TRANSITION)
510 str = talloc_strdup_append(str, "GPO_INFO_FLAG_LOGRSOP_TRANSITION ");
511 if (flags & GPO_INFO_FLAG_LINKTRANSITION)
512 str = talloc_strdup_append(str, "GPO_INFO_FLAG_LINKTRANSITION ");
513 if (flags & GPO_INFO_FLAG_FORCED_REFRESH)
514 str = talloc_strdup_append(str, "GPO_INFO_FLAG_FORCED_REFRESH ");
515 if (flags & GPO_INFO_FLAG_BACKGROUND)
516 str = talloc_strdup_append(str, "GPO_INFO_FLAG_BACKGROUND ");
518 return str;
521 /****************************************************************
522 ****************************************************************/
524 NTSTATUS gp_find_file(TALLOC_CTX *mem_ctx,
525 uint32_t flags,
526 const char *filename,
527 const char *suffix,
528 const char **filename_out)
530 const char *tmp = NULL;
531 struct stat sbuf;
532 const char *path = NULL;
534 if (flags & GPO_LIST_FLAG_MACHINE) {
535 path = "Machine";
536 } else {
537 path = "User";
540 tmp = talloc_asprintf(mem_ctx, "%s/%s/%s", filename,
541 path, suffix);
542 NT_STATUS_HAVE_NO_MEMORY(tmp);
544 if (stat(tmp, &sbuf) == 0) {
545 *filename_out = tmp;
546 return NT_STATUS_OK;
549 path = talloc_strdup_upper(mem_ctx, path);
550 NT_STATUS_HAVE_NO_MEMORY(path);
552 tmp = talloc_asprintf(mem_ctx, "%s/%s/%s", filename,
553 path, suffix);
554 NT_STATUS_HAVE_NO_MEMORY(tmp);
556 if (stat(tmp, &sbuf) == 0) {
557 *filename_out = tmp;
558 return NT_STATUS_OK;
561 return NT_STATUS_NO_SUCH_FILE;
564 /****************************************************************
565 ****************************************************************/
567 ADS_STATUS gp_get_machine_token(ADS_STRUCT *ads,
568 TALLOC_CTX *mem_ctx,
569 const char *dn,
570 struct security_token **token)
572 #ifdef HAVE_ADS
573 struct security_token *ad_token = NULL;
574 ADS_STATUS status;
575 NTSTATUS ntstatus;
577 status = ads_get_sid_token(ads, mem_ctx, dn, &ad_token);
578 if (!ADS_ERR_OK(status)) {
579 return status;
581 ntstatus = merge_with_system_token(mem_ctx, ad_token,
582 token);
583 if (!NT_STATUS_IS_OK(ntstatus)) {
584 return ADS_ERROR_NT(ntstatus);
586 return ADS_SUCCESS;
587 #else
588 return ADS_ERROR_NT(NT_STATUS_NOT_SUPPORTED);
589 #endif
592 /****************************************************************
593 ****************************************************************/
595 NTSTATUS gpo_copy(TALLOC_CTX *mem_ctx,
596 const struct GROUP_POLICY_OBJECT *gpo_src,
597 struct GROUP_POLICY_OBJECT **gpo_dst)
599 struct GROUP_POLICY_OBJECT *gpo;
601 gpo = talloc_zero(mem_ctx, struct GROUP_POLICY_OBJECT);
602 NT_STATUS_HAVE_NO_MEMORY(gpo);
604 gpo->options = gpo_src->options;
605 gpo->version = gpo_src->version;
607 gpo->ds_path = talloc_strdup(gpo, gpo_src->ds_path);
608 if (gpo->ds_path == NULL) {
609 TALLOC_FREE(gpo);
610 return NT_STATUS_NO_MEMORY;
613 gpo->file_sys_path = talloc_strdup(gpo, gpo_src->file_sys_path);
614 if (gpo->file_sys_path == NULL) {
615 TALLOC_FREE(gpo);
616 return NT_STATUS_NO_MEMORY;
619 gpo->display_name = talloc_strdup(gpo, gpo_src->display_name);
620 if (gpo->display_name == NULL) {
621 TALLOC_FREE(gpo);
622 return NT_STATUS_NO_MEMORY;
625 gpo->name = talloc_strdup(gpo, gpo_src->name);
626 if (gpo->name == NULL) {
627 TALLOC_FREE(gpo);
628 return NT_STATUS_NO_MEMORY;
631 gpo->link = talloc_strdup(gpo, gpo_src->link);
632 if (gpo->link == NULL) {
633 TALLOC_FREE(gpo);
634 return NT_STATUS_NO_MEMORY;
637 gpo->link_type = gpo_src->link_type;
639 if (gpo_src->user_extensions) {
640 gpo->user_extensions = talloc_strdup(gpo, gpo_src->user_extensions);
641 if (gpo->user_extensions == NULL) {
642 TALLOC_FREE(gpo);
643 return NT_STATUS_NO_MEMORY;
647 if (gpo_src->machine_extensions) {
648 gpo->machine_extensions = talloc_strdup(gpo, gpo_src->machine_extensions);
649 if (gpo->machine_extensions == NULL) {
650 TALLOC_FREE(gpo);
651 return NT_STATUS_NO_MEMORY;
655 if (gpo_src->security_descriptor == NULL) {
656 /* existing SD assumed */
657 TALLOC_FREE(gpo);
658 return NT_STATUS_INVALID_PARAMETER;
660 gpo->security_descriptor = security_descriptor_copy(gpo,
661 gpo_src->security_descriptor);
662 if (gpo->security_descriptor == NULL) {
663 TALLOC_FREE(gpo);
664 return NT_STATUS_NO_MEMORY;
667 gpo->next = gpo->prev = NULL;
669 *gpo_dst = gpo;
671 return NT_STATUS_OK;