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/>.
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"
27 #include "libgpo/gpo_proto.h"
28 #include "libgpo/gpext/gpext.h"
31 #define DEFAULT_DOMAIN_POLICY "Default Domain Policy"
32 #define DEFAULT_DOMAIN_CONTROLLERS_POLICY "Default Domain Controllers Policy"
35 /* should we store a parsed guid ? */
38 const char *guid_string
;
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" },
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" },
62 "B1BE8D72-6EAC-11D2-A4EA-00C04F79F83A" },
63 { "Folder Redirection",
64 "25537BA6-77A8-11D2-9B6C-0000F8080861" },
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" },
72 GP_EXT_GUID_SCRIPTS
},
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" },
82 "3060E8D0-7020-11D2-842D-00C04FA372D4" },
87 static struct gp_table gpo_cse_snapin_extensions
[] = {
88 { "Administrative Templates",
89 "0F6B957D-509E-11D1-A7CC-0000F87571E3" },
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" },
107 "3060E8D0-7020-11D2-842D-00C04FA372D4" },
109 "53D6AB1B-2488-11D1-A28C-00C04FB94F17" },
113 /****************************************************************
114 ****************************************************************/
116 static const char *name_to_guid_string(const char *name
,
117 struct gp_table
*table
)
121 for (i
= 0; table
[i
].name
; i
++) {
122 if (strequal(name
, table
[i
].name
)) {
123 return table
[i
].guid_string
;
130 /****************************************************************
131 ****************************************************************/
133 static const char *guid_string_to_name(const char *guid_string
,
134 struct gp_table
*table
)
138 for (i
= 0; table
[i
].guid_string
; i
++) {
139 if (strequal(guid_string
, table
[i
].guid_string
)) {
140 return table
[i
].name
;
147 /****************************************************************
148 ****************************************************************/
150 static const char *snapin_guid_string_to_name(const char *guid_string
,
151 struct gp_table
*table
)
154 for (i
= 0; table
[i
].guid_string
; i
++) {
155 if (strequal(guid_string
, table
[i
].guid_string
)) {
156 return table
[i
].name
;
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
);
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
;
206 if (gp_ext
== NULL
) {
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
]));
229 /****************************************************************
230 ****************************************************************/
232 void dump_gpo(const struct GROUP_POLICY_OBJECT
*gpo
,
235 int lvl
= debuglevel
;
236 TALLOC_CTX
*frame
= talloc_stackframe();
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"));
261 case GPFLAGS_USER_SETTINGS_DISABLED
:
262 DEBUGADD(lvl
,("GPFLAGS_USER_SETTINGS_DISABLED\n"));
264 case GPFLAGS_MACHINE_SETTINGS_DISABLED
:
265 DEBUGADD(lvl
,("GPFLAGS_MACHINE_SETTINGS_DISABLED\n"));
267 case GPFLAGS_ALL_DISABLED
:
268 DEBUGADD(lvl
,("GPFLAGS_ALL_DISABLED\n"));
271 DEBUGADD(lvl
,("unknown option: %d\n", gpo
->options
));
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
) {
279 DEBUGADD(lvl
,("GP_LINK_UNKOWN\n"));
282 DEBUGADD(lvl
,("GP_LINK_OU\n"));
285 DEBUGADD(lvl
,("GP_LINK_DOMAIN\n"));
288 DEBUGADD(lvl
,("GP_LINK_SITE\n"));
290 case GP_LINK_MACHINE
:
291 DEBUGADD(lvl
,("GP_LINK_MACHINE\n"));
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
,
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
,
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
);
331 /****************************************************************
332 ****************************************************************/
334 void dump_gpo_list(const struct GROUP_POLICY_OBJECT
*gpo_list
,
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
)
352 if (gp_link
== NULL
) {
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"));
364 case GPOPTIONS_BLOCK_INHERITANCE
:
365 DEBUGADD(lvl
,("GPOPTIONS_BLOCK_INHERITANCE\n"));
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
,
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
,
414 if (gpo
->user_extensions
) {
416 if (!ads_parse_gp_ext(mem_ctx
, gpo
->user_extensions
,
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
,
436 NTSTATUS status
= NT_STATUS_OK
;
437 struct registry_key
*root_key
= NULL
;
438 struct gp_registry_context
*reg_ctx
= NULL
;
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
,
447 werr
= gp_init_reg_ctx(mem_ctx
, KEY_HKCU
, REG_KEY_WRITE
,
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
,
462 extensions_guid_filter
);
463 talloc_free(reg_ctx
);
464 talloc_free(root_key
);
465 gpext_free_gp_extensions();
471 /****************************************************************
472 check wether the version number in a GROUP_POLICY_OBJECT match those of the
473 locally stored version. If not, fetch the required policy via CIFS
474 ****************************************************************/
476 NTSTATUS
check_refresh_gpo(ADS_STRUCT
*ads
,
478 const char *cache_dir
,
480 const struct GROUP_POLICY_OBJECT
*gpo
)
485 char *nt_path
= NULL
;
486 char *unix_path
= NULL
;
487 uint32_t sysvol_gpt_version
= 0;
488 char *display_name
= NULL
;
490 result
= gpo_explode_filesyspath(mem_ctx
, cache_dir
, gpo
->file_sys_path
,
491 &server
, &share
, &nt_path
, &unix_path
);
493 if (!NT_STATUS_IS_OK(result
)) {
497 result
= gpo_get_sysvol_gpt_version(mem_ctx
,
501 if (!NT_STATUS_IS_OK(result
) &&
502 !NT_STATUS_EQUAL(result
, NT_STATUS_NO_SUCH_FILE
)) {
503 DEBUG(10,("check_refresh_gpo: "
504 "failed to get local gpt version: %s\n",
509 DEBUG(10,("check_refresh_gpo: versions gpo %d sysvol %d\n",
510 gpo
->version
, sysvol_gpt_version
));
512 /* FIXME: handle GPO_INFO_FLAG_FORCED_REFRESH from flags */
514 while (gpo
->version
> sysvol_gpt_version
) {
516 DEBUG(1,("check_refresh_gpo: need to refresh GPO\n"));
518 result
= gpo_fetch_files(mem_ctx
, ads
, cache_dir
, gpo
);
519 if (!NT_STATUS_IS_OK(result
)) {
523 result
= gpo_get_sysvol_gpt_version(mem_ctx
,
527 if (!NT_STATUS_IS_OK(result
)) {
528 DEBUG(10,("check_refresh_gpo: "
529 "failed to get local gpt version: %s\n",
534 if (gpo
->version
== sysvol_gpt_version
) {
539 DEBUG(10,("Name:\t\t\t%s (%s)\n", gpo
->display_name
, gpo
->name
));
540 DEBUGADD(10,("sysvol GPT version:\t%d (user: %d, machine: %d)\n",
542 GPO_VERSION_USER(sysvol_gpt_version
),
543 GPO_VERSION_MACHINE(sysvol_gpt_version
)));
544 DEBUGADD(10,("LDAP GPO version:\t%d (user: %d, machine: %d)\n",
546 GPO_VERSION_USER(gpo
->version
),
547 GPO_VERSION_MACHINE(gpo
->version
)));
548 DEBUGADD(10,("LDAP GPO link:\t\t%s\n", gpo
->link
));
550 result
= NT_STATUS_OK
;
557 /****************************************************************
558 check wether the version numbers in the gpo_list match the locally stored, if
559 not, go and get each required GPO via CIFS
560 ****************************************************************/
562 NTSTATUS
check_refresh_gpo_list(ADS_STRUCT
*ads
,
564 const char *cache_dir
,
566 const struct GROUP_POLICY_OBJECT
*gpo_list
)
568 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
569 const struct GROUP_POLICY_OBJECT
*gpo
;
572 return NT_STATUS_INVALID_PARAMETER
;
575 for (gpo
= gpo_list
; gpo
; gpo
= gpo
->next
) {
577 result
= check_refresh_gpo(ads
, mem_ctx
, cache_dir
, flags
, gpo
);
578 if (!NT_STATUS_IS_OK(result
)) {
583 result
= NT_STATUS_OK
;
586 /* FIXME close cli connection */
591 /****************************************************************
592 ****************************************************************/
594 NTSTATUS
gpo_get_unix_path(TALLOC_CTX
*mem_ctx
,
595 const char *cache_dir
,
596 const struct GROUP_POLICY_OBJECT
*gpo
,
599 char *server
, *share
, *nt_path
;
600 return gpo_explode_filesyspath(mem_ctx
, cache_dir
, gpo
->file_sys_path
,
601 &server
, &share
, &nt_path
, unix_path
);
604 /****************************************************************
605 ****************************************************************/
607 char *gpo_flag_str(TALLOC_CTX
*ctx
, uint32_t flags
)
615 str
= talloc_strdup(ctx
, "");
620 if (flags
& GPO_INFO_FLAG_SLOWLINK
)
621 str
= talloc_strdup_append(str
, "GPO_INFO_FLAG_SLOWLINK ");
622 if (flags
& GPO_INFO_FLAG_VERBOSE
)
623 str
= talloc_strdup_append(str
, "GPO_INFO_FLAG_VERBOSE ");
624 if (flags
& GPO_INFO_FLAG_SAFEMODE_BOOT
)
625 str
= talloc_strdup_append(str
, "GPO_INFO_FLAG_SAFEMODE_BOOT ");
626 if (flags
& GPO_INFO_FLAG_NOCHANGES
)
627 str
= talloc_strdup_append(str
, "GPO_INFO_FLAG_NOCHANGES ");
628 if (flags
& GPO_INFO_FLAG_MACHINE
)
629 str
= talloc_strdup_append(str
, "GPO_INFO_FLAG_MACHINE ");
630 if (flags
& GPO_INFO_FLAG_LOGRSOP_TRANSITION
)
631 str
= talloc_strdup_append(str
, "GPO_INFO_FLAG_LOGRSOP_TRANSITION ");
632 if (flags
& GPO_INFO_FLAG_LINKTRANSITION
)
633 str
= talloc_strdup_append(str
, "GPO_INFO_FLAG_LINKTRANSITION ");
634 if (flags
& GPO_INFO_FLAG_FORCED_REFRESH
)
635 str
= talloc_strdup_append(str
, "GPO_INFO_FLAG_FORCED_REFRESH ");
636 if (flags
& GPO_INFO_FLAG_BACKGROUND
)
637 str
= talloc_strdup_append(str
, "GPO_INFO_FLAG_BACKGROUND ");
642 /****************************************************************
643 ****************************************************************/
645 NTSTATUS
gp_find_file(TALLOC_CTX
*mem_ctx
,
647 const char *filename
,
649 const char **filename_out
)
651 const char *tmp
= NULL
;
653 const char *path
= NULL
;
655 if (flags
& GPO_LIST_FLAG_MACHINE
) {
661 tmp
= talloc_asprintf(mem_ctx
, "%s/%s/%s", filename
,
663 NT_STATUS_HAVE_NO_MEMORY(tmp
);
665 if (stat(tmp
, &sbuf
) == 0) {
670 path
= talloc_strdup_upper(mem_ctx
, path
);
671 NT_STATUS_HAVE_NO_MEMORY(path
);
673 tmp
= talloc_asprintf(mem_ctx
, "%s/%s/%s", filename
,
675 NT_STATUS_HAVE_NO_MEMORY(tmp
);
677 if (stat(tmp
, &sbuf
) == 0) {
682 return NT_STATUS_NO_SUCH_FILE
;
685 /****************************************************************
686 ****************************************************************/
688 ADS_STATUS
gp_get_machine_token(ADS_STRUCT
*ads
,
691 struct security_token
**token
)
694 struct security_token
*ad_token
= NULL
;
698 status
= ads_get_sid_token(ads
, mem_ctx
, dn
, &ad_token
);
699 if (!ADS_ERR_OK(status
)) {
702 ntstatus
= merge_nt_token(mem_ctx
, ad_token
, get_system_token(),
704 if (!NT_STATUS_IS_OK(ntstatus
)) {
705 return ADS_ERROR_NT(ntstatus
);
709 return ADS_ERROR_NT(NT_STATUS_NOT_SUPPORTED
);
713 /****************************************************************
714 ****************************************************************/
716 NTSTATUS
gpo_copy(TALLOC_CTX
*mem_ctx
,
717 const struct GROUP_POLICY_OBJECT
*gpo_src
,
718 struct GROUP_POLICY_OBJECT
**gpo_dst
)
720 struct GROUP_POLICY_OBJECT
*gpo
;
722 gpo
= talloc_zero(mem_ctx
, struct GROUP_POLICY_OBJECT
);
723 NT_STATUS_HAVE_NO_MEMORY(gpo
);
725 gpo
->options
= gpo_src
->options
;
726 gpo
->version
= gpo_src
->version
;
728 gpo
->ds_path
= talloc_strdup(gpo
, gpo_src
->ds_path
);
729 if (gpo
->ds_path
== NULL
) {
731 return NT_STATUS_NO_MEMORY
;
734 gpo
->file_sys_path
= talloc_strdup(gpo
, gpo_src
->file_sys_path
);
735 if (gpo
->file_sys_path
== NULL
) {
737 return NT_STATUS_NO_MEMORY
;
740 gpo
->display_name
= talloc_strdup(gpo
, gpo_src
->display_name
);
741 if (gpo
->display_name
== NULL
) {
743 return NT_STATUS_NO_MEMORY
;
746 gpo
->name
= talloc_strdup(gpo
, gpo_src
->name
);
747 if (gpo
->name
== NULL
) {
749 return NT_STATUS_NO_MEMORY
;
752 gpo
->link
= talloc_strdup(gpo
, gpo_src
->link
);
753 if (gpo
->link
== NULL
) {
755 return NT_STATUS_NO_MEMORY
;
758 gpo
->link_type
= gpo_src
->link_type
;
760 if (gpo_src
->user_extensions
) {
761 gpo
->user_extensions
= talloc_strdup(gpo
, gpo_src
->user_extensions
);
762 if (gpo
->user_extensions
== NULL
) {
764 return NT_STATUS_NO_MEMORY
;
768 if (gpo_src
->machine_extensions
) {
769 gpo
->machine_extensions
= talloc_strdup(gpo
, gpo_src
->machine_extensions
);
770 if (gpo
->machine_extensions
== NULL
) {
772 return NT_STATUS_NO_MEMORY
;
776 if (gpo_src
->security_descriptor
== NULL
) {
777 /* existing SD assumed */
779 return NT_STATUS_INVALID_PARAMETER
;
781 gpo
->security_descriptor
= security_descriptor_copy(gpo
,
782 gpo_src
->security_descriptor
);
783 if (gpo
->security_descriptor
== NULL
) {
785 return NT_STATUS_NO_MEMORY
;
788 gpo
->next
= gpo
->prev
= NULL
;