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/>.
19 #define TALLOC_DEPRECATED 1
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 #if _SAMBA_BUILD_ == 4
27 #include "auth/auth.h"
29 #include "source4/libgpo/ads_convenience.h"
34 #define DEFAULT_DOMAIN_POLICY "Default Domain Policy"
35 #define DEFAULT_DOMAIN_CONTROLLERS_POLICY "Default Domain Controllers Policy"
38 /* should we store a parsed guid ? */
41 const char *guid_string
;
45 static struct gp_table gpo_default_policy
[] = {
46 { DEFAULT_DOMAIN_POLICY
,
47 "31B2F340-016D-11D2-945F-00C04FB984F9" },
48 { DEFAULT_DOMAIN_CONTROLLERS_POLICY
,
49 "6AC1786C-016F-11D2-945F-00C04fB984F9" },
54 /* the following is seen in gPCMachineExtensionNames / gPCUserExtensionNames */
56 static struct gp_table gpo_cse_extensions
[] = {
57 /* used to be "Administrative Templates Extension" */
58 /* "Registry Settings"
59 (http://support.microsoft.com/kb/216357/EN-US/) */
60 { "Registry Settings",
61 GP_EXT_GUID_REGISTRY
},
62 { "Microsoft Disc Quota",
63 "3610EDA5-77EF-11D2-8DC5-00C04FA31A66" },
65 "B1BE8D72-6EAC-11D2-A4EA-00C04F79F83A" },
66 { "Folder Redirection",
67 "25537BA6-77A8-11D2-9B6C-0000F8080861" },
69 "E437BC1C-AA7D-11D2-A382-00C04F991E27" },
70 { "Internet Explorer Branding",
71 "A2E30F80-D7DE-11d2-BBDE-00C04F86AE3B" },
72 { "QoS Packet Scheduler",
73 "426031c0-0b47-4852-b0ca-ac3d37bfcb39" },
75 GP_EXT_GUID_SCRIPTS
},
77 GP_EXT_GUID_SECURITY
},
78 { "Software Installation",
79 "C6DC5466-785A-11D2-84D0-00C04FB169F7" },
80 { "Wireless Group Policy",
81 "0ACDD40C-75AC-BAA0-BF6DE7E7FE63" },
82 { "Application Management",
83 "C6DC5466-785A-11D2-84D0-00C04FB169F7" },
85 "3060E8D0-7020-11D2-842D-00C04FA372D4" },
90 static struct gp_table gpo_cse_snapin_extensions
[] = {
91 { "Administrative Templates",
92 "0F6B957D-509E-11D1-A7CC-0000F87571E3" },
94 "53D6AB1D-2488-11D1-A28C-00C04FB94F17" },
95 { "EFS recovery policy processing",
96 "B1BE8D72-6EAC-11D2-A4EA-00C04F79F83A" },
97 { "Folder Redirection policy processing",
98 "25537BA6-77A8-11D2-9B6C-0000F8080861" },
99 { "Folder Redirection",
100 "88E729D6-BDC1-11D1-BD2A-00C04FB9603F" },
101 { "Registry policy processing",
102 "35378EAC-683F-11D2-A89A-00C04FBBCFA2" },
103 { "Remote Installation Services",
104 "3060E8CE-7020-11D2-842D-00C04FA372D4" },
105 { "Security Settings",
106 "803E14A0-B4FB-11D0-A0D0-00A0C90F574B" },
107 { "Security policy processing",
108 "827D319E-6EAC-11D2-A4EA-00C04F79F83A" },
110 "3060E8D0-7020-11D2-842D-00C04FA372D4" },
112 "53D6AB1B-2488-11D1-A28C-00C04FB94F17" },
116 /****************************************************************
117 ****************************************************************/
119 static const char *name_to_guid_string(const char *name
,
120 struct gp_table
*table
)
124 for (i
= 0; table
[i
].name
; i
++) {
125 if (strequal(name
, table
[i
].name
)) {
126 return table
[i
].guid_string
;
133 /****************************************************************
134 ****************************************************************/
136 static const char *guid_string_to_name(const char *guid_string
,
137 struct gp_table
*table
)
141 for (i
= 0; table
[i
].guid_string
; i
++) {
142 if (strequal(guid_string
, table
[i
].guid_string
)) {
143 return table
[i
].name
;
150 /****************************************************************
151 ****************************************************************/
153 static const char *snapin_guid_string_to_name(const char *guid_string
,
154 struct gp_table
*table
)
157 for (i
= 0; table
[i
].guid_string
; i
++) {
158 if (strequal(guid_string
, table
[i
].guid_string
)) {
159 return table
[i
].name
;
166 static const char *default_gpo_name_to_guid_string(const char *name
)
168 return name_to_guid_string(name
, gpo_default_policy
);
171 static const char *default_gpo_guid_string_to_name(const char *guid
)
173 return guid_string_to_name(guid
, gpo_default_policy
);
177 /****************************************************************
178 ****************************************************************/
180 const char *cse_gpo_guid_string_to_name(const char *guid
)
182 return guid_string_to_name(guid
, gpo_cse_extensions
);
185 /****************************************************************
186 ****************************************************************/
188 const char *cse_gpo_name_to_guid_string(const char *name
)
190 return name_to_guid_string(name
, gpo_cse_extensions
);
193 /****************************************************************
194 ****************************************************************/
196 const char *cse_snapin_gpo_guid_string_to_name(const char *guid
)
198 return snapin_guid_string_to_name(guid
, gpo_cse_snapin_extensions
);
201 /****************************************************************
202 ****************************************************************/
204 void dump_gp_ext(struct GP_EXT
*gp_ext
, int debuglevel
)
206 int lvl
= debuglevel
;
209 if (gp_ext
== NULL
) {
213 DEBUG(lvl
,("\t---------------------\n\n"));
214 DEBUGADD(lvl
,("\tname:\t\t\t%s\n", gp_ext
->gp_extension
));
216 for (i
=0; i
< gp_ext
->num_exts
; i
++) {
218 DEBUGADD(lvl
,("\textension:\t\t\t%s\n",
219 gp_ext
->extensions_guid
[i
]));
220 DEBUGADD(lvl
,("\textension (name):\t\t\t%s\n",
221 gp_ext
->extensions
[i
]));
223 DEBUGADD(lvl
,("\tsnapin:\t\t\t%s\n",
224 gp_ext
->snapins_guid
[i
]));
225 DEBUGADD(lvl
,("\tsnapin (name):\t\t\t%s\n",
226 gp_ext
->snapins
[i
]));
232 /****************************************************************
233 ****************************************************************/
235 void dump_gpo(ADS_STRUCT
*ads
,
237 struct GROUP_POLICY_OBJECT
*gpo
,
240 int lvl
= debuglevel
;
246 DEBUG(lvl
,("---------------------\n\n"));
248 DEBUGADD(lvl
,("name:\t\t\t%s\n", gpo
->name
));
249 DEBUGADD(lvl
,("displayname:\t\t%s\n", gpo
->display_name
));
250 DEBUGADD(lvl
,("version:\t\t%d (0x%08x)\n", gpo
->version
, gpo
->version
));
251 DEBUGADD(lvl
,("version_user:\t\t%d (0x%04x)\n",
252 GPO_VERSION_USER(gpo
->version
),
253 GPO_VERSION_USER(gpo
->version
)));
254 DEBUGADD(lvl
,("version_machine:\t%d (0x%04x)\n",
255 GPO_VERSION_MACHINE(gpo
->version
),
256 GPO_VERSION_MACHINE(gpo
->version
)));
257 DEBUGADD(lvl
,("filesyspath:\t\t%s\n", gpo
->file_sys_path
));
258 DEBUGADD(lvl
,("dspath:\t\t%s\n", gpo
->ds_path
));
260 DEBUGADD(lvl
,("options:\t\t%d ", gpo
->options
));
261 switch (gpo
->options
) {
262 case GPFLAGS_ALL_ENABLED
:
263 DEBUGADD(lvl
,("GPFLAGS_ALL_ENABLED\n"));
265 case GPFLAGS_USER_SETTINGS_DISABLED
:
266 DEBUGADD(lvl
,("GPFLAGS_USER_SETTINGS_DISABLED\n"));
268 case GPFLAGS_MACHINE_SETTINGS_DISABLED
:
269 DEBUGADD(lvl
,("GPFLAGS_MACHINE_SETTINGS_DISABLED\n"));
271 case GPFLAGS_ALL_DISABLED
:
272 DEBUGADD(lvl
,("GPFLAGS_ALL_DISABLED\n"));
275 DEBUGADD(lvl
,("unknown option: %d\n", gpo
->options
));
279 DEBUGADD(lvl
,("link:\t\t\t%s\n", gpo
->link
));
280 DEBUGADD(lvl
,("link_type:\t\t%d ", gpo
->link_type
));
281 switch (gpo
->link_type
) {
283 DEBUGADD(lvl
,("GP_LINK_UNKOWN\n"));
286 DEBUGADD(lvl
,("GP_LINK_OU\n"));
289 DEBUGADD(lvl
,("GP_LINK_DOMAIN\n"));
292 DEBUGADD(lvl
,("GP_LINK_SITE\n"));
294 case GP_LINK_MACHINE
:
295 DEBUGADD(lvl
,("GP_LINK_MACHINE\n"));
301 DEBUGADD(lvl
,("machine_extensions:\t%s\n", gpo
->machine_extensions
));
303 if (gpo
->machine_extensions
) {
305 struct GP_EXT
*gp_ext
= NULL
;
307 if (!ads_parse_gp_ext(mem_ctx
, gpo
->machine_extensions
,
311 dump_gp_ext(gp_ext
, lvl
);
314 DEBUGADD(lvl
,("user_extensions:\t%s\n", gpo
->user_extensions
));
316 if (gpo
->user_extensions
) {
318 struct GP_EXT
*gp_ext
= NULL
;
320 if (!ads_parse_gp_ext(mem_ctx
, gpo
->user_extensions
,
324 dump_gp_ext(gp_ext
, lvl
);
326 if (gpo
->security_descriptor
) {
327 DEBUGADD(lvl
,("security descriptor:\n"));
329 NDR_PRINT_DEBUG(security_descriptor
, gpo
->security_descriptor
);
333 /****************************************************************
334 ****************************************************************/
336 void dump_gpo_list(ADS_STRUCT
*ads
,
338 struct GROUP_POLICY_OBJECT
*gpo_list
,
341 struct GROUP_POLICY_OBJECT
*gpo
= NULL
;
343 for (gpo
= gpo_list
; gpo
; gpo
= gpo
->next
) {
344 dump_gpo(ads
, mem_ctx
, gpo
, debuglevel
);
348 /****************************************************************
349 ****************************************************************/
351 void dump_gplink(ADS_STRUCT
*ads
, TALLOC_CTX
*mem_ctx
, struct GP_LINK
*gp_link
)
357 if (gp_link
== NULL
) {
361 DEBUG(lvl
,("---------------------\n\n"));
363 DEBUGADD(lvl
,("gplink: %s\n", gp_link
->gp_link
));
364 DEBUGADD(lvl
,("gpopts: %d ", gp_link
->gp_opts
));
365 switch (gp_link
->gp_opts
) {
366 case GPOPTIONS_INHERIT
:
367 DEBUGADD(lvl
,("GPOPTIONS_INHERIT\n"));
369 case GPOPTIONS_BLOCK_INHERITANCE
:
370 DEBUGADD(lvl
,("GPOPTIONS_BLOCK_INHERITANCE\n"));
376 DEBUGADD(lvl
,("num links: %d\n", gp_link
->num_links
));
378 for (i
= 0; i
< gp_link
->num_links
; i
++) {
380 DEBUGADD(lvl
,("---------------------\n\n"));
382 DEBUGADD(lvl
,("link: #%d\n", i
+ 1));
383 DEBUGADD(lvl
,("name: %s\n", gp_link
->link_names
[i
]));
385 DEBUGADD(lvl
,("opt: %d ", gp_link
->link_opts
[i
]));
386 if (gp_link
->link_opts
[i
] & GPO_LINK_OPT_ENFORCED
) {
387 DEBUGADD(lvl
,("GPO_LINK_OPT_ENFORCED "));
389 if (gp_link
->link_opts
[i
] & GPO_LINK_OPT_DISABLED
) {
390 DEBUGADD(lvl
,("GPO_LINK_OPT_DISABLED"));
392 DEBUGADD(lvl
,("\n"));
394 if (ads
!= NULL
&& mem_ctx
!= NULL
) {
396 struct GROUP_POLICY_OBJECT gpo
;
398 status
= ads_get_gpo(ads
, mem_ctx
,
399 gp_link
->link_names
[i
],
401 if (!ADS_ERR_OK(status
)) {
402 DEBUG(lvl
,("get gpo for %s failed: %s\n",
403 gp_link
->link_names
[i
],
404 ads_errstr(status
)));
407 dump_gpo(ads
, mem_ctx
, &gpo
, lvl
);
412 #endif /* HAVE_LDAP */
414 /****************************************************************
415 ****************************************************************/
417 static bool gpo_get_gp_ext_from_gpo(TALLOC_CTX
*mem_ctx
,
419 struct GROUP_POLICY_OBJECT
*gpo
,
420 struct GP_EXT
**gp_ext
)
422 ZERO_STRUCTP(*gp_ext
);
424 if (flags
& GPO_INFO_FLAG_MACHINE
) {
426 if (gpo
->machine_extensions
) {
428 if (!ads_parse_gp_ext(mem_ctx
, gpo
->machine_extensions
,
435 if (gpo
->user_extensions
) {
437 if (!ads_parse_gp_ext(mem_ctx
, gpo
->user_extensions
,
447 /****************************************************************
448 ****************************************************************/
450 ADS_STATUS
gpo_process_a_gpo(ADS_STRUCT
*ads
,
452 const struct security_token
*token
,
453 struct registry_key
*root_key
,
454 struct GROUP_POLICY_OBJECT
*gpo
,
455 const char *extension_guid_filter
,
458 struct GP_EXT
*gp_ext
= NULL
;
461 DEBUG(10,("gpo_process_a_gpo: processing gpo %s (%s)\n",
462 gpo
->name
, gpo
->display_name
));
463 if (extension_guid_filter
) {
464 DEBUGADD(10,("gpo_process_a_gpo: using filter %s (%s)\n",
465 extension_guid_filter
,
466 cse_gpo_guid_string_to_name(extension_guid_filter
)));
469 if (!gpo_get_gp_ext_from_gpo(mem_ctx
, flags
, gpo
, &gp_ext
)) {
470 return ADS_ERROR_NT(NT_STATUS_INVALID_PARAMETER
);
473 if (!gp_ext
|| !gp_ext
->num_exts
) {
474 if (flags
& GPO_INFO_FLAG_VERBOSE
) {
475 DEBUG(0,("gpo_process_a_gpo: "
476 "no policies in %s (%s) for this extension\n",
477 gpo
->name
, gpo
->display_name
));
482 for (i
=0; i
<gp_ext
->num_exts
; i
++) {
486 if (extension_guid_filter
&&
487 !strequal(extension_guid_filter
,
488 gp_ext
->extensions_guid
[i
])) {
492 ntstatus
= gpext_process_extension(ads
, mem_ctx
,
493 flags
, token
, root_key
, gpo
,
494 gp_ext
->extensions_guid
[i
],
495 gp_ext
->snapins_guid
[i
]);
496 if (!NT_STATUS_IS_OK(ntstatus
)) {
497 ADS_ERROR_NT(ntstatus
);
504 /****************************************************************
505 ****************************************************************/
507 static ADS_STATUS
gpo_process_gpo_list_by_ext(ADS_STRUCT
*ads
,
509 const struct security_token
*token
,
510 struct registry_key
*root_key
,
511 struct GROUP_POLICY_OBJECT
*gpo_list
,
512 const char *extensions_guid
,
516 struct GROUP_POLICY_OBJECT
*gpo
;
518 for (gpo
= gpo_list
; gpo
; gpo
= gpo
->next
) {
520 if (gpo
->link_type
== GP_LINK_LOCAL
) {
525 /* FIXME: we need to pass down the *list* down to the
526 * extension, otherwise we cannot store the e.g. the *list* of
527 * logon-scripts correctly (for more then one GPO) */
529 status
= gpo_process_a_gpo(ads
, mem_ctx
, token
, root_key
,
530 gpo
, extensions_guid
, flags
);
532 if (!ADS_ERR_OK(status
)) {
533 DEBUG(0,("failed to process gpo by ext: %s\n",
534 ads_errstr(status
)));
542 /****************************************************************
543 ****************************************************************/
545 ADS_STATUS
gpo_process_gpo_list(ADS_STRUCT
*ads
,
547 const struct security_token
*token
,
548 struct GROUP_POLICY_OBJECT
*gpo_list
,
549 const char *extensions_guid_filter
,
552 ADS_STATUS status
= ADS_SUCCESS
;
553 struct gp_extension
*gp_ext_list
= NULL
;
554 struct gp_extension
*gp_ext
= NULL
;
555 struct registry_key
*root_key
= NULL
;
556 struct gp_registry_context
*reg_ctx
= NULL
;
560 status
= ADS_ERROR_NT(init_gp_extensions(mem_ctx
));
561 if (!ADS_ERR_OK(status
)) {
565 gp_ext_list
= get_gp_extension_list();
567 return ADS_ERROR_NT(NT_STATUS_DLL_INIT_FAILED
);
569 /* FIXME Needs to be replaced with new patchfile_preg calls */
571 /* get the key here */
572 if (flags
& GPO_LIST_FLAG_MACHINE
) {
573 werr
= gp_init_reg_ctx(mem_ctx
, KEY_HKLM
, REG_KEY_WRITE
,
577 werr
= gp_init_reg_ctx(mem_ctx
, KEY_HKCU
, REG_KEY_WRITE
,
581 if (!W_ERROR_IS_OK(werr
)) {
582 talloc_free(reg_ctx
);
583 return ADS_ERROR_NT(werror_to_ntstatus(werr
));
587 root_key
= reg_ctx
->curr_key
;
589 for (gp_ext
= gp_ext_list
; gp_ext
; gp_ext
= gp_ext
->next
) {
591 const char *guid_str
= NULL
;
593 guid_str
= GUID_string(mem_ctx
, gp_ext
->guid
);
595 status
= ADS_ERROR_NT(NT_STATUS_NO_MEMORY
);
599 if (extensions_guid_filter
&&
600 (!strequal(guid_str
, extensions_guid_filter
))) {
604 DEBUG(0,("-------------------------------------------------\n"));
605 DEBUG(0,("gpo_process_gpo_list: processing ext: %s {%s}\n",
606 gp_ext
->name
, guid_str
));
609 status
= gpo_process_gpo_list_by_ext(ads
, mem_ctx
, token
,
612 if (!ADS_ERR_OK(status
)) {
618 talloc_free(reg_ctx
);
619 talloc_free(root_key
);
620 free_gp_extensions();
626 /****************************************************************
627 check wether the version number in a GROUP_POLICY_OBJECT match those of the
628 locally stored version. If not, fetch the required policy via CIFS
629 ****************************************************************/
631 NTSTATUS
check_refresh_gpo(ADS_STRUCT
*ads
,
633 const char *cache_dir
,
634 struct loadparm_context
*lp_ctx
,
636 struct GROUP_POLICY_OBJECT
*gpo
)
641 char *nt_path
= NULL
;
642 char *unix_path
= NULL
;
643 uint32_t sysvol_gpt_version
= 0;
644 char *display_name
= NULL
;
646 result
= gpo_explode_filesyspath(mem_ctx
, cache_dir
, gpo
->file_sys_path
,
647 &server
, &share
, &nt_path
, &unix_path
);
649 if (!NT_STATUS_IS_OK(result
)) {
653 result
= gpo_get_sysvol_gpt_version(mem_ctx
,
657 if (!NT_STATUS_IS_OK(result
) &&
658 !NT_STATUS_EQUAL(result
, NT_STATUS_NO_SUCH_FILE
)) {
659 DEBUG(10,("check_refresh_gpo: "
660 "failed to get local gpt version: %s\n",
665 DEBUG(10,("check_refresh_gpo: versions gpo %d sysvol %d\n",
666 gpo
->version
, sysvol_gpt_version
));
668 /* FIXME: handle GPO_INFO_FLAG_FORCED_REFRESH from flags */
670 while (gpo
->version
> sysvol_gpt_version
) {
672 DEBUG(1,("check_refresh_gpo: need to refresh GPO\n"));
674 result
= gpo_fetch_files(mem_ctx
, ads
, lp_ctx
, cache_dir
, gpo
);
675 if (!NT_STATUS_IS_OK(result
)) {
679 result
= gpo_get_sysvol_gpt_version(mem_ctx
,
683 if (!NT_STATUS_IS_OK(result
)) {
684 DEBUG(10,("check_refresh_gpo: "
685 "failed to get local gpt version: %s\n",
690 if (gpo
->version
== sysvol_gpt_version
) {
695 DEBUG(10,("Name:\t\t\t%s (%s)\n", gpo
->display_name
, gpo
->name
));
696 DEBUGADD(10,("sysvol GPT version:\t%d (user: %d, machine: %d)\n",
698 GPO_VERSION_USER(sysvol_gpt_version
),
699 GPO_VERSION_MACHINE(sysvol_gpt_version
)));
700 DEBUGADD(10,("LDAP GPO version:\t%d (user: %d, machine: %d)\n",
702 GPO_VERSION_USER(gpo
->version
),
703 GPO_VERSION_MACHINE(gpo
->version
)));
704 DEBUGADD(10,("LDAP GPO link:\t\t%s\n", gpo
->link
));
706 result
= NT_STATUS_OK
;
713 /****************************************************************
714 check wether the version numbers in the gpo_list match the locally stored, if
715 not, go and get each required GPO via CIFS
716 ****************************************************************/
718 NTSTATUS
check_refresh_gpo_list(ADS_STRUCT
*ads
,
720 const char *cache_dir
,
721 struct loadparm_context
*lp_ctx
,
723 struct GROUP_POLICY_OBJECT
*gpo_list
)
725 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
726 struct GROUP_POLICY_OBJECT
*gpo
;
729 return NT_STATUS_INVALID_PARAMETER
;
732 for (gpo
= gpo_list
; gpo
; gpo
= gpo
->next
) {
734 result
= check_refresh_gpo(ads
, mem_ctx
, cache_dir
, lp_ctx
, flags
, gpo
);
735 if (!NT_STATUS_IS_OK(result
)) {
740 result
= NT_STATUS_OK
;
743 /* FIXME close cli connection */
748 /****************************************************************
749 ****************************************************************/
751 NTSTATUS
gpo_get_unix_path(TALLOC_CTX
*mem_ctx
,
752 const char *cache_dir
,
753 struct GROUP_POLICY_OBJECT
*gpo
,
756 char *server
, *share
, *nt_path
;
757 return gpo_explode_filesyspath(mem_ctx
, cache_dir
, gpo
->file_sys_path
,
758 &server
, &share
, &nt_path
, unix_path
);
761 /****************************************************************
762 ****************************************************************/
764 char *gpo_flag_str(TALLOC_CTX
*ctx
, uint32_t flags
)
772 if (flags
& GPO_INFO_FLAG_SLOWLINK
)
773 str
= talloc_append_string(ctx
, str
, "GPO_INFO_FLAG_SLOWLINK ");
774 if (flags
& GPO_INFO_FLAG_VERBOSE
)
775 str
= talloc_append_string(ctx
, str
, "GPO_INFO_FLAG_VERBOSE ");
776 if (flags
& GPO_INFO_FLAG_SAFEMODE_BOOT
)
777 str
= talloc_append_string(ctx
, str
, "GPO_INFO_FLAG_SAFEMODE_BOOT ");
778 if (flags
& GPO_INFO_FLAG_NOCHANGES
)
779 str
= talloc_append_string(ctx
, str
, "GPO_INFO_FLAG_NOCHANGES ");
780 if (flags
& GPO_INFO_FLAG_MACHINE
)
781 str
= talloc_append_string(ctx
, str
, "GPO_INFO_FLAG_MACHINE ");
782 if (flags
& GPO_INFO_FLAG_LOGRSOP_TRANSITION
)
783 str
= talloc_append_string(ctx
, str
, "GPO_INFO_FLAG_LOGRSOP_TRANSITION ");
784 if (flags
& GPO_INFO_FLAG_LINKTRANSITION
)
785 str
= talloc_append_string(ctx
, str
, "GPO_INFO_FLAG_LINKTRANSITION ");
786 if (flags
& GPO_INFO_FLAG_FORCED_REFRESH
)
787 str
= talloc_append_string(ctx
, str
, "GPO_INFO_FLAG_FORCED_REFRESH ");
788 if (flags
& GPO_INFO_FLAG_BACKGROUND
)
789 str
= talloc_append_string(ctx
, str
, "GPO_INFO_FLAG_BACKGROUND ");
794 /****************************************************************
795 ****************************************************************/
797 NTSTATUS
gp_find_file(TALLOC_CTX
*mem_ctx
,
799 const char *filename
,
801 const char **filename_out
)
803 const char *tmp
= NULL
;
805 const char *path
= NULL
;
807 if (flags
& GPO_LIST_FLAG_MACHINE
) {
813 tmp
= talloc_asprintf(mem_ctx
, "%s/%s/%s", filename
,
815 NT_STATUS_HAVE_NO_MEMORY(tmp
);
817 if (stat(tmp
, &sbuf
) == 0) {
822 path
= talloc_strdup_upper(mem_ctx
, path
);
823 NT_STATUS_HAVE_NO_MEMORY(path
);
825 tmp
= talloc_asprintf(mem_ctx
, "%s/%s/%s", filename
,
827 NT_STATUS_HAVE_NO_MEMORY(tmp
);
829 if (stat(tmp
, &sbuf
) == 0) {
834 return NT_STATUS_NO_SUCH_FILE
;
837 /****************************************************************
838 ****************************************************************/
840 ADS_STATUS
gp_get_machine_token(ADS_STRUCT
*ads
,
842 struct loadparm_context
*lp_ctx
,
844 struct security_token
**token
)
846 struct security_token
*ad_token
= NULL
;
848 #if _SAMBA_BUILD_ == 4
849 struct auth_session_info
*info
;
855 return ADS_ERROR_NT(NT_STATUS_NOT_SUPPORTED
);
857 status
= ads_get_sid_token(ads
, mem_ctx
, dn
, &ad_token
);
858 if (!ADS_ERR_OK(status
)) {
861 #if _SAMBA_BUILD_ == 4
862 info
= system_session(mem_ctx
, lp_ctx
);
863 *token
= info
->security_token
;
865 ntstatus
= merge_nt_token(mem_ctx
, ad_token
, get_system_token(),
867 if (!NT_STATUS_IS_OK(ntstatus
)) {
868 return ADS_ERROR_NT(ntstatus
);