VERSION: Bump version number up to 3.6.9.
[Samba.git] / libgpo / gpo_ldap.c
blob6abaf29cf0d333d6f7e572dc5786a4e1b4a93223
1 /*
2 * Unix SMB/CIFS implementation.
3 * Group Policy Object Support
4 * Copyright (C) Guenther Deschner 2005,2007
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 "libgpo/gpo.h"
22 #include "auth.h"
23 #if _SAMBA_BUILD_ == 4
24 #include "libgpo/gpo_s4.h"
25 #include "source4/libgpo/ads_convenience.h"
26 #endif
27 #include "../libcli/security/security.h"
29 /****************************************************************
30 parse the raw extension string into a GP_EXT structure
31 ****************************************************************/
33 bool ads_parse_gp_ext(TALLOC_CTX *mem_ctx,
34 const char *extension_raw,
35 struct GP_EXT **gp_ext)
37 bool ret = false;
38 struct GP_EXT *ext = NULL;
39 char **ext_list = NULL;
40 char **ext_strings = NULL;
41 int i;
43 if (!extension_raw) {
44 goto parse_error;
47 DEBUG(20,("ads_parse_gp_ext: %s\n", extension_raw));
49 ext = talloc_zero(mem_ctx, struct GP_EXT);
50 if (!ext) {
51 goto parse_error;
54 ext_list = str_list_make(mem_ctx, extension_raw, "]");
55 if (!ext_list) {
56 goto parse_error;
59 for (i = 0; ext_list[i] != NULL; i++) {
60 /* no op */
63 ext->num_exts = i;
65 if (ext->num_exts) {
66 ext->extensions = talloc_zero_array(mem_ctx, char *,
67 ext->num_exts);
68 ext->extensions_guid = talloc_zero_array(mem_ctx, char *,
69 ext->num_exts);
70 ext->snapins = talloc_zero_array(mem_ctx, char *,
71 ext->num_exts);
72 ext->snapins_guid = talloc_zero_array(mem_ctx, char *,
73 ext->num_exts);
76 ext->gp_extension = talloc_strdup(mem_ctx, extension_raw);
78 if (!ext->extensions || !ext->extensions_guid ||
79 !ext->snapins || !ext->snapins_guid ||
80 !ext->gp_extension) {
81 goto parse_error;
84 for (i = 0; ext_list[i] != NULL; i++) {
86 int k;
87 char *p, *q;
89 DEBUGADD(10,("extension #%d\n", i));
91 p = ext_list[i];
93 if (p[0] == '[') {
94 p++;
97 ext_strings = str_list_make(mem_ctx, p, "}");
98 if (ext_strings == NULL) {
99 goto parse_error;
102 for (k = 0; ext_strings[k] != NULL; k++) {
103 /* no op */
106 q = ext_strings[0];
108 if (q[0] == '{') {
109 q++;
112 ext->extensions[i] = talloc_strdup(mem_ctx,
113 cse_gpo_guid_string_to_name(q));
114 ext->extensions_guid[i] = talloc_strdup(mem_ctx, q);
116 /* we might have no name for the guid */
117 if (ext->extensions_guid[i] == NULL) {
118 goto parse_error;
121 for (k = 1; ext_strings[k] != NULL; k++) {
123 char *m = ext_strings[k];
125 if (m[0] == '{') {
126 m++;
129 /* FIXME: theoretically there could be more than one
130 * snapin per extension */
131 ext->snapins[i] = talloc_strdup(mem_ctx,
132 cse_snapin_gpo_guid_string_to_name(m));
133 ext->snapins_guid[i] = talloc_strdup(mem_ctx, m);
135 /* we might have no name for the guid */
136 if (ext->snapins_guid[i] == NULL) {
137 goto parse_error;
142 *gp_ext = ext;
144 ret = true;
146 parse_error:
147 talloc_free(ext_list);
148 talloc_free(ext_strings);
150 return ret;
153 #ifdef HAVE_LDAP
155 /****************************************************************
156 parse the raw link string into a GP_LINK structure
157 ****************************************************************/
159 static ADS_STATUS gpo_parse_gplink(TALLOC_CTX *mem_ctx,
160 const char *gp_link_raw,
161 uint32_t options,
162 struct GP_LINK *gp_link)
164 ADS_STATUS status = ADS_ERROR_NT(NT_STATUS_NO_MEMORY);
165 char **link_list;
166 int i;
168 ZERO_STRUCTP(gp_link);
170 DEBUG(10,("gpo_parse_gplink: gPLink: %s\n", gp_link_raw));
172 link_list = str_list_make_v3(mem_ctx, gp_link_raw, "]");
173 if (!link_list) {
174 goto parse_error;
177 for (i = 0; link_list[i] != NULL; i++) {
178 /* no op */
181 gp_link->gp_opts = options;
182 gp_link->num_links = i;
184 if (gp_link->num_links) {
185 gp_link->link_names = talloc_zero_array(mem_ctx, char *,
186 gp_link->num_links);
187 gp_link->link_opts = talloc_zero_array(mem_ctx, uint32_t,
188 gp_link->num_links);
191 gp_link->gp_link = talloc_strdup(mem_ctx, gp_link_raw);
193 if (!gp_link->link_names || !gp_link->link_opts || !gp_link->gp_link) {
194 goto parse_error;
197 for (i = 0; link_list[i] != NULL; i++) {
199 char *p, *q;
201 DEBUGADD(10,("gpo_parse_gplink: processing link #%d\n", i));
203 q = link_list[i];
204 if (q[0] == '[') {
205 q++;
208 p = strchr(q, ';');
210 if (p == NULL) {
211 goto parse_error;
214 gp_link->link_names[i] = talloc_strdup(mem_ctx, q);
215 if (gp_link->link_names[i] == NULL) {
216 goto parse_error;
218 gp_link->link_names[i][PTR_DIFF(p, q)] = 0;
220 gp_link->link_opts[i] = atoi(p + 1);
222 DEBUGADD(10,("gpo_parse_gplink: link: %s\n",
223 gp_link->link_names[i]));
224 DEBUGADD(10,("gpo_parse_gplink: opt: %d\n",
225 gp_link->link_opts[i]));
229 status = ADS_SUCCESS;
231 parse_error:
232 talloc_free(link_list);
234 return status;
237 /****************************************************************
238 helper call to get a GP_LINK structure from a linkdn
239 ****************************************************************/
241 ADS_STATUS ads_get_gpo_link(ADS_STRUCT *ads,
242 TALLOC_CTX *mem_ctx,
243 const char *link_dn,
244 struct GP_LINK *gp_link_struct)
246 ADS_STATUS status;
247 const char *attrs[] = {"gPLink", "gPOptions", NULL};
248 LDAPMessage *res = NULL;
249 const char *gp_link;
250 uint32_t gp_options;
252 ZERO_STRUCTP(gp_link_struct);
254 status = ads_search_dn(ads, &res, link_dn, attrs);
255 if (!ADS_ERR_OK(status)) {
256 DEBUG(10,("ads_get_gpo_link: search failed with %s\n",
257 ads_errstr(status)));
258 return status;
261 if (ads_count_replies(ads, res) != 1) {
262 DEBUG(10,("ads_get_gpo_link: no result\n"));
263 ads_msgfree(ads, res);
264 return ADS_ERROR(LDAP_NO_SUCH_OBJECT);
267 gp_link = ads_pull_string(ads, mem_ctx, res, "gPLink");
268 if (gp_link == NULL) {
269 DEBUG(10,("ads_get_gpo_link: no 'gPLink' attribute found\n"));
270 ads_msgfree(ads, res);
271 return ADS_ERROR(LDAP_NO_SUCH_ATTRIBUTE);
274 /* perfectly legal to have no options */
275 if (!ads_pull_uint32(ads, res, "gPOptions", &gp_options)) {
276 DEBUG(10,("ads_get_gpo_link: "
277 "no 'gPOptions' attribute found\n"));
278 gp_options = 0;
281 ads_msgfree(ads, res);
283 return gpo_parse_gplink(mem_ctx, gp_link, gp_options, gp_link_struct);
286 /****************************************************************
287 helper call to add a gp link
288 ****************************************************************/
290 ADS_STATUS ads_add_gpo_link(ADS_STRUCT *ads,
291 TALLOC_CTX *mem_ctx,
292 const char *link_dn,
293 const char *gpo_dn,
294 uint32_t gpo_opt)
296 ADS_STATUS status;
297 const char *attrs[] = {"gPLink", NULL};
298 LDAPMessage *res = NULL;
299 const char *gp_link, *gp_link_new;
300 ADS_MODLIST mods;
302 /* although ADS allows to set anything here, we better check here if
303 * the gpo_dn is sane */
305 if (!strnequal(gpo_dn, "LDAP://CN={", strlen("LDAP://CN={")) != 0) {
306 return ADS_ERROR(LDAP_INVALID_DN_SYNTAX);
309 status = ads_search_dn(ads, &res, link_dn, attrs);
310 if (!ADS_ERR_OK(status)) {
311 DEBUG(10,("ads_add_gpo_link: search failed with %s\n",
312 ads_errstr(status)));
313 return status;
316 if (ads_count_replies(ads, res) != 1) {
317 DEBUG(10,("ads_add_gpo_link: no result\n"));
318 ads_msgfree(ads, res);
319 return ADS_ERROR(LDAP_NO_SUCH_OBJECT);
322 gp_link = ads_pull_string(ads, mem_ctx, res, "gPLink");
323 if (gp_link == NULL) {
324 gp_link_new = talloc_asprintf(mem_ctx, "[%s;%d]",
325 gpo_dn, gpo_opt);
326 } else {
327 gp_link_new = talloc_asprintf(mem_ctx, "%s[%s;%d]",
328 gp_link, gpo_dn, gpo_opt);
331 ads_msgfree(ads, res);
332 ADS_ERROR_HAVE_NO_MEMORY(gp_link_new);
334 mods = ads_init_mods(mem_ctx);
335 ADS_ERROR_HAVE_NO_MEMORY(mods);
337 status = ads_mod_str(mem_ctx, &mods, "gPLink", gp_link_new);
338 if (!ADS_ERR_OK(status)) {
339 return status;
342 return ads_gen_mod(ads, link_dn, mods);
345 /****************************************************************
346 helper call to delete add a gp link
347 ****************************************************************/
349 /* untested & broken */
350 ADS_STATUS ads_delete_gpo_link(ADS_STRUCT *ads,
351 TALLOC_CTX *mem_ctx,
352 const char *link_dn,
353 const char *gpo_dn)
355 ADS_STATUS status;
356 const char *attrs[] = {"gPLink", NULL};
357 LDAPMessage *res = NULL;
358 const char *gp_link, *gp_link_new = NULL;
359 ADS_MODLIST mods;
361 /* check for a sane gpo_dn */
362 if (gpo_dn[0] != '[') {
363 DEBUG(10,("ads_delete_gpo_link: first char not: [\n"));
364 return ADS_ERROR(LDAP_INVALID_DN_SYNTAX);
367 if (gpo_dn[strlen(gpo_dn)] != ']') {
368 DEBUG(10,("ads_delete_gpo_link: last char not: ]\n"));
369 return ADS_ERROR(LDAP_INVALID_DN_SYNTAX);
372 status = ads_search_dn(ads, &res, link_dn, attrs);
373 if (!ADS_ERR_OK(status)) {
374 DEBUG(10,("ads_delete_gpo_link: search failed with %s\n",
375 ads_errstr(status)));
376 return status;
379 if (ads_count_replies(ads, res) != 1) {
380 DEBUG(10,("ads_delete_gpo_link: no result\n"));
381 ads_msgfree(ads, res);
382 return ADS_ERROR(LDAP_NO_SUCH_OBJECT);
385 gp_link = ads_pull_string(ads, mem_ctx, res, "gPLink");
386 if (gp_link == NULL) {
387 return ADS_ERROR(LDAP_NO_SUCH_ATTRIBUTE);
390 /* find link to delete */
391 /* gp_link_new = talloc_asprintf(mem_ctx, "%s[%s;%d]", gp_link,
392 gpo_dn, gpo_opt); */
394 ads_msgfree(ads, res);
395 ADS_ERROR_HAVE_NO_MEMORY(gp_link_new);
397 mods = ads_init_mods(mem_ctx);
398 ADS_ERROR_HAVE_NO_MEMORY(mods);
400 status = ads_mod_str(mem_ctx, &mods, "gPLink", gp_link_new);
401 if (!ADS_ERR_OK(status)) {
402 return status;
405 return ads_gen_mod(ads, link_dn, mods);
408 /****************************************************************
409 parse a GROUP_POLICY_OBJECT structure from an LDAPMessage result
410 ****************************************************************/
412 ADS_STATUS ads_parse_gpo(ADS_STRUCT *ads,
413 TALLOC_CTX *mem_ctx,
414 LDAPMessage *res,
415 const char *gpo_dn,
416 struct GROUP_POLICY_OBJECT *gpo)
418 ZERO_STRUCTP(gpo);
420 ADS_ERROR_HAVE_NO_MEMORY(res);
422 if (gpo_dn) {
423 gpo->ds_path = talloc_strdup(mem_ctx, gpo_dn);
424 } else {
425 gpo->ds_path = ads_get_dn(ads, mem_ctx, res);
428 ADS_ERROR_HAVE_NO_MEMORY(gpo->ds_path);
430 if (!ads_pull_uint32(ads, res, "versionNumber", &gpo->version)) {
431 return ADS_ERROR(LDAP_NO_MEMORY);
434 if (!ads_pull_uint32(ads, res, "flags", &gpo->options)) {
435 return ADS_ERROR(LDAP_NO_MEMORY);
438 gpo->file_sys_path = ads_pull_string(ads, mem_ctx, res,
439 "gPCFileSysPath");
440 ADS_ERROR_HAVE_NO_MEMORY(gpo->file_sys_path);
442 gpo->display_name = ads_pull_string(ads, mem_ctx, res,
443 "displayName");
444 ADS_ERROR_HAVE_NO_MEMORY(gpo->display_name);
446 gpo->name = ads_pull_string(ads, mem_ctx, res,
447 "name");
448 ADS_ERROR_HAVE_NO_MEMORY(gpo->name);
450 gpo->machine_extensions = ads_pull_string(ads, mem_ctx, res,
451 "gPCMachineExtensionNames");
452 gpo->user_extensions = ads_pull_string(ads, mem_ctx, res,
453 "gPCUserExtensionNames");
455 ads_pull_sd(ads, mem_ctx, res, "ntSecurityDescriptor",
456 &gpo->security_descriptor);
457 ADS_ERROR_HAVE_NO_MEMORY(gpo->security_descriptor);
459 return ADS_ERROR(LDAP_SUCCESS);
462 /****************************************************************
463 get a GROUP_POLICY_OBJECT structure based on different input parameters
464 ****************************************************************/
466 ADS_STATUS ads_get_gpo(ADS_STRUCT *ads,
467 TALLOC_CTX *mem_ctx,
468 const char *gpo_dn,
469 const char *display_name,
470 const char *guid_name,
471 struct GROUP_POLICY_OBJECT *gpo)
473 ADS_STATUS status;
474 LDAPMessage *res = NULL;
475 char *dn;
476 const char *filter;
477 const char *attrs[] = {
478 "cn",
479 "displayName",
480 "flags",
481 "gPCFileSysPath",
482 "gPCFunctionalityVersion",
483 "gPCMachineExtensionNames",
484 "gPCUserExtensionNames",
485 "gPCWQLFilter",
486 "name",
487 "ntSecurityDescriptor",
488 "versionNumber",
489 NULL};
490 uint32_t sd_flags = SECINFO_DACL;
492 ZERO_STRUCTP(gpo);
494 if (!gpo_dn && !display_name && !guid_name) {
495 return ADS_ERROR(LDAP_NO_SUCH_OBJECT);
498 if (gpo_dn) {
500 if (strnequal(gpo_dn, "LDAP://", strlen("LDAP://")) != 0) {
501 gpo_dn = gpo_dn + strlen("LDAP://");
504 status = ads_search_retry_dn_sd_flags(ads, &res,
505 sd_flags,
506 gpo_dn, attrs);
508 } else if (display_name || guid_name) {
510 filter = talloc_asprintf(mem_ctx,
511 "(&(objectclass=groupPolicyContainer)(%s=%s))",
512 display_name ? "displayName" : "name",
513 display_name ? display_name : guid_name);
514 ADS_ERROR_HAVE_NO_MEMORY(filter);
516 status = ads_do_search_all_sd_flags(ads, ads->config.bind_path,
517 LDAP_SCOPE_SUBTREE, filter,
518 attrs, sd_flags, &res);
521 if (!ADS_ERR_OK(status)) {
522 DEBUG(10,("ads_get_gpo: search failed with %s\n",
523 ads_errstr(status)));
524 return status;
527 if (ads_count_replies(ads, res) != 1) {
528 DEBUG(10,("ads_get_gpo: no result\n"));
529 ads_msgfree(ads, res);
530 return ADS_ERROR(LDAP_NO_SUCH_OBJECT);
533 dn = ads_get_dn(ads, mem_ctx, res);
534 if (dn == NULL) {
535 ads_msgfree(ads, res);
536 return ADS_ERROR(LDAP_NO_MEMORY);
539 status = ads_parse_gpo(ads, mem_ctx, res, dn, gpo);
540 ads_msgfree(ads, res);
541 TALLOC_FREE(dn);
543 return status;
546 /****************************************************************
547 add a gplink to the GROUP_POLICY_OBJECT linked list
548 ****************************************************************/
550 static ADS_STATUS add_gplink_to_gpo_list(ADS_STRUCT *ads,
551 TALLOC_CTX *mem_ctx,
552 struct GROUP_POLICY_OBJECT **gpo_list,
553 const char *link_dn,
554 struct GP_LINK *gp_link,
555 enum GPO_LINK_TYPE link_type,
556 bool only_add_forced_gpos,
557 const struct security_token *token)
559 ADS_STATUS status;
560 int i;
562 for (i = 0; i < gp_link->num_links; i++) {
564 struct GROUP_POLICY_OBJECT *new_gpo = NULL;
566 if (gp_link->link_opts[i] & GPO_LINK_OPT_DISABLED) {
567 DEBUG(10,("skipping disabled GPO\n"));
568 continue;
571 if (only_add_forced_gpos) {
573 if (!(gp_link->link_opts[i] & GPO_LINK_OPT_ENFORCED)) {
574 DEBUG(10,("skipping nonenforced GPO link "
575 "because GPOPTIONS_BLOCK_INHERITANCE "
576 "has been set\n"));
577 continue;
578 } else {
579 DEBUG(10,("adding enforced GPO link although "
580 "the GPOPTIONS_BLOCK_INHERITANCE "
581 "has been set\n"));
585 new_gpo = TALLOC_ZERO_P(mem_ctx, struct GROUP_POLICY_OBJECT);
586 ADS_ERROR_HAVE_NO_MEMORY(new_gpo);
588 status = ads_get_gpo(ads, mem_ctx, gp_link->link_names[i],
589 NULL, NULL, new_gpo);
590 if (!ADS_ERR_OK(status)) {
591 DEBUG(10,("failed to get gpo: %s\n",
592 gp_link->link_names[i]));
593 return status;
596 status = ADS_ERROR_NT(gpo_apply_security_filtering(new_gpo,
597 token));
598 if (!ADS_ERR_OK(status)) {
599 DEBUG(10,("skipping GPO \"%s\" as object "
600 "has no access to it\n",
601 new_gpo->display_name));
602 talloc_free(new_gpo);
603 continue;
606 new_gpo->link = link_dn;
607 new_gpo->link_type = link_type;
609 DLIST_ADD(*gpo_list, new_gpo);
611 DEBUG(10,("add_gplink_to_gplist: added GPLINK #%d %s "
612 "to GPO list\n", i, gp_link->link_names[i]));
615 return ADS_ERROR(LDAP_SUCCESS);
618 /****************************************************************
619 ****************************************************************/
621 ADS_STATUS ads_get_sid_token(ADS_STRUCT *ads,
622 TALLOC_CTX *mem_ctx,
623 const char *dn,
624 struct security_token **token)
626 ADS_STATUS status;
627 struct dom_sid object_sid;
628 struct dom_sid primary_group_sid;
629 struct dom_sid *ad_token_sids;
630 size_t num_ad_token_sids = 0;
631 struct dom_sid *token_sids;
632 uint32_t num_token_sids = 0;
633 struct security_token *new_token = NULL;
634 int i;
636 status = ads_get_tokensids(ads, mem_ctx, dn,
637 &object_sid, &primary_group_sid,
638 &ad_token_sids, &num_ad_token_sids);
639 if (!ADS_ERR_OK(status)) {
640 return status;
643 token_sids = TALLOC_ARRAY(mem_ctx, struct dom_sid, 1);
644 ADS_ERROR_HAVE_NO_MEMORY(token_sids);
646 status = ADS_ERROR_NT(add_sid_to_array_unique(mem_ctx,
647 &primary_group_sid,
648 &token_sids,
649 &num_token_sids));
650 if (!ADS_ERR_OK(status)) {
651 return status;
654 for (i = 0; i < num_ad_token_sids; i++) {
656 if (sid_check_is_in_builtin(&ad_token_sids[i])) {
657 continue;
660 status = ADS_ERROR_NT(add_sid_to_array_unique(mem_ctx,
661 &ad_token_sids[i],
662 &token_sids,
663 &num_token_sids));
664 if (!ADS_ERR_OK(status)) {
665 return status;
669 new_token = create_local_nt_token(mem_ctx, &object_sid, false,
670 num_token_sids, token_sids);
671 ADS_ERROR_HAVE_NO_MEMORY(new_token);
673 *token = new_token;
675 security_token_debug(DBGC_CLASS, 5, *token);
677 return ADS_ERROR_LDAP(LDAP_SUCCESS);
680 /****************************************************************
681 ****************************************************************/
683 static ADS_STATUS add_local_policy_to_gpo_list(TALLOC_CTX *mem_ctx,
684 struct GROUP_POLICY_OBJECT **gpo_list,
685 enum GPO_LINK_TYPE link_type)
687 struct GROUP_POLICY_OBJECT *gpo = NULL;
689 ADS_ERROR_HAVE_NO_MEMORY(gpo_list);
691 gpo = TALLOC_ZERO_P(mem_ctx, struct GROUP_POLICY_OBJECT);
692 ADS_ERROR_HAVE_NO_MEMORY(gpo);
694 gpo->name = talloc_strdup(mem_ctx, "Local Policy");
695 ADS_ERROR_HAVE_NO_MEMORY(gpo->name);
697 gpo->display_name = talloc_strdup(mem_ctx, "Local Policy");
698 ADS_ERROR_HAVE_NO_MEMORY(gpo->display_name);
700 gpo->link_type = link_type;
702 DLIST_ADD(*gpo_list, gpo);
704 return ADS_ERROR_NT(NT_STATUS_OK);
707 /****************************************************************
708 get the full list of GROUP_POLICY_OBJECTs for a given dn
709 ****************************************************************/
711 ADS_STATUS ads_get_gpo_list(ADS_STRUCT *ads,
712 TALLOC_CTX *mem_ctx,
713 const char *dn,
714 uint32_t flags,
715 const struct security_token *token,
716 struct GROUP_POLICY_OBJECT **gpo_list)
718 /* (L)ocal (S)ite (D)omain (O)rganizational(U)nit */
720 ADS_STATUS status;
721 struct GP_LINK gp_link;
722 const char *parent_dn, *site_dn, *tmp_dn;
723 bool add_only_forced_gpos = false;
725 ZERO_STRUCTP(gpo_list);
727 if (!dn) {
728 return ADS_ERROR_NT(NT_STATUS_INVALID_PARAMETER);
731 if (!ads_set_sasl_wrap_flags(ads, ADS_AUTH_SASL_SIGN)) {
732 return ADS_ERROR(LDAP_INVALID_CREDENTIALS);
735 DEBUG(10,("ads_get_gpo_list: getting GPO list for [%s]\n", dn));
737 /* (L)ocal */
738 status = add_local_policy_to_gpo_list(mem_ctx, gpo_list,
739 GP_LINK_LOCAL);
740 if (!ADS_ERR_OK(status)) {
741 return status;
744 /* (S)ite */
746 /* are site GPOs valid for users as well ??? */
747 if (flags & GPO_LIST_FLAG_MACHINE) {
749 status = ads_site_dn_for_machine(ads, mem_ctx,
750 ads->config.ldap_server_name,
751 &site_dn);
752 if (!ADS_ERR_OK(status)) {
753 return status;
756 DEBUG(10,("ads_get_gpo_list: query SITE: [%s] for GPOs\n",
757 site_dn));
759 status = ads_get_gpo_link(ads, mem_ctx, site_dn, &gp_link);
760 if (ADS_ERR_OK(status)) {
762 if (DEBUGLEVEL >= 100) {
763 dump_gplink(ads, mem_ctx, &gp_link);
766 status = add_gplink_to_gpo_list(ads, mem_ctx, gpo_list,
767 site_dn, &gp_link,
768 GP_LINK_SITE,
769 add_only_forced_gpos,
770 token);
771 if (!ADS_ERR_OK(status)) {
772 return status;
775 if (flags & GPO_LIST_FLAG_SITEONLY) {
776 return ADS_ERROR(LDAP_SUCCESS);
779 /* inheritance can't be blocked at the site level */
783 tmp_dn = dn;
785 while ((parent_dn = ads_parent_dn(tmp_dn)) &&
786 (!strequal(parent_dn, ads_parent_dn(ads->config.bind_path)))) {
788 /* (D)omain */
790 /* An account can just be a member of one domain */
791 if (strncmp(parent_dn, "DC=", strlen("DC=")) == 0) {
793 DEBUG(10,("ads_get_gpo_list: query DC: [%s] for GPOs\n",
794 parent_dn));
796 status = ads_get_gpo_link(ads, mem_ctx, parent_dn,
797 &gp_link);
798 if (ADS_ERR_OK(status)) {
800 if (DEBUGLEVEL >= 100) {
801 dump_gplink(ads, mem_ctx, &gp_link);
804 /* block inheritance from now on */
805 if (gp_link.gp_opts &
806 GPOPTIONS_BLOCK_INHERITANCE) {
807 add_only_forced_gpos = true;
810 status = add_gplink_to_gpo_list(ads,
811 mem_ctx,
812 gpo_list,
813 parent_dn,
814 &gp_link,
815 GP_LINK_DOMAIN,
816 add_only_forced_gpos,
817 token);
818 if (!ADS_ERR_OK(status)) {
819 return status;
824 tmp_dn = parent_dn;
827 /* reset dn again */
828 tmp_dn = dn;
830 while ((parent_dn = ads_parent_dn(tmp_dn)) &&
831 (!strequal(parent_dn, ads_parent_dn(ads->config.bind_path)))) {
834 /* (O)rganizational(U)nit */
836 /* An account can be a member of more OUs */
837 if (strncmp(parent_dn, "OU=", strlen("OU=")) == 0) {
839 DEBUG(10,("ads_get_gpo_list: query OU: [%s] for GPOs\n",
840 parent_dn));
842 status = ads_get_gpo_link(ads, mem_ctx, parent_dn,
843 &gp_link);
844 if (ADS_ERR_OK(status)) {
846 if (DEBUGLEVEL >= 100) {
847 dump_gplink(ads, mem_ctx, &gp_link);
850 /* block inheritance from now on */
851 if (gp_link.gp_opts &
852 GPOPTIONS_BLOCK_INHERITANCE) {
853 add_only_forced_gpos = true;
856 status = add_gplink_to_gpo_list(ads,
857 mem_ctx,
858 gpo_list,
859 parent_dn,
860 &gp_link,
861 GP_LINK_OU,
862 add_only_forced_gpos,
863 token);
864 if (!ADS_ERR_OK(status)) {
865 return status;
870 tmp_dn = parent_dn;
874 return ADS_ERROR(LDAP_SUCCESS);
877 #endif /* HAVE_LDAP */