net: use NetUserDel for "net rpc user delete".
[Samba/gebeck_regimport.git] / source3 / libgpo / gpo_util.c
blob7105b21de8e0f690fea5813a5c450628e3ab432e
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"
22 #define DEFAULT_DOMAIN_POLICY "Default Domain Policy"
23 #define DEFAULT_DOMAIN_CONTROLLERS_POLICY "Default Domain Controllers Policy"
25 /* should we store a parsed guid ? */
26 struct gp_table {
27 const char *name;
28 const char *guid_string;
31 #if 0 /* unused */
32 static struct gp_table gpo_default_policy[] = {
33 { DEFAULT_DOMAIN_POLICY,
34 "31B2F340-016D-11D2-945F-00C04FB984F9" },
35 { DEFAULT_DOMAIN_CONTROLLERS_POLICY,
36 "6AC1786C-016F-11D2-945F-00C04fB984F9" },
37 { NULL, NULL }
39 #endif
41 /* the following is seen in gPCMachineExtensionNames / gPCUserExtensionNames */
43 static struct gp_table gpo_cse_extensions[] = {
44 /* used to be "Administrative Templates Extension" */
45 /* "Registry Settings"
46 (http://support.microsoft.com/kb/216357/EN-US/) */
47 { "Registry Settings",
48 GP_EXT_GUID_REGISTRY },
49 { "Microsoft Disc Quota",
50 "3610EDA5-77EF-11D2-8DC5-00C04FA31A66" },
51 { "EFS recovery",
52 "B1BE8D72-6EAC-11D2-A4EA-00C04F79F83A" },
53 { "Folder Redirection",
54 "25537BA6-77A8-11D2-9B6C-0000F8080861" },
55 { "IP Security",
56 "E437BC1C-AA7D-11D2-A382-00C04F991E27" },
57 { "Internet Explorer Branding",
58 "A2E30F80-D7DE-11d2-BBDE-00C04F86AE3B" },
59 { "QoS Packet Scheduler",
60 "426031c0-0b47-4852-b0ca-ac3d37bfcb39" },
61 { "Scripts",
62 GP_EXT_GUID_SCRIPTS },
63 { "Security",
64 GP_EXT_GUID_SECURITY },
65 { "Software Installation",
66 "C6DC5466-785A-11D2-84D0-00C04FB169F7" },
67 { "Wireless Group Policy",
68 "0ACDD40C-75AC-BAA0-BF6DE7E7FE63" },
69 { "Application Management",
70 "C6DC5466-785A-11D2-84D0-00C04FB169F7" },
71 { "unknown",
72 "3060E8D0-7020-11D2-842D-00C04FA372D4" },
73 { NULL, NULL }
76 /* guess work */
77 static struct gp_table gpo_cse_snapin_extensions[] = {
78 { "Administrative Templates",
79 "0F6B957D-509E-11D1-A7CC-0000F87571E3" },
80 { "Certificates",
81 "53D6AB1D-2488-11D1-A28C-00C04FB94F17" },
82 { "EFS recovery policy processing",
83 "B1BE8D72-6EAC-11D2-A4EA-00C04F79F83A" },
84 { "Folder Redirection policy processing",
85 "25537BA6-77A8-11D2-9B6C-0000F8080861" },
86 { "Folder Redirection",
87 "88E729D6-BDC1-11D1-BD2A-00C04FB9603F" },
88 { "Registry policy processing",
89 "35378EAC-683F-11D2-A89A-00C04FBBCFA2" },
90 { "Remote Installation Services",
91 "3060E8CE-7020-11D2-842D-00C04FA372D4" },
92 { "Security Settings",
93 "803E14A0-B4FB-11D0-A0D0-00A0C90F574B" },
94 { "Security policy processing",
95 "827D319E-6EAC-11D2-A4EA-00C04F79F83A" },
96 { "unknown",
97 "3060E8D0-7020-11D2-842D-00C04FA372D4" },
98 { "unknown2",
99 "53D6AB1B-2488-11D1-A28C-00C04FB94F17" },
100 { NULL, NULL }
103 /****************************************************************
104 ****************************************************************/
106 static const char *name_to_guid_string(const char *name,
107 struct gp_table *table)
109 int i;
111 for (i = 0; table[i].name; i++) {
112 if (strequal(name, table[i].name)) {
113 return table[i].guid_string;
117 return NULL;
120 /****************************************************************
121 ****************************************************************/
123 static const char *guid_string_to_name(const char *guid_string,
124 struct gp_table *table)
126 int i;
128 for (i = 0; table[i].guid_string; i++) {
129 if (strequal(guid_string, table[i].guid_string)) {
130 return table[i].name;
134 return NULL;
137 /****************************************************************
138 ****************************************************************/
140 static const char *snapin_guid_string_to_name(const char *guid_string,
141 struct gp_table *table)
143 int i;
144 for (i = 0; table[i].guid_string; i++) {
145 if (strequal(guid_string, table[i].guid_string)) {
146 return table[i].name;
149 return NULL;
152 #if 0 /* unused */
153 static const char *default_gpo_name_to_guid_string(const char *name)
155 return name_to_guid_string(name, gpo_default_policy);
158 static const char *default_gpo_guid_string_to_name(const char *guid)
160 return guid_string_to_name(guid, gpo_default_policy);
162 #endif
164 /****************************************************************
165 ****************************************************************/
167 const char *cse_gpo_guid_string_to_name(const char *guid)
169 return guid_string_to_name(guid, gpo_cse_extensions);
172 /****************************************************************
173 ****************************************************************/
175 const char *cse_gpo_name_to_guid_string(const char *name)
177 return name_to_guid_string(name, gpo_cse_extensions);
180 /****************************************************************
181 ****************************************************************/
183 const char *cse_snapin_gpo_guid_string_to_name(const char *guid)
185 return snapin_guid_string_to_name(guid, gpo_cse_snapin_extensions);
188 /****************************************************************
189 ****************************************************************/
191 void dump_gp_ext(struct GP_EXT *gp_ext, int debuglevel)
193 int lvl = debuglevel;
194 int i;
196 if (gp_ext == NULL) {
197 return;
200 DEBUG(lvl,("\t---------------------\n\n"));
201 DEBUGADD(lvl,("\tname:\t\t\t%s\n", gp_ext->gp_extension));
203 for (i=0; i< gp_ext->num_exts; i++) {
205 DEBUGADD(lvl,("\textension:\t\t\t%s\n",
206 gp_ext->extensions_guid[i]));
207 DEBUGADD(lvl,("\textension (name):\t\t\t%s\n",
208 gp_ext->extensions[i]));
210 DEBUGADD(lvl,("\tsnapin:\t\t\t%s\n",
211 gp_ext->snapins_guid[i]));
212 DEBUGADD(lvl,("\tsnapin (name):\t\t\t%s\n",
213 gp_ext->snapins[i]));
217 #ifdef HAVE_LDAP
219 /****************************************************************
220 ****************************************************************/
222 void dump_gpo(ADS_STRUCT *ads,
223 TALLOC_CTX *mem_ctx,
224 struct GROUP_POLICY_OBJECT *gpo,
225 int debuglevel)
227 int lvl = debuglevel;
229 if (gpo == NULL) {
230 return;
233 DEBUG(lvl,("---------------------\n\n"));
235 DEBUGADD(lvl,("name:\t\t\t%s\n", gpo->name));
236 DEBUGADD(lvl,("displayname:\t\t%s\n", gpo->display_name));
237 DEBUGADD(lvl,("version:\t\t%d (0x%08x)\n", gpo->version, gpo->version));
238 DEBUGADD(lvl,("version_user:\t\t%d (0x%04x)\n",
239 GPO_VERSION_USER(gpo->version),
240 GPO_VERSION_USER(gpo->version)));
241 DEBUGADD(lvl,("version_machine:\t%d (0x%04x)\n",
242 GPO_VERSION_MACHINE(gpo->version),
243 GPO_VERSION_MACHINE(gpo->version)));
244 DEBUGADD(lvl,("filesyspath:\t\t%s\n", gpo->file_sys_path));
245 DEBUGADD(lvl,("dspath:\t\t%s\n", gpo->ds_path));
247 DEBUGADD(lvl,("options:\t\t%d ", gpo->options));
248 switch (gpo->options) {
249 case GPFLAGS_ALL_ENABLED:
250 DEBUGADD(lvl,("GPFLAGS_ALL_ENABLED\n"));
251 break;
252 case GPFLAGS_USER_SETTINGS_DISABLED:
253 DEBUGADD(lvl,("GPFLAGS_USER_SETTINGS_DISABLED\n"));
254 break;
255 case GPFLAGS_MACHINE_SETTINGS_DISABLED:
256 DEBUGADD(lvl,("GPFLAGS_MACHINE_SETTINGS_DISABLED\n"));
257 break;
258 case GPFLAGS_ALL_DISABLED:
259 DEBUGADD(lvl,("GPFLAGS_ALL_DISABLED\n"));
260 break;
261 default:
262 DEBUGADD(lvl,("unknown option: %d\n", gpo->options));
263 break;
266 DEBUGADD(lvl,("link:\t\t\t%s\n", gpo->link));
267 DEBUGADD(lvl,("link_type:\t\t%d ", gpo->link_type));
268 switch (gpo->link_type) {
269 case GP_LINK_UNKOWN:
270 DEBUGADD(lvl,("GP_LINK_UNKOWN\n"));
271 break;
272 case GP_LINK_OU:
273 DEBUGADD(lvl,("GP_LINK_OU\n"));
274 break;
275 case GP_LINK_DOMAIN:
276 DEBUGADD(lvl,("GP_LINK_DOMAIN\n"));
277 break;
278 case GP_LINK_SITE:
279 DEBUGADD(lvl,("GP_LINK_SITE\n"));
280 break;
281 case GP_LINK_MACHINE:
282 DEBUGADD(lvl,("GP_LINK_MACHINE\n"));
283 break;
284 default:
285 break;
288 DEBUGADD(lvl,("machine_extensions:\t%s\n", gpo->machine_extensions));
290 if (gpo->machine_extensions) {
292 struct GP_EXT *gp_ext = NULL;
294 if (!ads_parse_gp_ext(mem_ctx, gpo->machine_extensions,
295 &gp_ext)) {
296 return;
298 dump_gp_ext(gp_ext, lvl);
301 DEBUGADD(lvl,("user_extensions:\t%s\n", gpo->user_extensions));
303 if (gpo->user_extensions) {
305 struct GP_EXT *gp_ext = NULL;
307 if (!ads_parse_gp_ext(mem_ctx, gpo->user_extensions,
308 &gp_ext)) {
309 return;
311 dump_gp_ext(gp_ext, lvl);
314 DEBUGADD(lvl,("security descriptor:\n"));
316 ads_disp_sd(ads, mem_ctx, gpo->security_descriptor);
319 /****************************************************************
320 ****************************************************************/
322 void dump_gpo_list(ADS_STRUCT *ads,
323 TALLOC_CTX *mem_ctx,
324 struct GROUP_POLICY_OBJECT *gpo_list,
325 int debuglevel)
327 struct GROUP_POLICY_OBJECT *gpo = NULL;
329 for (gpo = gpo_list; gpo; gpo = gpo->next) {
330 dump_gpo(ads, mem_ctx, gpo, debuglevel);
334 /****************************************************************
335 ****************************************************************/
337 void dump_gplink(ADS_STRUCT *ads, TALLOC_CTX *mem_ctx, struct GP_LINK *gp_link)
339 ADS_STATUS status;
340 int i;
341 int lvl = 10;
343 if (gp_link == NULL) {
344 return;
347 DEBUG(lvl,("---------------------\n\n"));
349 DEBUGADD(lvl,("gplink: %s\n", gp_link->gp_link));
350 DEBUGADD(lvl,("gpopts: %d ", gp_link->gp_opts));
351 switch (gp_link->gp_opts) {
352 case GPOPTIONS_INHERIT:
353 DEBUGADD(lvl,("GPOPTIONS_INHERIT\n"));
354 break;
355 case GPOPTIONS_BLOCK_INHERITANCE:
356 DEBUGADD(lvl,("GPOPTIONS_BLOCK_INHERITANCE\n"));
357 break;
358 default:
359 break;
362 DEBUGADD(lvl,("num links: %d\n", gp_link->num_links));
364 for (i = 0; i < gp_link->num_links; i++) {
366 DEBUGADD(lvl,("---------------------\n\n"));
368 DEBUGADD(lvl,("link: #%d\n", i + 1));
369 DEBUGADD(lvl,("name: %s\n", gp_link->link_names[i]));
371 DEBUGADD(lvl,("opt: %d ", gp_link->link_opts[i]));
372 if (gp_link->link_opts[i] & GPO_LINK_OPT_ENFORCED) {
373 DEBUGADD(lvl,("GPO_LINK_OPT_ENFORCED "));
375 if (gp_link->link_opts[i] & GPO_LINK_OPT_DISABLED) {
376 DEBUGADD(lvl,("GPO_LINK_OPT_DISABLED"));
378 DEBUGADD(lvl,("\n"));
380 if (ads != NULL && mem_ctx != NULL) {
382 struct GROUP_POLICY_OBJECT gpo;
384 status = ads_get_gpo(ads, mem_ctx,
385 gp_link->link_names[i],
386 NULL, NULL, &gpo);
387 if (!ADS_ERR_OK(status)) {
388 DEBUG(lvl,("get gpo for %s failed: %s\n",
389 gp_link->link_names[i],
390 ads_errstr(status)));
391 return;
393 dump_gpo(ads, mem_ctx, &gpo, lvl);
398 #endif /* HAVE_LDAP */
400 /****************************************************************
401 ****************************************************************/
403 static bool gpo_get_gp_ext_from_gpo(TALLOC_CTX *mem_ctx,
404 uint32_t flags,
405 struct GROUP_POLICY_OBJECT *gpo,
406 struct GP_EXT **gp_ext)
408 ZERO_STRUCTP(*gp_ext);
410 if (flags & GPO_INFO_FLAG_MACHINE) {
412 if (gpo->machine_extensions) {
414 if (!ads_parse_gp_ext(mem_ctx, gpo->machine_extensions,
415 gp_ext)) {
416 return false;
419 } else {
421 if (gpo->user_extensions) {
423 if (!ads_parse_gp_ext(mem_ctx, gpo->user_extensions,
424 gp_ext)) {
425 return false;
430 return true;
433 /****************************************************************
434 ****************************************************************/
436 ADS_STATUS gpo_process_a_gpo(ADS_STRUCT *ads,
437 TALLOC_CTX *mem_ctx,
438 const struct nt_user_token *token,
439 struct registry_key *root_key,
440 struct GROUP_POLICY_OBJECT *gpo,
441 const char *extension_guid_filter,
442 uint32_t flags)
444 struct GP_EXT *gp_ext = NULL;
445 int i;
447 DEBUG(10,("gpo_process_a_gpo: processing gpo %s (%s)\n",
448 gpo->name, gpo->display_name));
449 if (extension_guid_filter) {
450 DEBUGADD(10,("gpo_process_a_gpo: using filter %s (%s)\n",
451 extension_guid_filter,
452 cse_gpo_guid_string_to_name(extension_guid_filter)));
455 if (!gpo_get_gp_ext_from_gpo(mem_ctx, flags, gpo, &gp_ext)) {
456 return ADS_ERROR_NT(NT_STATUS_INVALID_PARAMETER);
459 if (!gp_ext || !gp_ext->num_exts) {
460 if (flags & GPO_INFO_FLAG_VERBOSE) {
461 DEBUG(0,("gpo_process_a_gpo: "
462 "no policies in %s (%s) for this extension\n",
463 gpo->name, gpo->display_name));
465 return ADS_SUCCESS;
468 for (i=0; i<gp_ext->num_exts; i++) {
470 NTSTATUS ntstatus;
472 if (extension_guid_filter &&
473 !strequal(extension_guid_filter,
474 gp_ext->extensions_guid[i])) {
475 continue;
478 ntstatus = gpext_process_extension(ads, mem_ctx,
479 flags, token, root_key, gpo,
480 gp_ext->extensions_guid[i],
481 gp_ext->snapins_guid[i]);
482 if (!NT_STATUS_IS_OK(ntstatus)) {
483 ADS_ERROR_NT(ntstatus);
487 return ADS_SUCCESS;
490 /****************************************************************
491 ****************************************************************/
493 static ADS_STATUS gpo_process_gpo_list_by_ext(ADS_STRUCT *ads,
494 TALLOC_CTX *mem_ctx,
495 const struct nt_user_token *token,
496 struct registry_key *root_key,
497 struct GROUP_POLICY_OBJECT *gpo_list,
498 const char *extensions_guid,
499 uint32_t flags)
501 ADS_STATUS status;
502 struct GROUP_POLICY_OBJECT *gpo;
504 for (gpo = gpo_list; gpo; gpo = gpo->next) {
506 if (gpo->link_type == GP_LINK_LOCAL) {
507 continue;
511 /* FIXME: we need to pass down the *list* down to the
512 * extension, otherwise we cannot store the e.g. the *list* of
513 * logon-scripts correctly (for more then one GPO) */
515 status = gpo_process_a_gpo(ads, mem_ctx, token, root_key,
516 gpo, extensions_guid, flags);
518 if (!ADS_ERR_OK(status)) {
519 DEBUG(0,("failed to process gpo by ext: %s\n",
520 ads_errstr(status)));
521 return status;
525 return ADS_SUCCESS;
528 /****************************************************************
529 ****************************************************************/
531 ADS_STATUS gpo_process_gpo_list(ADS_STRUCT *ads,
532 TALLOC_CTX *mem_ctx,
533 const struct nt_user_token *token,
534 struct GROUP_POLICY_OBJECT *gpo_list,
535 const char *extensions_guid_filter,
536 uint32_t flags)
538 ADS_STATUS status = ADS_SUCCESS;
539 struct gp_extension *gp_ext_list = NULL;
540 struct gp_extension *gp_ext = NULL;
541 struct registry_key *root_key = NULL;
542 struct gp_registry_context *reg_ctx = NULL;
543 WERROR werr;
545 status = ADS_ERROR_NT(init_gp_extensions(mem_ctx));
546 if (!ADS_ERR_OK(status)) {
547 return status;
550 gp_ext_list = get_gp_extension_list();
551 if (!gp_ext_list) {
552 return ADS_ERROR_NT(NT_STATUS_DLL_INIT_FAILED);
555 /* get the key here */
556 if (flags & GPO_LIST_FLAG_MACHINE) {
557 werr = gp_init_reg_ctx(mem_ctx, KEY_HKLM, REG_KEY_WRITE,
558 get_system_token(),
559 &reg_ctx);
560 } else {
561 werr = gp_init_reg_ctx(mem_ctx, KEY_HKCU, REG_KEY_WRITE,
562 token,
563 &reg_ctx);
565 if (!W_ERROR_IS_OK(werr)) {
566 gp_free_reg_ctx(reg_ctx);
567 return ADS_ERROR_NT(werror_to_ntstatus(werr));
570 root_key = reg_ctx->curr_key;
572 for (gp_ext = gp_ext_list; gp_ext; gp_ext = gp_ext->next) {
574 const char *guid_str = NULL;
576 guid_str = GUID_string(mem_ctx, gp_ext->guid);
577 if (!guid_str) {
578 status = ADS_ERROR_NT(NT_STATUS_NO_MEMORY);
579 goto done;
582 if (extensions_guid_filter &&
583 (!strequal(guid_str, extensions_guid_filter))) {
584 continue;
587 DEBUG(0,("-------------------------------------------------\n"));
588 DEBUG(0,("gpo_process_gpo_list: processing ext: %s {%s}\n",
589 gp_ext->name, guid_str));
592 status = gpo_process_gpo_list_by_ext(ads, mem_ctx, token,
593 root_key, gpo_list,
594 guid_str, flags);
595 if (!ADS_ERR_OK(status)) {
596 goto done;
600 done:
601 gp_free_reg_ctx(reg_ctx);
602 TALLOC_FREE(root_key);
603 free_gp_extensions();
605 return status;
609 /****************************************************************
610 check wether the version number in a GROUP_POLICY_OBJECT match those of the
611 locally stored version. If not, fetch the required policy via CIFS
612 ****************************************************************/
614 NTSTATUS check_refresh_gpo(ADS_STRUCT *ads,
615 TALLOC_CTX *mem_ctx,
616 uint32_t flags,
617 struct GROUP_POLICY_OBJECT *gpo,
618 struct cli_state **cli_out)
620 NTSTATUS result;
621 char *server = NULL;
622 char *share = NULL;
623 char *nt_path = NULL;
624 char *unix_path = NULL;
625 uint32_t sysvol_gpt_version = 0;
626 char *display_name = NULL;
627 struct cli_state *cli = NULL;
629 result = gpo_explode_filesyspath(mem_ctx, gpo->file_sys_path,
630 &server, &share, &nt_path, &unix_path);
632 if (!NT_STATUS_IS_OK(result)) {
633 goto out;
636 result = gpo_get_sysvol_gpt_version(mem_ctx,
637 unix_path,
638 &sysvol_gpt_version,
639 &display_name);
640 if (!NT_STATUS_IS_OK(result) &&
641 !NT_STATUS_EQUAL(result, NT_STATUS_NO_SUCH_FILE)) {
642 DEBUG(10,("check_refresh_gpo: "
643 "failed to get local gpt version: %s\n",
644 nt_errstr(result)));
645 goto out;
648 DEBUG(10,("check_refresh_gpo: versions gpo %d sysvol %d\n",
649 gpo->version, sysvol_gpt_version));
651 /* FIXME: handle GPO_INFO_FLAG_FORCED_REFRESH from flags */
653 while (gpo->version > sysvol_gpt_version) {
655 DEBUG(1,("check_refresh_gpo: need to refresh GPO\n"));
657 if (*cli_out == NULL) {
659 result = cli_full_connection(&cli,
660 global_myname(),
661 ads->config.ldap_server_name,
662 /* server */
663 NULL, 0,
664 share, "A:",
665 ads->auth.user_name, NULL,
666 ads->auth.password,
667 CLI_FULL_CONNECTION_USE_KERBEROS,
668 Undefined, NULL);
669 if (!NT_STATUS_IS_OK(result)) {
670 DEBUG(10,("check_refresh_gpo: "
671 "failed to connect: %s\n",
672 nt_errstr(result)));
673 goto out;
676 *cli_out = cli;
679 result = gpo_fetch_files(mem_ctx, *cli_out, gpo);
680 if (!NT_STATUS_IS_OK(result)) {
681 goto out;
684 result = gpo_get_sysvol_gpt_version(mem_ctx,
685 unix_path,
686 &sysvol_gpt_version,
687 &display_name);
688 if (!NT_STATUS_IS_OK(result)) {
689 DEBUG(10,("check_refresh_gpo: "
690 "failed to get local gpt version: %s\n",
691 nt_errstr(result)));
692 goto out;
695 if (gpo->version == sysvol_gpt_version) {
696 break;
700 DEBUG(10,("Name:\t\t\t%s (%s)\n", gpo->display_name, gpo->name));
701 DEBUGADD(10,("sysvol GPT version:\t%d (user: %d, machine: %d)\n",
702 sysvol_gpt_version,
703 GPO_VERSION_USER(sysvol_gpt_version),
704 GPO_VERSION_MACHINE(sysvol_gpt_version)));
705 DEBUGADD(10,("LDAP GPO version:\t%d (user: %d, machine: %d)\n",
706 gpo->version,
707 GPO_VERSION_USER(gpo->version),
708 GPO_VERSION_MACHINE(gpo->version)));
709 DEBUGADD(10,("LDAP GPO link:\t\t%s\n", gpo->link));
711 result = NT_STATUS_OK;
713 out:
714 return result;
718 /****************************************************************
719 check wether the version numbers in the gpo_list match the locally stored, if
720 not, go and get each required GPO via CIFS
721 ****************************************************************/
723 NTSTATUS check_refresh_gpo_list(ADS_STRUCT *ads,
724 TALLOC_CTX *mem_ctx,
725 uint32_t flags,
726 struct GROUP_POLICY_OBJECT *gpo_list)
728 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
729 struct cli_state *cli = NULL;
730 struct GROUP_POLICY_OBJECT *gpo;
732 if (!gpo_list) {
733 return NT_STATUS_INVALID_PARAMETER;
736 for (gpo = gpo_list; gpo; gpo = gpo->next) {
738 result = check_refresh_gpo(ads, mem_ctx, flags, gpo, &cli);
739 if (!NT_STATUS_IS_OK(result)) {
740 goto out;
744 result = NT_STATUS_OK;
746 out:
747 if (cli) {
748 cli_shutdown(cli);
751 return result;
754 /****************************************************************
755 ****************************************************************/
757 NTSTATUS gpo_get_unix_path(TALLOC_CTX *mem_ctx,
758 struct GROUP_POLICY_OBJECT *gpo,
759 char **unix_path)
761 char *server, *share, *nt_path;
762 return gpo_explode_filesyspath(mem_ctx, gpo->file_sys_path,
763 &server, &share, &nt_path, unix_path);
766 /****************************************************************
767 ****************************************************************/
769 char *gpo_flag_str(uint32_t flags)
771 fstring str = "";
773 if (flags == 0) {
774 return NULL;
777 if (flags & GPO_INFO_FLAG_SLOWLINK)
778 fstrcat(str, "GPO_INFO_FLAG_SLOWLINK ");
779 if (flags & GPO_INFO_FLAG_VERBOSE)
780 fstrcat(str, "GPO_INFO_FLAG_VERBOSE ");
781 if (flags & GPO_INFO_FLAG_SAFEMODE_BOOT)
782 fstrcat(str, "GPO_INFO_FLAG_SAFEMODE_BOOT ");
783 if (flags & GPO_INFO_FLAG_NOCHANGES)
784 fstrcat(str, "GPO_INFO_FLAG_NOCHANGES ");
785 if (flags & GPO_INFO_FLAG_MACHINE)
786 fstrcat(str, "GPO_INFO_FLAG_MACHINE ");
787 if (flags & GPO_INFO_FLAG_LOGRSOP_TRANSITION)
788 fstrcat(str, "GPO_INFO_FLAG_LOGRSOP_TRANSITION ");
789 if (flags & GPO_INFO_FLAG_LINKTRANSITION)
790 fstrcat(str, "GPO_INFO_FLAG_LINKTRANSITION ");
791 if (flags & GPO_INFO_FLAG_FORCED_REFRESH)
792 fstrcat(str, "GPO_INFO_FLAG_FORCED_REFRESH ");
793 if (flags & GPO_INFO_FLAG_BACKGROUND)
794 fstrcat(str, "GPO_INFO_FLAG_BACKGROUND ");
796 return SMB_STRDUP(str);
799 /****************************************************************
800 ****************************************************************/
802 NTSTATUS gp_find_file(TALLOC_CTX *mem_ctx,
803 uint32_t flags,
804 const char *filename,
805 const char *suffix,
806 const char **filename_out)
808 const char *tmp = NULL;
809 SMB_STRUCT_STAT sbuf;
810 const char *path = NULL;
812 if (flags & GPO_LIST_FLAG_MACHINE) {
813 path = "Machine";
814 } else {
815 path = "User";
818 tmp = talloc_asprintf(mem_ctx, "%s/%s/%s", filename,
819 path, suffix);
820 NT_STATUS_HAVE_NO_MEMORY(tmp);
822 if (sys_stat(tmp, &sbuf) == 0) {
823 *filename_out = tmp;
824 return NT_STATUS_OK;
827 path = talloc_strdup_upper(mem_ctx, path);
828 NT_STATUS_HAVE_NO_MEMORY(path);
830 tmp = talloc_asprintf(mem_ctx, "%s/%s/%s", filename,
831 path, suffix);
832 NT_STATUS_HAVE_NO_MEMORY(tmp);
834 if (sys_stat(tmp, &sbuf) == 0) {
835 *filename_out = tmp;
836 return NT_STATUS_OK;
839 return NT_STATUS_NO_SUCH_FILE;
842 /****************************************************************
843 ****************************************************************/
845 ADS_STATUS gp_get_machine_token(ADS_STRUCT *ads,
846 TALLOC_CTX *mem_ctx,
847 const char *dn,
848 struct nt_user_token **token)
850 struct nt_user_token *ad_token = NULL;
851 ADS_STATUS status;
852 NTSTATUS ntstatus;
854 #ifndef HAVE_ADS
855 return ADS_ERROR_NT(NT_STATUS_NOT_SUPPORTED);
856 #endif
857 status = ads_get_sid_token(ads, mem_ctx, dn, &ad_token);
858 if (!ADS_ERR_OK(status)) {
859 return status;
862 ntstatus = merge_nt_token(mem_ctx, ad_token, get_system_token(),
863 token);
864 if (!NT_STATUS_IS_OK(ntstatus)) {
865 return ADS_ERROR_NT(ntstatus);
868 return ADS_SUCCESS;