[GLUE] Rsync SAMBA_3_0 SVN r25598 in order to create the v3-0-test branch.
[Samba.git] / source / libgpo / gpo_util.c
blob9c74fc6a73a5c997fb5aff6709ce4d40d58bbc56
1 /*
2 * Unix SMB/CIFS implementation.
3 * Group Policy Object Support
4 * Copyright (C) Guenther Deschner 2005-2006
5 *
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 2 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, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #include "includes.h"
23 #ifdef HAVE_LDAP
25 #define DEFAULT_DOMAIN_POLICY "Default Domain Policy"
26 #define DEFAULT_DOMAIN_CONTROLLERS_POLICY "Default Domain Controllers Policy"
28 /* should we store a parsed guid ? */
29 struct gpo_table {
30 const char *name;
31 const char *guid_string;
34 struct snapin_table {
35 const char *name;
36 const char *guid_string;
37 ADS_STATUS (*snapin_fn)(ADS_STRUCT *, TALLOC_CTX *mem_ctx, const char *, const char *);
40 #if 0 /* unused */
41 static struct gpo_table gpo_default_policy[] = {
42 { DEFAULT_DOMAIN_POLICY,
43 "31B2F340-016D-11D2-945F-00C04FB984F9" },
44 { DEFAULT_DOMAIN_CONTROLLERS_POLICY,
45 "6AC1786C-016F-11D2-945F-00C04fB984F9" },
46 { NULL, NULL }
48 #endif
50 /* the following is seen in gPCMachineExtensionNames or gPCUserExtensionNames */
52 static struct gpo_table gpo_cse_extensions[] = {
53 { "Administrative Templates Extension",
54 "35378EAC-683F-11D2-A89A-00C04FBBCFA2" }, /* Registry Policy ? */
55 { "Microsoft Disc Quota",
56 "3610EDA5-77EF-11D2-8DC5-00C04FA31A66" },
57 { "EFS recovery",
58 "B1BE8D72-6EAC-11D2-A4EA-00C04F79F83A" },
59 { "Folder Redirection",
60 "25537BA6-77A8-11D2-9B6C-0000F8080861" },
61 { "IP Security",
62 "E437BC1C-AA7D-11D2-A382-00C04F991E27" },
63 { "Internet Explorer Branding",
64 "A2E30F80-D7DE-11d2-BBDE-00C04F86AE3B" },
65 { "QoS Packet Scheduler",
66 "426031c0-0b47-4852-b0ca-ac3d37bfcb39" },
67 { "Scripts",
68 "42B5FAAE-6536-11D2-AE5A-0000F87571E3" },
69 { "Security",
70 "827D319E-6EAC-11D2-A4EA-00C04F79F83A" },
71 { "Software Installation",
72 "C6DC5466-785A-11D2-84D0-00C04FB169F7" },
73 { "Wireless Group Policy",
74 "0ACDD40C-75AC-BAA0-BF6DE7E7FE63" },
75 { NULL, NULL }
78 /* guess work */
79 static struct snapin_table gpo_cse_snapin_extensions[] = {
80 { "Administrative Templates",
81 "0F6B957D-509E-11D1-A7CC-0000F87571E3", gpo_snapin_handler_none },
82 { "Certificates",
83 "53D6AB1D-2488-11D1-A28C-00C04FB94F17", gpo_snapin_handler_none },
84 { "EFS recovery policy processing",
85 "B1BE8D72-6EAC-11D2-A4EA-00C04F79F83A", gpo_snapin_handler_none },
86 { "Folder Redirection policy processing",
87 "25537BA6-77A8-11D2-9B6C-0000F8080861", gpo_snapin_handler_none },
88 { "Folder Redirection",
89 "88E729D6-BDC1-11D1-BD2A-00C04FB9603F", gpo_snapin_handler_none },
90 { "Registry policy processing",
91 "35378EAC-683F-11D2-A89A-00C04FBBCFA2", gpo_snapin_handler_none },
92 { "Remote Installation Services",
93 "3060E8CE-7020-11D2-842D-00C04FA372D4", gpo_snapin_handler_none },
94 { "Security Settings",
95 "803E14A0-B4FB-11D0-A0D0-00A0C90F574B", gpo_snapin_handler_security_settings },
96 { "Security policy processing",
97 "827D319E-6EAC-11D2-A4EA-00C04F79F83A", gpo_snapin_handler_security_settings },
98 { "unknown",
99 "3060E8D0-7020-11D2-842D-00C04FA372D4", gpo_snapin_handler_none },
100 { "unknown2",
101 "53D6AB1B-2488-11D1-A28C-00C04FB94F17", gpo_snapin_handler_none },
102 { NULL, NULL, NULL }
105 static const char *name_to_guid_string(const char *name, struct gpo_table *table)
107 int i;
109 for (i = 0; table[i].name; i++) {
110 if (strequal(name, table[i].name)) {
111 return table[i].guid_string;
115 return NULL;
118 static const char *guid_string_to_name(const char *guid_string, struct gpo_table *table)
120 int i;
122 for (i = 0; table[i].guid_string; i++) {
123 if (strequal(guid_string, table[i].guid_string)) {
124 return table[i].name;
128 return NULL;
131 static const char *snapin_guid_string_to_name(const char *guid_string,
132 struct snapin_table *table)
134 int i;
135 for (i = 0; table[i].guid_string; i++) {
136 if (strequal(guid_string, table[i].guid_string)) {
137 return table[i].name;
140 return NULL;
143 #if 0 /* unused */
144 static const char *default_gpo_name_to_guid_string(const char *name)
146 return name_to_guid_string(name, gpo_default_policy);
149 static const char *default_gpo_guid_string_to_name(const char *guid)
151 return guid_string_to_name(guid, gpo_default_policy);
153 #endif
155 const char *cse_gpo_guid_string_to_name(const char *guid)
157 return guid_string_to_name(guid, gpo_cse_extensions);
160 static const char *cse_gpo_name_to_guid_string(const char *name)
162 return name_to_guid_string(name, gpo_cse_extensions);
165 const char *cse_snapin_gpo_guid_string_to_name(const char *guid)
167 return snapin_guid_string_to_name(guid, gpo_cse_snapin_extensions);
170 void dump_gp_ext(struct GP_EXT *gp_ext, int debuglevel)
172 int lvl = debuglevel;
173 int i;
175 if (gp_ext == NULL) {
176 return;
179 DEBUG(lvl,("\t---------------------\n\n"));
180 DEBUGADD(lvl,("\tname:\t\t\t%s\n", gp_ext->gp_extension));
182 for (i=0; i< gp_ext->num_exts; i++) {
184 DEBUGADD(lvl,("\textension:\t\t\t%s\n", gp_ext->extensions_guid[i]));
185 DEBUGADD(lvl,("\textension (name):\t\t\t%s\n", gp_ext->extensions[i]));
187 DEBUGADD(lvl,("\tsnapin:\t\t\t%s\n", gp_ext->snapins_guid[i]));
188 DEBUGADD(lvl,("\tsnapin (name):\t\t\t%s\n", gp_ext->snapins[i]));
192 void dump_gpo(TALLOC_CTX *mem_ctx, struct GROUP_POLICY_OBJECT *gpo, int debuglevel)
194 int lvl = debuglevel;
196 if (gpo == NULL) {
197 return;
200 DEBUG(lvl,("---------------------\n\n"));
202 DEBUGADD(lvl,("name:\t\t\t%s\n", gpo->name));
203 DEBUGADD(lvl,("displayname:\t\t%s\n", gpo->display_name));
204 DEBUGADD(lvl,("version:\t\t%d (0x%08x)\n", gpo->version, gpo->version));
205 DEBUGADD(lvl,("version_user:\t\t%d (0x%04x)\n", GPO_VERSION_USER(gpo->version),
206 GPO_VERSION_USER(gpo->version)));
207 DEBUGADD(lvl,("version_machine:\t%d (0x%04x)\n", GPO_VERSION_MACHINE(gpo->version),
208 GPO_VERSION_MACHINE(gpo->version)));
209 DEBUGADD(lvl,("filesyspath:\t\t%s\n", gpo->file_sys_path));
210 DEBUGADD(lvl,("dspath:\t\t%s\n", gpo->ds_path));
212 DEBUGADD(lvl,("options:\t\t%d ", gpo->options));
213 if (gpo->options & GPFLAGS_USER_SETTINGS_DISABLED) {
214 DEBUGADD(lvl,("GPFLAGS_USER_SETTINGS_DISABLED "));
216 if (gpo->options & GPFLAGS_MACHINE_SETTINGS_DISABLED) {
217 DEBUGADD(lvl,("GPFLAGS_MACHINE_SETTINGS_DISABLED"));
219 DEBUGADD(lvl,("\n"));
221 DEBUGADD(lvl,("link:\t\t\t%s\n", gpo->link));
222 DEBUGADD(lvl,("link_type:\t\t%d ", gpo->link_type));
223 switch (gpo->link_type) {
224 case GP_LINK_UNKOWN:
225 DEBUGADD(lvl,("GP_LINK_UNKOWN\n"));
226 break;
227 case GP_LINK_OU:
228 DEBUGADD(lvl,("GP_LINK_OU\n"));
229 break;
230 case GP_LINK_DOMAIN:
231 DEBUGADD(lvl,("GP_LINK_DOMAIN\n"));
232 break;
233 case GP_LINK_SITE:
234 DEBUGADD(lvl,("GP_LINK_SITE\n"));
235 break;
236 case GP_LINK_MACHINE:
237 DEBUGADD(lvl,("GP_LINK_MACHINE\n"));
238 break;
239 default:
240 break;
243 if (gpo->machine_extensions) {
245 struct GP_EXT gp_ext;
246 ADS_STATUS status;
248 DEBUGADD(lvl,("machine_extensions:\t%s\n", gpo->machine_extensions));
250 status = ads_parse_gp_ext(mem_ctx, gpo->machine_extensions, &gp_ext);
251 if (!ADS_ERR_OK(status)) {
252 return;
254 dump_gp_ext(&gp_ext, lvl);
257 if (gpo->user_extensions) {
259 struct GP_EXT gp_ext;
260 ADS_STATUS status;
262 DEBUGADD(lvl,("user_extensions:\t%s\n", gpo->user_extensions));
264 status = ads_parse_gp_ext(mem_ctx, gpo->user_extensions, &gp_ext);
265 if (!ADS_ERR_OK(status)) {
266 return;
268 dump_gp_ext(&gp_ext, lvl);
272 void dump_gplink(ADS_STRUCT *ads, TALLOC_CTX *mem_ctx, struct GP_LINK *gp_link)
274 ADS_STATUS status;
275 int i;
276 int lvl = 10;
278 if (gp_link == NULL) {
279 return;
282 DEBUG(lvl,("---------------------\n\n"));
284 DEBUGADD(lvl,("gplink: %s\n", gp_link->gp_link));
285 DEBUGADD(lvl,("gpopts: %d ", gp_link->gp_opts));
286 switch (gp_link->gp_opts) {
287 case GPOPTIONS_INHERIT:
288 DEBUGADD(lvl,("GPOPTIONS_INHERIT\n"));
289 break;
290 case GPOPTIONS_BLOCK_INHERITANCE:
291 DEBUGADD(lvl,("GPOPTIONS_BLOCK_INHERITANCE\n"));
292 break;
293 default:
294 break;
297 DEBUGADD(lvl,("num links: %d\n", gp_link->num_links));
299 for (i = 0; i < gp_link->num_links; i++) {
301 DEBUGADD(lvl,("---------------------\n\n"));
303 DEBUGADD(lvl,("link: #%d\n", i + 1));
304 DEBUGADD(lvl,("name: %s\n", gp_link->link_names[i]));
306 DEBUGADD(lvl,("opt: %d ", gp_link->link_opts[i]));
307 if (gp_link->link_opts[i] & GPO_LINK_OPT_ENFORCED) {
308 DEBUGADD(lvl,("GPO_LINK_OPT_ENFORCED "));
310 if (gp_link->link_opts[i] & GPO_LINK_OPT_DISABLED) {
311 DEBUGADD(lvl,("GPO_LINK_OPT_DISABLED"));
313 DEBUGADD(lvl,("\n"));
315 if (ads != NULL && mem_ctx != NULL) {
317 struct GROUP_POLICY_OBJECT gpo;
319 status = ads_get_gpo(ads, mem_ctx, gp_link->link_names[i], NULL, NULL, &gpo);
320 if (!ADS_ERR_OK(status)) {
321 DEBUG(lvl,("get gpo for %s failed: %s\n", gp_link->link_names[i], ads_errstr(status)));
322 return;
324 dump_gpo(mem_ctx, &gpo, lvl);
329 ADS_STATUS process_extension_with_snapin(ADS_STRUCT *ads,
330 TALLOC_CTX *mem_ctx,
331 const char *extension_guid,
332 const char *snapin_guid)
334 int i;
336 for (i=0; gpo_cse_snapin_extensions[i].guid_string; i++) {
338 if (strcmp(gpo_cse_snapin_extensions[i].guid_string, snapin_guid) == 0) {
340 return gpo_cse_snapin_extensions[i].snapin_fn(ads, mem_ctx,
341 extension_guid, snapin_guid);
345 DEBUG(10,("process_extension_with_snapin: no snapin handler for extension %s (%s) found\n",
346 extension_guid, snapin_guid));
348 return ADS_ERROR(LDAP_SUCCESS);
351 ADS_STATUS gpo_process_a_gpo(ADS_STRUCT *ads,
352 TALLOC_CTX *mem_ctx,
353 struct GROUP_POLICY_OBJECT *gpo,
354 const char *extension_guid,
355 uint32 flags)
357 ADS_STATUS status;
358 struct GP_EXT gp_ext;
359 int i;
361 if (flags & GPO_LIST_FLAG_MACHINE) {
363 if (gpo->machine_extensions) {
365 status = ads_parse_gp_ext(mem_ctx, gpo->machine_extensions, &gp_ext);
367 if (!ADS_ERR_OK(status)) {
368 return status;
371 } else {
372 /* nothing to apply */
373 return ADS_ERROR(LDAP_SUCCESS);
376 } else {
378 if (gpo->user_extensions) {
380 status = ads_parse_gp_ext(mem_ctx, gpo->user_extensions, &gp_ext);
382 if (!ADS_ERR_OK(status)) {
383 return status;
385 } else {
386 /* nothing to apply */
387 return ADS_ERROR(LDAP_SUCCESS);
391 for (i=0; i<gp_ext.num_exts; i++) {
393 if (extension_guid && !strequal(extension_guid, gp_ext.extensions_guid[i])) {
394 continue;
397 status = process_extension_with_snapin(ads, mem_ctx, gp_ext.extensions_guid[i],
398 gp_ext.snapins_guid[i]);
399 if (!ADS_ERR_OK(status)) {
400 return status;
404 return ADS_ERROR(LDAP_SUCCESS);
407 ADS_STATUS gpo_process_gpo_list(ADS_STRUCT *ads,
408 TALLOC_CTX *mem_ctx,
409 struct GROUP_POLICY_OBJECT **gpo_list,
410 const char *extensions_guid,
411 uint32 flags)
413 ADS_STATUS status;
414 struct GROUP_POLICY_OBJECT *gpo = *gpo_list;
416 for (gpo = *gpo_list; gpo; gpo = gpo->next) {
418 status = gpo_process_a_gpo(ads, mem_ctx, gpo,
419 extensions_guid, flags);
421 if (!ADS_ERR_OK(status)) {
422 return status;
427 return ADS_ERROR(LDAP_SUCCESS);
430 ADS_STATUS gpo_snapin_handler_none(ADS_STRUCT *ads,
431 TALLOC_CTX *mem_ctx,
432 const char *extension_guid,
433 const char *snapin_guid)
435 DEBUG(10,("gpo_snapin_handler_none\n"));
437 return ADS_ERROR(LDAP_SUCCESS);
440 ADS_STATUS gpo_snapin_handler_security_settings(ADS_STRUCT *ads,
441 TALLOC_CTX *mem_ctx,
442 const char *extension_guid,
443 const char *snapin_guid)
445 DEBUG(10,("gpo_snapin_handler_security_settings\n"));
447 return ADS_ERROR(LDAP_SUCCESS);
450 ADS_STATUS gpo_lockout_policy(ADS_STRUCT *ads,
451 TALLOC_CTX *mem_ctx,
452 const char *hostname,
453 SAM_UNK_INFO_12 *lockout_policy)
455 return ADS_ERROR_NT(NT_STATUS_NOT_IMPLEMENTED);
458 ADS_STATUS gpo_password_policy(ADS_STRUCT *ads,
459 TALLOC_CTX *mem_ctx,
460 const char *hostname,
461 SAM_UNK_INFO_1 *password_policy)
463 ADS_STATUS status;
464 struct GROUP_POLICY_OBJECT *gpo_list;
465 const char *attrs[] = {"distinguishedName", "userAccountControl", NULL};
466 char *filter, *dn;
467 LDAPMessage *res = NULL;
468 uint32 uac;
470 filter = talloc_asprintf(mem_ctx, "(&(objectclass=user)(sAMAccountName=%s))", hostname);
471 if (filter == NULL) {
472 return ADS_ERROR(LDAP_NO_MEMORY);
475 status = ads_do_search_all(ads, ads->config.bind_path,
476 LDAP_SCOPE_SUBTREE,
477 filter, attrs, &res);
479 if (!ADS_ERR_OK(status)) {
480 return status;
483 if (ads_count_replies(ads, res) != 1) {
484 ads_msgfree(ads, res);
485 return ADS_ERROR(LDAP_NO_SUCH_OBJECT);
488 dn = ads_get_dn(ads, res);
489 if (dn == NULL) {
490 ads_msgfree(ads, res);
491 return ADS_ERROR(LDAP_NO_MEMORY);
494 if (!ads_pull_uint32(ads, res, "userAccountControl", &uac)) {
495 ads_msgfree(ads, res);
496 ads_memfree(ads, dn);
497 return ADS_ERROR(LDAP_NO_MEMORY);
500 ads_msgfree(ads, res);
502 if (!(uac & UF_WORKSTATION_TRUST_ACCOUNT)) {
503 ads_memfree(ads, dn);
504 return ADS_ERROR(LDAP_NO_SUCH_OBJECT);
507 status = ads_get_gpo_list(ads, mem_ctx, dn, GPO_LIST_FLAG_MACHINE, &gpo_list);
508 if (!ADS_ERR_OK(status)) {
509 ads_memfree(ads, dn);
510 return status;
513 ads_memfree(ads, dn);
515 status = gpo_process_gpo_list(ads, mem_ctx, &gpo_list,
516 cse_gpo_name_to_guid_string("Security"),
517 GPO_LIST_FLAG_MACHINE);
518 if (!ADS_ERR_OK(status)) {
519 return status;
522 return ADS_ERROR(LDAP_SUCCESS);
525 /****************************************************************
526 check wether the version number in a GROUP_POLICY_OBJECT match those of the
527 locally stored version. If not, fetch the required policy via CIFS
528 ****************************************************************/
530 NTSTATUS check_refresh_gpo(ADS_STRUCT *ads,
531 TALLOC_CTX *mem_ctx,
532 struct GROUP_POLICY_OBJECT *gpo,
533 struct cli_state **cli_out)
535 NTSTATUS result;
536 char *server, *share, *nt_path, *unix_path;
537 uint32 sysvol_gpt_version = 0;
538 char *display_name;
539 struct cli_state *cli = NULL;
541 result = ads_gpo_explode_filesyspath(ads, mem_ctx, gpo->file_sys_path,
542 &server, &share, &nt_path, &unix_path);
544 if (!NT_STATUS_IS_OK(result)) {
545 goto out;
548 result = ads_gpo_get_sysvol_gpt_version(ads, mem_ctx,
549 unix_path,
550 &sysvol_gpt_version,
551 &display_name);
552 if (!NT_STATUS_IS_OK(result) &&
553 !NT_STATUS_EQUAL(result, NT_STATUS_NO_SUCH_FILE)) {
554 DEBUG(10,("check_refresh_gpo: failed to get local gpt version: %s\n",
555 nt_errstr(result)));
556 goto out;
559 while (gpo->version > sysvol_gpt_version) {
561 DEBUG(1,("check_refresh_gpo: need to refresh GPO\n"));
563 if (*cli_out == NULL) {
565 result = cli_full_connection(&cli, global_myname(),
566 server, /* ads->config.ldap_server_name, */
567 NULL, 0,
568 share, "A:",
569 ads->auth.user_name, NULL, ads->auth.password,
570 CLI_FULL_CONNECTION_USE_KERBEROS,
571 Undefined, NULL);
572 if (!NT_STATUS_IS_OK(result)) {
573 DEBUG(10,("check_refresh_gpo: failed to connect: %s\n", nt_errstr(result)));
574 goto out;
577 *cli_out = cli;
580 result = ads_fetch_gpo_files(ads, mem_ctx, *cli_out, gpo);
581 if (!NT_STATUS_IS_OK(result)) {
582 goto out;
585 result = ads_gpo_get_sysvol_gpt_version(ads, mem_ctx,
586 unix_path,
587 &sysvol_gpt_version,
588 &display_name);
589 if (!NT_STATUS_IS_OK(result)) {
590 DEBUG(10,("check_refresh_gpo: failed to get local gpt version: %s\n",
591 nt_errstr(result)));
592 goto out;
595 if (gpo->version == sysvol_gpt_version) {
596 break;
600 DEBUG(10,("Name:\t\t\t%s\n", gpo->display_name));
601 DEBUGADD(10,("sysvol GPT version:\t%d (user: %d, machine: %d)\n",
602 sysvol_gpt_version,
603 GPO_VERSION_USER(sysvol_gpt_version),
604 GPO_VERSION_MACHINE(sysvol_gpt_version)));
605 DEBUGADD(10,("LDAP GPO version:\t%d (user: %d, machine: %d)\n",
606 gpo->version,
607 GPO_VERSION_USER(gpo->version),
608 GPO_VERSION_MACHINE(gpo->version)));
610 result = NT_STATUS_OK;
612 out:
613 return result;
617 /****************************************************************
618 check wether the version numbers in the gpo_list match the locally stored, if
619 not, go and get each required GPO via CIFS
620 ****************************************************************/
622 NTSTATUS check_refresh_gpo_list(ADS_STRUCT *ads,
623 TALLOC_CTX *mem_ctx,
624 struct GROUP_POLICY_OBJECT *gpo_list)
626 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
627 struct cli_state *cli = NULL;
628 struct GROUP_POLICY_OBJECT *gpo;
630 for (gpo = gpo_list; gpo; gpo = gpo->next) {
632 result = check_refresh_gpo(ads, mem_ctx, gpo, &cli);
633 if (!NT_STATUS_IS_OK(result)) {
634 goto out;
638 result = NT_STATUS_OK;
640 out:
641 if (cli) {
642 cli_shutdown(cli);
645 return result;
648 #endif /* HAVE_LDAP */