libgpo: remove gpext_process_gpo_list_with_extension in favor of gpext_process_extension.
[metze/samba/wip.git] / libgpo / gpo_util.c
1 /*
2  *  Unix SMB/CIFS implementation.
3  *  Group Policy Object Support
4  *  Copyright (C) Guenther Deschner 2005-2008
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 3 of the License, or
9  *  (at your option) any later version.
10  *
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.
15  *
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/>.
18  */
19
20 #include "includes.h"
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 #include "registry.h"
27 #include "libgpo/gpo_proto.h"
28
29 #if 0
30 #define DEFAULT_DOMAIN_POLICY "Default Domain Policy"
31 #define DEFAULT_DOMAIN_CONTROLLERS_POLICY "Default Domain Controllers Policy"
32 #endif
33
34 /* should we store a parsed guid ? */
35 struct gp_table {
36         const char *name;
37         const char *guid_string;
38 };
39
40 #if 0 /* unused */
41 static struct gp_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 }
47 };
48 #endif
49
50 /* the following is seen in gPCMachineExtensionNames / gPCUserExtensionNames */
51
52 static struct gp_table gpo_cse_extensions[] = {
53         /* used to be "Administrative Templates Extension" */
54         /* "Registry Settings"
55         (http://support.microsoft.com/kb/216357/EN-US/) */
56         { "Registry Settings",
57                 GP_EXT_GUID_REGISTRY },
58         { "Microsoft Disc Quota",
59                 "3610EDA5-77EF-11D2-8DC5-00C04FA31A66" },
60         { "EFS recovery",
61                 "B1BE8D72-6EAC-11D2-A4EA-00C04F79F83A" },
62         { "Folder Redirection",
63                 "25537BA6-77A8-11D2-9B6C-0000F8080861" },
64         { "IP Security",
65                 "E437BC1C-AA7D-11D2-A382-00C04F991E27" },
66         { "Internet Explorer Branding",
67                 "A2E30F80-D7DE-11d2-BBDE-00C04F86AE3B" },
68         { "QoS Packet Scheduler",
69                 "426031c0-0b47-4852-b0ca-ac3d37bfcb39" },
70         { "Scripts",
71                 GP_EXT_GUID_SCRIPTS },
72         { "Security",
73                 GP_EXT_GUID_SECURITY },
74         { "Software Installation",
75                 "C6DC5466-785A-11D2-84D0-00C04FB169F7" },
76         { "Wireless Group Policy",
77                 "0ACDD40C-75AC-BAA0-BF6DE7E7FE63" },
78         { "Application Management",
79                 "C6DC5466-785A-11D2-84D0-00C04FB169F7" },
80         { "unknown",
81                 "3060E8D0-7020-11D2-842D-00C04FA372D4" },
82         { NULL, NULL }
83 };
84
85 /* guess work */
86 static struct gp_table gpo_cse_snapin_extensions[] = {
87         { "Administrative Templates",
88                 "0F6B957D-509E-11D1-A7CC-0000F87571E3" },
89         { "Certificates",
90                 "53D6AB1D-2488-11D1-A28C-00C04FB94F17" },
91         { "EFS recovery policy processing",
92                 "B1BE8D72-6EAC-11D2-A4EA-00C04F79F83A" },
93         { "Folder Redirection policy processing",
94                 "25537BA6-77A8-11D2-9B6C-0000F8080861" },
95         { "Folder Redirection",
96                 "88E729D6-BDC1-11D1-BD2A-00C04FB9603F" },
97         { "Registry policy processing",
98                 "35378EAC-683F-11D2-A89A-00C04FBBCFA2" },
99         { "Remote Installation Services",
100                 "3060E8CE-7020-11D2-842D-00C04FA372D4" },
101         { "Security Settings",
102                 "803E14A0-B4FB-11D0-A0D0-00A0C90F574B" },
103         { "Security policy processing",
104                 "827D319E-6EAC-11D2-A4EA-00C04F79F83A" },
105         { "unknown",
106                 "3060E8D0-7020-11D2-842D-00C04FA372D4" },
107         { "unknown2",
108                 "53D6AB1B-2488-11D1-A28C-00C04FB94F17" },
109         { NULL, NULL }
110 };
111
112 /****************************************************************
113 ****************************************************************/
114
115 static const char *name_to_guid_string(const char *name,
116                                        struct gp_table *table)
117 {
118         int i;
119
120         for (i = 0; table[i].name; i++) {
121                 if (strequal(name, table[i].name)) {
122                         return table[i].guid_string;
123                 }
124         }
125
126         return NULL;
127 }
128
129 /****************************************************************
130 ****************************************************************/
131
132 static const char *guid_string_to_name(const char *guid_string,
133                                        struct gp_table *table)
134 {
135         int i;
136
137         for (i = 0; table[i].guid_string; i++) {
138                 if (strequal(guid_string, table[i].guid_string)) {
139                         return table[i].name;
140                 }
141         }
142
143         return NULL;
144 }
145
146 /****************************************************************
147 ****************************************************************/
148
149 static const char *snapin_guid_string_to_name(const char *guid_string,
150                                               struct gp_table *table)
151 {
152         int i;
153         for (i = 0; table[i].guid_string; i++) {
154                 if (strequal(guid_string, table[i].guid_string)) {
155                         return table[i].name;
156                 }
157         }
158         return NULL;
159 }
160
161 #if 0 /* unused */
162 static const char *default_gpo_name_to_guid_string(const char *name)
163 {
164         return name_to_guid_string(name, gpo_default_policy);
165 }
166
167 static const char *default_gpo_guid_string_to_name(const char *guid)
168 {
169         return guid_string_to_name(guid, gpo_default_policy);
170 }
171 #endif
172
173 /****************************************************************
174 ****************************************************************/
175
176 const char *cse_gpo_guid_string_to_name(const char *guid)
177 {
178         return guid_string_to_name(guid, gpo_cse_extensions);
179 }
180
181 /****************************************************************
182 ****************************************************************/
183
184 const char *cse_gpo_name_to_guid_string(const char *name)
185 {
186         return name_to_guid_string(name, gpo_cse_extensions);
187 }
188
189 /****************************************************************
190 ****************************************************************/
191
192 const char *cse_snapin_gpo_guid_string_to_name(const char *guid)
193 {
194         return snapin_guid_string_to_name(guid, gpo_cse_snapin_extensions);
195 }
196
197 /****************************************************************
198 ****************************************************************/
199
200 void dump_gp_ext(struct GP_EXT *gp_ext, int debuglevel)
201 {
202         int lvl = debuglevel;
203         int i;
204
205         if (gp_ext == NULL) {
206                 return;
207         }
208
209         DEBUG(lvl,("\t---------------------\n\n"));
210         DEBUGADD(lvl,("\tname:\t\t\t%s\n", gp_ext->gp_extension));
211
212         for (i=0; i< gp_ext->num_exts; i++) {
213
214                 DEBUGADD(lvl,("\textension:\t\t\t%s\n",
215                         gp_ext->extensions_guid[i]));
216                 DEBUGADD(lvl,("\textension (name):\t\t\t%s\n",
217                         gp_ext->extensions[i]));
218
219                 DEBUGADD(lvl,("\tsnapin:\t\t\t%s\n",
220                         gp_ext->snapins_guid[i]));
221                 DEBUGADD(lvl,("\tsnapin (name):\t\t\t%s\n",
222                         gp_ext->snapins[i]));
223         }
224 }
225
226 #ifdef HAVE_LDAP
227
228 /****************************************************************
229 ****************************************************************/
230
231 void dump_gpo(const struct GROUP_POLICY_OBJECT *gpo,
232               int debuglevel)
233 {
234         int lvl = debuglevel;
235         TALLOC_CTX *frame = talloc_stackframe();
236
237         if (gpo == NULL) {
238                 goto out;
239         }
240
241         DEBUG(lvl,("---------------------\n\n"));
242
243         DEBUGADD(lvl,("name:\t\t\t%s\n", gpo->name));
244         DEBUGADD(lvl,("displayname:\t\t%s\n", gpo->display_name));
245         DEBUGADD(lvl,("version:\t\t%d (0x%08x)\n", gpo->version, gpo->version));
246         DEBUGADD(lvl,("version_user:\t\t%d (0x%04x)\n",
247                 GPO_VERSION_USER(gpo->version),
248                 GPO_VERSION_USER(gpo->version)));
249         DEBUGADD(lvl,("version_machine:\t%d (0x%04x)\n",
250                 GPO_VERSION_MACHINE(gpo->version),
251                  GPO_VERSION_MACHINE(gpo->version)));
252         DEBUGADD(lvl,("filesyspath:\t\t%s\n", gpo->file_sys_path));
253         DEBUGADD(lvl,("dspath:\t\t%s\n", gpo->ds_path));
254
255         DEBUGADD(lvl,("options:\t\t%d ", gpo->options));
256         switch (gpo->options) {
257                 case GPFLAGS_ALL_ENABLED:
258                         DEBUGADD(lvl,("GPFLAGS_ALL_ENABLED\n"));
259                         break;
260                 case GPFLAGS_USER_SETTINGS_DISABLED:
261                         DEBUGADD(lvl,("GPFLAGS_USER_SETTINGS_DISABLED\n"));
262                         break;
263                 case GPFLAGS_MACHINE_SETTINGS_DISABLED:
264                         DEBUGADD(lvl,("GPFLAGS_MACHINE_SETTINGS_DISABLED\n"));
265                         break;
266                 case GPFLAGS_ALL_DISABLED:
267                         DEBUGADD(lvl,("GPFLAGS_ALL_DISABLED\n"));
268                         break;
269                 default:
270                         DEBUGADD(lvl,("unknown option: %d\n", gpo->options));
271                         break;
272         }
273
274         DEBUGADD(lvl,("link:\t\t\t%s\n", gpo->link));
275         DEBUGADD(lvl,("link_type:\t\t%d ", gpo->link_type));
276         switch (gpo->link_type) {
277                 case GP_LINK_UNKOWN:
278                         DEBUGADD(lvl,("GP_LINK_UNKOWN\n"));
279                         break;
280                 case GP_LINK_OU:
281                         DEBUGADD(lvl,("GP_LINK_OU\n"));
282                         break;
283                 case GP_LINK_DOMAIN:
284                         DEBUGADD(lvl,("GP_LINK_DOMAIN\n"));
285                         break;
286                 case GP_LINK_SITE:
287                         DEBUGADD(lvl,("GP_LINK_SITE\n"));
288                         break;
289                 case GP_LINK_MACHINE:
290                         DEBUGADD(lvl,("GP_LINK_MACHINE\n"));
291                         break;
292                 default:
293                         break;
294         }
295
296         DEBUGADD(lvl,("machine_extensions:\t%s\n", gpo->machine_extensions));
297
298         if (gpo->machine_extensions) {
299
300                 struct GP_EXT *gp_ext = NULL;
301
302                 if (!ads_parse_gp_ext(frame, gpo->machine_extensions,
303                                       &gp_ext)) {
304                         goto out;
305                 }
306                 dump_gp_ext(gp_ext, lvl);
307         }
308
309         DEBUGADD(lvl,("user_extensions:\t%s\n", gpo->user_extensions));
310
311         if (gpo->user_extensions) {
312
313                 struct GP_EXT *gp_ext = NULL;
314
315                 if (!ads_parse_gp_ext(frame, gpo->user_extensions,
316                                       &gp_ext)) {
317                         goto out;
318                 }
319                 dump_gp_ext(gp_ext, lvl);
320         }
321         if (gpo->security_descriptor) {
322                 DEBUGADD(lvl,("security descriptor:\n"));
323
324                 NDR_PRINT_DEBUG(security_descriptor, gpo->security_descriptor);
325         }
326  out:
327         talloc_free(frame);
328 }
329
330 /****************************************************************
331 ****************************************************************/
332
333 void dump_gpo_list(const struct GROUP_POLICY_OBJECT *gpo_list,
334                    int debuglevel)
335 {
336         const struct GROUP_POLICY_OBJECT *gpo = NULL;
337
338         for (gpo = gpo_list; gpo; gpo = gpo->next) {
339                 dump_gpo(gpo, debuglevel);
340         }
341 }
342
343 /****************************************************************
344 ****************************************************************/
345
346 void dump_gplink(const struct GP_LINK *gp_link)
347 {
348         int i;
349         int lvl = 10;
350
351         if (gp_link == NULL) {
352                 return;
353         }
354
355         DEBUG(lvl,("---------------------\n\n"));
356
357         DEBUGADD(lvl,("gplink: %s\n", gp_link->gp_link));
358         DEBUGADD(lvl,("gpopts: %d ", gp_link->gp_opts));
359         switch (gp_link->gp_opts) {
360                 case GPOPTIONS_INHERIT:
361                         DEBUGADD(lvl,("GPOPTIONS_INHERIT\n"));
362                         break;
363                 case GPOPTIONS_BLOCK_INHERITANCE:
364                         DEBUGADD(lvl,("GPOPTIONS_BLOCK_INHERITANCE\n"));
365                         break;
366                 default:
367                         break;
368         }
369
370         DEBUGADD(lvl,("num links: %d\n", gp_link->num_links));
371
372         for (i = 0; i < gp_link->num_links; i++) {
373
374                 DEBUGADD(lvl,("---------------------\n\n"));
375
376                 DEBUGADD(lvl,("link: #%d\n", i + 1));
377                 DEBUGADD(lvl,("name: %s\n", gp_link->link_names[i]));
378
379                 DEBUGADD(lvl,("opt: %d ", gp_link->link_opts[i]));
380                 if (gp_link->link_opts[i] & GPO_LINK_OPT_ENFORCED) {
381                         DEBUGADD(lvl,("GPO_LINK_OPT_ENFORCED "));
382                 }
383                 if (gp_link->link_opts[i] & GPO_LINK_OPT_DISABLED) {
384                         DEBUGADD(lvl,("GPO_LINK_OPT_DISABLED"));
385                 }
386                 DEBUGADD(lvl,("\n"));
387         }
388 }
389
390 #endif /* HAVE_LDAP */
391
392 /****************************************************************
393 ****************************************************************/
394
395 bool gpo_get_gp_ext_from_gpo(TALLOC_CTX *mem_ctx,
396                              uint32_t flags,
397                              const struct GROUP_POLICY_OBJECT *gpo,
398                              struct GP_EXT **gp_ext)
399 {
400         ZERO_STRUCTP(*gp_ext);
401
402         if (flags & GPO_INFO_FLAG_MACHINE) {
403
404                 if (gpo->machine_extensions) {
405
406                         if (!ads_parse_gp_ext(mem_ctx, gpo->machine_extensions,
407                                               gp_ext)) {
408                                 return false;
409                         }
410                 }
411         } else {
412
413                 if (gpo->user_extensions) {
414
415                         if (!ads_parse_gp_ext(mem_ctx, gpo->user_extensions,
416                                               gp_ext)) {
417                                 return false;
418                         }
419                 }
420         }
421
422         return true;
423 }
424
425 /****************************************************************
426 ****************************************************************/
427
428 static NTSTATUS gpo_process_a_gpo(TALLOC_CTX *mem_ctx,
429                                   const struct security_token *token,
430                                   struct registry_key *root_key,
431                                   struct GROUP_POLICY_OBJECT *gpo,
432                                   const char *extension_guid_filter,
433                                   uint32_t flags)
434 {
435         struct GP_EXT *gp_ext = NULL;
436         int i;
437
438         DEBUG(10,("gpo_process_a_gpo: processing gpo %s (%s)\n",
439                 gpo->name, gpo->display_name));
440         if (extension_guid_filter) {
441                 DEBUGADD(10,("gpo_process_a_gpo: using filter %s (%s)\n",
442                         extension_guid_filter,
443                         cse_gpo_guid_string_to_name(extension_guid_filter)));
444         }
445
446         if (!gpo_get_gp_ext_from_gpo(mem_ctx, flags, gpo, &gp_ext)) {
447                 return NT_STATUS_INVALID_PARAMETER;
448         }
449
450         if (!gp_ext || !gp_ext->num_exts) {
451                 if (flags & GPO_INFO_FLAG_VERBOSE) {
452                         DEBUG(0,("gpo_process_a_gpo: "
453                                 "no policies in %s (%s) for this extension\n",
454                                 gpo->name, gpo->display_name));
455                 }
456                 return NT_STATUS_OK;
457         }
458
459         for (i=0; i<gp_ext->num_exts; i++) {
460
461                 NTSTATUS ntstatus;
462
463                 if (extension_guid_filter &&
464                     !strequal(extension_guid_filter,
465                               gp_ext->extensions_guid[i])) {
466                         continue;
467                 }
468
469                 ntstatus = gpext_process_extension(mem_ctx,
470                                                    flags, token, root_key,
471                                                    NULL, gpo,
472                                                    gp_ext->extensions_guid[i],
473                                                    gp_ext->snapins_guid[i]);
474                 if (!NT_STATUS_IS_OK(ntstatus)) {
475                         return ntstatus;
476                 }
477         }
478
479         return NT_STATUS_OK;
480 }
481
482 /****************************************************************
483 ****************************************************************/
484
485 static NTSTATUS gpo_process_gpo_list_by_ext(TALLOC_CTX *mem_ctx,
486                                             const struct security_token *token,
487                                             struct registry_key *root_key,
488                                             struct GROUP_POLICY_OBJECT *gpo_list,
489                                             const char *extensions_guid,
490                                             uint32_t flags)
491 {
492         NTSTATUS status;
493         struct GROUP_POLICY_OBJECT *gpo;
494
495         for (gpo = gpo_list; gpo; gpo = gpo->next) {
496
497                 if (gpo->link_type == GP_LINK_LOCAL) {
498                         continue;
499                 }
500
501
502                 /* FIXME: we need to pass down the *list* down to the
503                  * extension, otherwise we cannot store the e.g. the *list* of
504                  * logon-scripts correctly (for more then one GPO) */
505
506                 status = gpo_process_a_gpo(mem_ctx, token, root_key,
507                                            gpo, extensions_guid, flags);
508
509                 if (!NT_STATUS_IS_OK(status)) {
510                         DEBUG(0,("failed to process gpo by ext: %s\n",
511                                 nt_errstr(status)));
512                         return status;
513                 }
514         }
515
516         return NT_STATUS_OK;
517 }
518
519 /****************************************************************
520 ****************************************************************/
521
522 NTSTATUS gpo_process_gpo_list(TALLOC_CTX *mem_ctx,
523                               const struct security_token *token,
524                               struct GROUP_POLICY_OBJECT *gpo_list,
525                               const char *extensions_guid_filter,
526                               uint32_t flags)
527 {
528         NTSTATUS status = NT_STATUS_OK;
529         struct gp_extension *gp_ext_list = NULL;
530         struct gp_extension *gp_ext = NULL;
531         struct registry_key *root_key = NULL;
532         struct gp_registry_context *reg_ctx = NULL;
533         WERROR werr;
534
535         status = gpext_init_gp_extensions(mem_ctx);
536         if (!NT_STATUS_IS_OK(status)) {
537                 return status;
538         }
539
540         gp_ext_list = gpext_get_gp_extension_list();
541         if (!gp_ext_list) {
542                 return NT_STATUS_DLL_INIT_FAILED;
543         }
544
545         /* get the key here */
546         if (flags & GPO_LIST_FLAG_MACHINE) {
547                 werr = gp_init_reg_ctx(mem_ctx, KEY_HKLM, REG_KEY_WRITE,
548                                        get_system_token(),
549                                        &reg_ctx);
550         } else {
551                 werr = gp_init_reg_ctx(mem_ctx, KEY_HKCU, REG_KEY_WRITE,
552                                        token,
553                                        &reg_ctx);
554         }
555         if (!W_ERROR_IS_OK(werr)) {
556                 talloc_free(reg_ctx);
557                 return werror_to_ntstatus(werr);
558         }
559
560         root_key = reg_ctx->curr_key;
561
562         for (gp_ext = gp_ext_list; gp_ext; gp_ext = gp_ext->next) {
563
564                 const char *guid_str = NULL;
565
566                 guid_str = GUID_string(mem_ctx, gp_ext->guid);
567                 if (!guid_str) {
568                         status = NT_STATUS_NO_MEMORY;
569                         goto done;
570                 }
571
572                 if (extensions_guid_filter &&
573                     (!strequal(guid_str, extensions_guid_filter)))  {
574                         continue;
575                 }
576
577                 DEBUG(0,("-------------------------------------------------\n"));
578                 DEBUG(0,("gpo_process_gpo_list: processing ext: %s {%s}\n",
579                         gp_ext->name, guid_str));
580
581
582                 status = gpo_process_gpo_list_by_ext(mem_ctx, token,
583                                                      root_key, gpo_list,
584                                                      guid_str, flags);
585                 if (!NT_STATUS_IS_OK(status)) {
586                         goto done;
587                 }
588         }
589
590  done:
591         talloc_free(reg_ctx);
592         talloc_free(root_key);
593         gpext_free_gp_extensions();
594
595         return status;
596 }
597
598
599 /****************************************************************
600  check wether the version number in a GROUP_POLICY_OBJECT match those of the
601  locally stored version. If not, fetch the required policy via CIFS
602 ****************************************************************/
603
604 NTSTATUS check_refresh_gpo(ADS_STRUCT *ads,
605                            TALLOC_CTX *mem_ctx,
606                            const char *cache_dir,
607                            uint32_t flags,
608                            struct GROUP_POLICY_OBJECT *gpo)
609 {
610         NTSTATUS result;
611         char *server = NULL;
612         char *share = NULL;
613         char *nt_path = NULL;
614         char *unix_path = NULL;
615         uint32_t sysvol_gpt_version = 0;
616         char *display_name = NULL;
617
618         result = gpo_explode_filesyspath(mem_ctx, cache_dir, gpo->file_sys_path,
619                                          &server, &share, &nt_path, &unix_path);
620
621         if (!NT_STATUS_IS_OK(result)) {
622                 goto out;
623         }
624
625         result = gpo_get_sysvol_gpt_version(mem_ctx,
626                                             unix_path,
627                                             &sysvol_gpt_version,
628                                             &display_name);
629         if (!NT_STATUS_IS_OK(result) &&
630             !NT_STATUS_EQUAL(result, NT_STATUS_NO_SUCH_FILE)) {
631                 DEBUG(10,("check_refresh_gpo: "
632                         "failed to get local gpt version: %s\n",
633                         nt_errstr(result)));
634                 goto out;
635         }
636
637         DEBUG(10,("check_refresh_gpo: versions gpo %d sysvol %d\n",
638                 gpo->version, sysvol_gpt_version));
639
640         /* FIXME: handle GPO_INFO_FLAG_FORCED_REFRESH from flags */
641
642         while (gpo->version > sysvol_gpt_version) {
643
644                 DEBUG(1,("check_refresh_gpo: need to refresh GPO\n"));
645
646                 result = gpo_fetch_files(mem_ctx, ads, cache_dir, gpo);
647                 if (!NT_STATUS_IS_OK(result)) {
648                         goto out;
649                 }
650
651                 result = gpo_get_sysvol_gpt_version(mem_ctx,
652                                                     unix_path,
653                                                     &sysvol_gpt_version,
654                                                     &display_name);
655                 if (!NT_STATUS_IS_OK(result)) {
656                         DEBUG(10,("check_refresh_gpo: "
657                                 "failed to get local gpt version: %s\n",
658                                 nt_errstr(result)));
659                         goto out;
660                 }
661
662                 if (gpo->version == sysvol_gpt_version) {
663                         break;
664                 }
665         }
666
667         DEBUG(10,("Name:\t\t\t%s (%s)\n", gpo->display_name, gpo->name));
668         DEBUGADD(10,("sysvol GPT version:\t%d (user: %d, machine: %d)\n",
669                 sysvol_gpt_version,
670                 GPO_VERSION_USER(sysvol_gpt_version),
671                 GPO_VERSION_MACHINE(sysvol_gpt_version)));
672         DEBUGADD(10,("LDAP GPO version:\t%d (user: %d, machine: %d)\n",
673                 gpo->version,
674                 GPO_VERSION_USER(gpo->version),
675                 GPO_VERSION_MACHINE(gpo->version)));
676         DEBUGADD(10,("LDAP GPO link:\t\t%s\n", gpo->link));
677
678         result = NT_STATUS_OK;
679
680  out:
681         return result;
682
683 }
684
685 /****************************************************************
686  check wether the version numbers in the gpo_list match the locally stored, if
687  not, go and get each required GPO via CIFS
688  ****************************************************************/
689
690 NTSTATUS check_refresh_gpo_list(ADS_STRUCT *ads,
691                                 TALLOC_CTX *mem_ctx,
692                                 const char *cache_dir,
693                                 uint32_t flags,
694                                 struct GROUP_POLICY_OBJECT *gpo_list)
695 {
696         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
697         struct GROUP_POLICY_OBJECT *gpo;
698
699         if (!gpo_list) {
700                 return NT_STATUS_INVALID_PARAMETER;
701         }
702
703         for (gpo = gpo_list; gpo; gpo = gpo->next) {
704
705                 result = check_refresh_gpo(ads, mem_ctx, cache_dir, flags, gpo);
706                 if (!NT_STATUS_IS_OK(result)) {
707                         goto out;
708                 }
709         }
710
711         result = NT_STATUS_OK;
712
713  out:
714         /* FIXME close cli connection */
715
716         return result;
717 }
718
719 /****************************************************************
720 ****************************************************************/
721
722 NTSTATUS gpo_get_unix_path(TALLOC_CTX *mem_ctx,
723                            const char *cache_dir,
724                            struct GROUP_POLICY_OBJECT *gpo,
725                            char **unix_path)
726 {
727         char *server, *share, *nt_path;
728         return gpo_explode_filesyspath(mem_ctx, cache_dir, gpo->file_sys_path,
729                                        &server, &share, &nt_path, unix_path);
730 }
731
732 /****************************************************************
733 ****************************************************************/
734
735 char *gpo_flag_str(TALLOC_CTX *ctx, uint32_t flags)
736 {
737         char *str = NULL;
738
739         if (flags == 0) {
740                 return NULL;
741         }
742
743         str = talloc_strdup(ctx, "");
744         if (!str) {
745                 return NULL;
746         }
747
748         if (flags & GPO_INFO_FLAG_SLOWLINK)
749                 str = talloc_strdup_append(str, "GPO_INFO_FLAG_SLOWLINK ");
750         if (flags & GPO_INFO_FLAG_VERBOSE)
751                 str = talloc_strdup_append(str, "GPO_INFO_FLAG_VERBOSE ");
752         if (flags & GPO_INFO_FLAG_SAFEMODE_BOOT)
753                 str = talloc_strdup_append(str, "GPO_INFO_FLAG_SAFEMODE_BOOT ");
754         if (flags & GPO_INFO_FLAG_NOCHANGES)
755                 str = talloc_strdup_append(str, "GPO_INFO_FLAG_NOCHANGES ");
756         if (flags & GPO_INFO_FLAG_MACHINE)
757                 str = talloc_strdup_append(str, "GPO_INFO_FLAG_MACHINE ");
758         if (flags & GPO_INFO_FLAG_LOGRSOP_TRANSITION)
759                 str = talloc_strdup_append(str, "GPO_INFO_FLAG_LOGRSOP_TRANSITION ");
760         if (flags & GPO_INFO_FLAG_LINKTRANSITION)
761                 str = talloc_strdup_append(str, "GPO_INFO_FLAG_LINKTRANSITION ");
762         if (flags & GPO_INFO_FLAG_FORCED_REFRESH)
763                 str = talloc_strdup_append(str, "GPO_INFO_FLAG_FORCED_REFRESH ");
764         if (flags & GPO_INFO_FLAG_BACKGROUND)
765                 str = talloc_strdup_append(str, "GPO_INFO_FLAG_BACKGROUND ");
766
767         return str;
768 }
769
770 /****************************************************************
771 ****************************************************************/
772
773 NTSTATUS gp_find_file(TALLOC_CTX *mem_ctx,
774                       uint32_t flags,
775                       const char *filename,
776                       const char *suffix,
777                       const char **filename_out)
778 {
779         const char *tmp = NULL;
780         struct stat sbuf;
781         const char *path = NULL;
782
783         if (flags & GPO_LIST_FLAG_MACHINE) {
784                 path = "Machine";
785         } else {
786                 path = "User";
787         }
788
789         tmp = talloc_asprintf(mem_ctx, "%s/%s/%s", filename,
790                               path, suffix);
791         NT_STATUS_HAVE_NO_MEMORY(tmp);
792
793         if (stat(tmp, &sbuf) == 0) {
794                 *filename_out = tmp;
795                 return NT_STATUS_OK;
796         }
797
798         path = talloc_strdup_upper(mem_ctx, path);
799         NT_STATUS_HAVE_NO_MEMORY(path);
800
801         tmp = talloc_asprintf(mem_ctx, "%s/%s/%s", filename,
802                               path, suffix);
803         NT_STATUS_HAVE_NO_MEMORY(tmp);
804
805         if (stat(tmp, &sbuf) == 0) {
806                 *filename_out = tmp;
807                 return NT_STATUS_OK;
808         }
809
810         return NT_STATUS_NO_SUCH_FILE;
811 }
812
813 /****************************************************************
814 ****************************************************************/
815
816 ADS_STATUS gp_get_machine_token(ADS_STRUCT *ads,
817                                 TALLOC_CTX *mem_ctx,
818                                 const char *dn,
819                                 struct security_token **token)
820 {
821 #ifdef HAVE_ADS
822         struct security_token *ad_token = NULL;
823         ADS_STATUS status;
824         NTSTATUS ntstatus;
825
826         status = ads_get_sid_token(ads, mem_ctx, dn, &ad_token);
827         if (!ADS_ERR_OK(status)) {
828                 return status;
829         }
830         ntstatus = merge_nt_token(mem_ctx, ad_token, get_system_token(),
831                                   token);
832         if (!NT_STATUS_IS_OK(ntstatus)) {
833                 return ADS_ERROR_NT(ntstatus);
834         }
835         return ADS_SUCCESS;
836 #else
837         return ADS_ERROR_NT(NT_STATUS_NOT_SUPPORTED);
838 #endif
839 }
840
841 /****************************************************************
842 ****************************************************************/
843
844 NTSTATUS gpo_copy(TALLOC_CTX *mem_ctx,
845                   const struct GROUP_POLICY_OBJECT *gpo_src,
846                   struct GROUP_POLICY_OBJECT **gpo_dst)
847 {
848         struct GROUP_POLICY_OBJECT *gpo;
849
850         gpo = talloc_zero(mem_ctx, struct GROUP_POLICY_OBJECT);
851         NT_STATUS_HAVE_NO_MEMORY(gpo);
852
853         gpo->options            = gpo_src->options;
854         gpo->version            = gpo_src->version;
855
856         gpo->ds_path            = talloc_strdup(gpo, gpo_src->ds_path);
857         NT_STATUS_HAVE_NO_MEMORY_AND_FREE(gpo->ds_path, gpo);
858
859         gpo->file_sys_path      = talloc_strdup(gpo, gpo_src->file_sys_path);
860         NT_STATUS_HAVE_NO_MEMORY_AND_FREE(gpo->file_sys_path, gpo);
861
862         gpo->display_name       = talloc_strdup(gpo, gpo_src->display_name);
863         NT_STATUS_HAVE_NO_MEMORY_AND_FREE(gpo->display_name, gpo);
864
865         gpo->name               = talloc_strdup(gpo, gpo_src->name);
866         NT_STATUS_HAVE_NO_MEMORY_AND_FREE(gpo->name, gpo);
867
868         gpo->link               = talloc_strdup(gpo, gpo_src->link);
869         NT_STATUS_HAVE_NO_MEMORY_AND_FREE(gpo->link, gpo);
870
871         gpo->link_type          = gpo_src->link_type;
872
873         if (gpo_src->user_extensions) {
874                 gpo->user_extensions = talloc_strdup(gpo, gpo_src->user_extensions);
875                 NT_STATUS_HAVE_NO_MEMORY_AND_FREE(gpo->user_extensions, gpo);
876         }
877
878         if (gpo_src->machine_extensions) {
879                 gpo->machine_extensions = talloc_strdup(gpo, gpo_src->machine_extensions);
880                 NT_STATUS_HAVE_NO_MEMORY_AND_FREE(gpo->machine_extensions, gpo);
881         }
882
883         gpo->security_descriptor = dup_sec_desc(gpo, gpo_src->security_descriptor);
884         NT_STATUS_HAVE_NO_MEMORY_AND_FREE(gpo->security_descriptor, gpo);
885
886         gpo->next = gpo->prev = NULL;
887
888         *gpo_dst = gpo;
889
890         return NT_STATUS_OK;
891 }