412ab7a969ffa0136de37d0fc781b25309d27b2b
[kai/samba-autobuild/.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                 if (!NT_STATUS_IS_OK(ntstatus)) {
474                         return ntstatus;
475                 }
476         }
477
478         return NT_STATUS_OK;
479 }
480
481 /****************************************************************
482 ****************************************************************/
483
484 static NTSTATUS gpo_process_gpo_list_by_ext(TALLOC_CTX *mem_ctx,
485                                             const struct security_token *token,
486                                             struct registry_key *root_key,
487                                             struct GROUP_POLICY_OBJECT *gpo_list,
488                                             const char *extensions_guid,
489                                             uint32_t flags)
490 {
491         NTSTATUS status;
492         struct GROUP_POLICY_OBJECT *gpo;
493
494         for (gpo = gpo_list; gpo; gpo = gpo->next) {
495
496                 if (gpo->link_type == GP_LINK_LOCAL) {
497                         continue;
498                 }
499
500
501                 /* FIXME: we need to pass down the *list* down to the
502                  * extension, otherwise we cannot store the e.g. the *list* of
503                  * logon-scripts correctly (for more then one GPO) */
504
505                 status = gpo_process_a_gpo(mem_ctx, token, root_key,
506                                            gpo, extensions_guid, flags);
507
508                 if (!NT_STATUS_IS_OK(status)) {
509                         DEBUG(0,("failed to process gpo by ext: %s\n",
510                                 nt_errstr(status)));
511                         return status;
512                 }
513         }
514
515         return NT_STATUS_OK;
516 }
517
518 /****************************************************************
519 ****************************************************************/
520
521 NTSTATUS gpo_process_gpo_list(TALLOC_CTX *mem_ctx,
522                               const struct security_token *token,
523                               struct GROUP_POLICY_OBJECT *gpo_list,
524                               const char *extensions_guid_filter,
525                               uint32_t flags)
526 {
527         NTSTATUS status = NT_STATUS_OK;
528         struct registry_key *root_key = NULL;
529         struct gp_registry_context *reg_ctx = NULL;
530         WERROR werr;
531
532         /* get the key here */
533         if (flags & GPO_LIST_FLAG_MACHINE) {
534                 werr = gp_init_reg_ctx(mem_ctx, KEY_HKLM, REG_KEY_WRITE,
535                                        get_system_token(),
536                                        &reg_ctx);
537         } else {
538                 werr = gp_init_reg_ctx(mem_ctx, KEY_HKCU, REG_KEY_WRITE,
539                                        token,
540                                        &reg_ctx);
541         }
542         if (!W_ERROR_IS_OK(werr)) {
543                 talloc_free(reg_ctx);
544                 return werror_to_ntstatus(werr);
545         }
546
547         root_key = reg_ctx->curr_key;
548
549         status = gpext_process_extension(mem_ctx,
550                                          flags, token, root_key,
551                                          NULL,
552                                          gpo_list,
553                                          extensions_guid_filter);
554         talloc_free(reg_ctx);
555         talloc_free(root_key);
556         gpext_free_gp_extensions();
557
558         return status;
559 }
560
561
562 /****************************************************************
563  check wether the version number in a GROUP_POLICY_OBJECT match those of the
564  locally stored version. If not, fetch the required policy via CIFS
565 ****************************************************************/
566
567 NTSTATUS check_refresh_gpo(ADS_STRUCT *ads,
568                            TALLOC_CTX *mem_ctx,
569                            const char *cache_dir,
570                            uint32_t flags,
571                            struct GROUP_POLICY_OBJECT *gpo)
572 {
573         NTSTATUS result;
574         char *server = NULL;
575         char *share = NULL;
576         char *nt_path = NULL;
577         char *unix_path = NULL;
578         uint32_t sysvol_gpt_version = 0;
579         char *display_name = NULL;
580
581         result = gpo_explode_filesyspath(mem_ctx, cache_dir, gpo->file_sys_path,
582                                          &server, &share, &nt_path, &unix_path);
583
584         if (!NT_STATUS_IS_OK(result)) {
585                 goto out;
586         }
587
588         result = gpo_get_sysvol_gpt_version(mem_ctx,
589                                             unix_path,
590                                             &sysvol_gpt_version,
591                                             &display_name);
592         if (!NT_STATUS_IS_OK(result) &&
593             !NT_STATUS_EQUAL(result, NT_STATUS_NO_SUCH_FILE)) {
594                 DEBUG(10,("check_refresh_gpo: "
595                         "failed to get local gpt version: %s\n",
596                         nt_errstr(result)));
597                 goto out;
598         }
599
600         DEBUG(10,("check_refresh_gpo: versions gpo %d sysvol %d\n",
601                 gpo->version, sysvol_gpt_version));
602
603         /* FIXME: handle GPO_INFO_FLAG_FORCED_REFRESH from flags */
604
605         while (gpo->version > sysvol_gpt_version) {
606
607                 DEBUG(1,("check_refresh_gpo: need to refresh GPO\n"));
608
609                 result = gpo_fetch_files(mem_ctx, ads, cache_dir, gpo);
610                 if (!NT_STATUS_IS_OK(result)) {
611                         goto out;
612                 }
613
614                 result = gpo_get_sysvol_gpt_version(mem_ctx,
615                                                     unix_path,
616                                                     &sysvol_gpt_version,
617                                                     &display_name);
618                 if (!NT_STATUS_IS_OK(result)) {
619                         DEBUG(10,("check_refresh_gpo: "
620                                 "failed to get local gpt version: %s\n",
621                                 nt_errstr(result)));
622                         goto out;
623                 }
624
625                 if (gpo->version == sysvol_gpt_version) {
626                         break;
627                 }
628         }
629
630         DEBUG(10,("Name:\t\t\t%s (%s)\n", gpo->display_name, gpo->name));
631         DEBUGADD(10,("sysvol GPT version:\t%d (user: %d, machine: %d)\n",
632                 sysvol_gpt_version,
633                 GPO_VERSION_USER(sysvol_gpt_version),
634                 GPO_VERSION_MACHINE(sysvol_gpt_version)));
635         DEBUGADD(10,("LDAP GPO version:\t%d (user: %d, machine: %d)\n",
636                 gpo->version,
637                 GPO_VERSION_USER(gpo->version),
638                 GPO_VERSION_MACHINE(gpo->version)));
639         DEBUGADD(10,("LDAP GPO link:\t\t%s\n", gpo->link));
640
641         result = NT_STATUS_OK;
642
643  out:
644         return result;
645
646 }
647
648 /****************************************************************
649  check wether the version numbers in the gpo_list match the locally stored, if
650  not, go and get each required GPO via CIFS
651  ****************************************************************/
652
653 NTSTATUS check_refresh_gpo_list(ADS_STRUCT *ads,
654                                 TALLOC_CTX *mem_ctx,
655                                 const char *cache_dir,
656                                 uint32_t flags,
657                                 struct GROUP_POLICY_OBJECT *gpo_list)
658 {
659         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
660         struct GROUP_POLICY_OBJECT *gpo;
661
662         if (!gpo_list) {
663                 return NT_STATUS_INVALID_PARAMETER;
664         }
665
666         for (gpo = gpo_list; gpo; gpo = gpo->next) {
667
668                 result = check_refresh_gpo(ads, mem_ctx, cache_dir, flags, gpo);
669                 if (!NT_STATUS_IS_OK(result)) {
670                         goto out;
671                 }
672         }
673
674         result = NT_STATUS_OK;
675
676  out:
677         /* FIXME close cli connection */
678
679         return result;
680 }
681
682 /****************************************************************
683 ****************************************************************/
684
685 NTSTATUS gpo_get_unix_path(TALLOC_CTX *mem_ctx,
686                            const char *cache_dir,
687                            struct GROUP_POLICY_OBJECT *gpo,
688                            char **unix_path)
689 {
690         char *server, *share, *nt_path;
691         return gpo_explode_filesyspath(mem_ctx, cache_dir, gpo->file_sys_path,
692                                        &server, &share, &nt_path, unix_path);
693 }
694
695 /****************************************************************
696 ****************************************************************/
697
698 char *gpo_flag_str(TALLOC_CTX *ctx, uint32_t flags)
699 {
700         char *str = NULL;
701
702         if (flags == 0) {
703                 return NULL;
704         }
705
706         str = talloc_strdup(ctx, "");
707         if (!str) {
708                 return NULL;
709         }
710
711         if (flags & GPO_INFO_FLAG_SLOWLINK)
712                 str = talloc_strdup_append(str, "GPO_INFO_FLAG_SLOWLINK ");
713         if (flags & GPO_INFO_FLAG_VERBOSE)
714                 str = talloc_strdup_append(str, "GPO_INFO_FLAG_VERBOSE ");
715         if (flags & GPO_INFO_FLAG_SAFEMODE_BOOT)
716                 str = talloc_strdup_append(str, "GPO_INFO_FLAG_SAFEMODE_BOOT ");
717         if (flags & GPO_INFO_FLAG_NOCHANGES)
718                 str = talloc_strdup_append(str, "GPO_INFO_FLAG_NOCHANGES ");
719         if (flags & GPO_INFO_FLAG_MACHINE)
720                 str = talloc_strdup_append(str, "GPO_INFO_FLAG_MACHINE ");
721         if (flags & GPO_INFO_FLAG_LOGRSOP_TRANSITION)
722                 str = talloc_strdup_append(str, "GPO_INFO_FLAG_LOGRSOP_TRANSITION ");
723         if (flags & GPO_INFO_FLAG_LINKTRANSITION)
724                 str = talloc_strdup_append(str, "GPO_INFO_FLAG_LINKTRANSITION ");
725         if (flags & GPO_INFO_FLAG_FORCED_REFRESH)
726                 str = talloc_strdup_append(str, "GPO_INFO_FLAG_FORCED_REFRESH ");
727         if (flags & GPO_INFO_FLAG_BACKGROUND)
728                 str = talloc_strdup_append(str, "GPO_INFO_FLAG_BACKGROUND ");
729
730         return str;
731 }
732
733 /****************************************************************
734 ****************************************************************/
735
736 NTSTATUS gp_find_file(TALLOC_CTX *mem_ctx,
737                       uint32_t flags,
738                       const char *filename,
739                       const char *suffix,
740                       const char **filename_out)
741 {
742         const char *tmp = NULL;
743         struct stat sbuf;
744         const char *path = NULL;
745
746         if (flags & GPO_LIST_FLAG_MACHINE) {
747                 path = "Machine";
748         } else {
749                 path = "User";
750         }
751
752         tmp = talloc_asprintf(mem_ctx, "%s/%s/%s", filename,
753                               path, suffix);
754         NT_STATUS_HAVE_NO_MEMORY(tmp);
755
756         if (stat(tmp, &sbuf) == 0) {
757                 *filename_out = tmp;
758                 return NT_STATUS_OK;
759         }
760
761         path = talloc_strdup_upper(mem_ctx, path);
762         NT_STATUS_HAVE_NO_MEMORY(path);
763
764         tmp = talloc_asprintf(mem_ctx, "%s/%s/%s", filename,
765                               path, suffix);
766         NT_STATUS_HAVE_NO_MEMORY(tmp);
767
768         if (stat(tmp, &sbuf) == 0) {
769                 *filename_out = tmp;
770                 return NT_STATUS_OK;
771         }
772
773         return NT_STATUS_NO_SUCH_FILE;
774 }
775
776 /****************************************************************
777 ****************************************************************/
778
779 ADS_STATUS gp_get_machine_token(ADS_STRUCT *ads,
780                                 TALLOC_CTX *mem_ctx,
781                                 const char *dn,
782                                 struct security_token **token)
783 {
784 #ifdef HAVE_ADS
785         struct security_token *ad_token = NULL;
786         ADS_STATUS status;
787         NTSTATUS ntstatus;
788
789         status = ads_get_sid_token(ads, mem_ctx, dn, &ad_token);
790         if (!ADS_ERR_OK(status)) {
791                 return status;
792         }
793         ntstatus = merge_nt_token(mem_ctx, ad_token, get_system_token(),
794                                   token);
795         if (!NT_STATUS_IS_OK(ntstatus)) {
796                 return ADS_ERROR_NT(ntstatus);
797         }
798         return ADS_SUCCESS;
799 #else
800         return ADS_ERROR_NT(NT_STATUS_NOT_SUPPORTED);
801 #endif
802 }
803
804 /****************************************************************
805 ****************************************************************/
806
807 NTSTATUS gpo_copy(TALLOC_CTX *mem_ctx,
808                   const struct GROUP_POLICY_OBJECT *gpo_src,
809                   struct GROUP_POLICY_OBJECT **gpo_dst)
810 {
811         struct GROUP_POLICY_OBJECT *gpo;
812
813         gpo = talloc_zero(mem_ctx, struct GROUP_POLICY_OBJECT);
814         NT_STATUS_HAVE_NO_MEMORY(gpo);
815
816         gpo->options            = gpo_src->options;
817         gpo->version            = gpo_src->version;
818
819         gpo->ds_path            = talloc_strdup(gpo, gpo_src->ds_path);
820         NT_STATUS_HAVE_NO_MEMORY_AND_FREE(gpo->ds_path, gpo);
821
822         gpo->file_sys_path      = talloc_strdup(gpo, gpo_src->file_sys_path);
823         NT_STATUS_HAVE_NO_MEMORY_AND_FREE(gpo->file_sys_path, gpo);
824
825         gpo->display_name       = talloc_strdup(gpo, gpo_src->display_name);
826         NT_STATUS_HAVE_NO_MEMORY_AND_FREE(gpo->display_name, gpo);
827
828         gpo->name               = talloc_strdup(gpo, gpo_src->name);
829         NT_STATUS_HAVE_NO_MEMORY_AND_FREE(gpo->name, gpo);
830
831         gpo->link               = talloc_strdup(gpo, gpo_src->link);
832         NT_STATUS_HAVE_NO_MEMORY_AND_FREE(gpo->link, gpo);
833
834         gpo->link_type          = gpo_src->link_type;
835
836         if (gpo_src->user_extensions) {
837                 gpo->user_extensions = talloc_strdup(gpo, gpo_src->user_extensions);
838                 NT_STATUS_HAVE_NO_MEMORY_AND_FREE(gpo->user_extensions, gpo);
839         }
840
841         if (gpo_src->machine_extensions) {
842                 gpo->machine_extensions = talloc_strdup(gpo, gpo_src->machine_extensions);
843                 NT_STATUS_HAVE_NO_MEMORY_AND_FREE(gpo->machine_extensions, gpo);
844         }
845
846         gpo->security_descriptor = dup_sec_desc(gpo, gpo_src->security_descriptor);
847         NT_STATUS_HAVE_NO_MEMORY_AND_FREE(gpo->security_descriptor, gpo);
848
849         gpo->next = gpo->prev = NULL;
850
851         *gpo_dst = gpo;
852
853         return NT_STATUS_OK;
854 }