Fix bug #7669.
[Samba.git] / source / libgpo / gpo_fetch.c
blob2ec066425bb5706e08ccb62a768278d910e89fb3
1 /*
2 * Unix SMB/CIFS implementation.
3 * Group Policy Object Support
4 * Copyright (C) Guenther Deschner 2005-2006
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"
22 /****************************************************************
23 explode the GPO CIFS URI into their components
24 ****************************************************************/
26 NTSTATUS gpo_explode_filesyspath(TALLOC_CTX *mem_ctx,
27 const char *file_sys_path,
28 char **server,
29 char **service,
30 char **nt_path,
31 char **unix_path)
33 char *path = NULL;
35 *server = NULL;
36 *service = NULL;
37 *nt_path = NULL;
38 *unix_path = NULL;
40 if (!file_sys_path) {
41 return NT_STATUS_OK;
44 if (!next_token_talloc(mem_ctx, &file_sys_path, server, "\\")) {
45 return NT_STATUS_INVALID_PARAMETER;
47 NT_STATUS_HAVE_NO_MEMORY(*server);
49 if (!next_token_talloc(mem_ctx, &file_sys_path, service, "\\")) {
50 return NT_STATUS_INVALID_PARAMETER;
52 NT_STATUS_HAVE_NO_MEMORY(*service);
54 if ((*nt_path = talloc_asprintf(mem_ctx, "\\%s", file_sys_path))
55 == NULL) {
56 return NT_STATUS_NO_MEMORY;
58 NT_STATUS_HAVE_NO_MEMORY(*nt_path);
60 if ((path = talloc_asprintf(mem_ctx,
61 "%s/%s",
62 lock_path(GPO_CACHE_DIR),
63 file_sys_path)) == NULL) {
64 return NT_STATUS_NO_MEMORY;
66 path = talloc_string_sub(mem_ctx, path, "\\", "/");
67 if (!path) {
68 return NT_STATUS_NO_MEMORY;
71 *unix_path = talloc_strdup(mem_ctx, path);
72 NT_STATUS_HAVE_NO_MEMORY(*unix_path);
74 TALLOC_FREE(path);
75 return NT_STATUS_OK;
78 /****************************************************************
79 prepare the local disc storage for "unix_path"
80 ****************************************************************/
82 static NTSTATUS gpo_prepare_local_store(TALLOC_CTX *mem_ctx,
83 const char *unix_path)
85 const char *top_dir = lock_path(GPO_CACHE_DIR);
86 char *current_dir;
87 char *tok;
89 current_dir = talloc_strdup(mem_ctx, top_dir);
90 NT_STATUS_HAVE_NO_MEMORY(current_dir);
92 if ((mkdir(top_dir, 0644)) < 0 && errno != EEXIST) {
93 return NT_STATUS_ACCESS_DENIED;
96 while (next_token_talloc(mem_ctx, &unix_path, &tok, "/")) {
97 if (strequal(tok, GPO_CACHE_DIR)) {
98 break;
102 while (next_token_talloc(mem_ctx, &unix_path, &tok, "/")) {
103 current_dir = talloc_asprintf_append_buffer(current_dir, "/%s", tok);
104 NT_STATUS_HAVE_NO_MEMORY(current_dir);
106 if ((mkdir(current_dir, 0644)) < 0 && errno != EEXIST) {
107 return NT_STATUS_ACCESS_DENIED;
111 return NT_STATUS_OK;
114 /****************************************************************
115 download a full GPO via CIFS
116 ****************************************************************/
118 NTSTATUS gpo_fetch_files(TALLOC_CTX *mem_ctx,
119 struct cli_state *cli,
120 struct GROUP_POLICY_OBJECT *gpo)
122 NTSTATUS result;
123 char *server, *service, *nt_path, *unix_path;
124 char *nt_ini_path, *unix_ini_path;
126 result = gpo_explode_filesyspath(mem_ctx, gpo->file_sys_path,
127 &server, &service, &nt_path,
128 &unix_path);
129 NT_STATUS_NOT_OK_RETURN(result);
131 result = gpo_prepare_local_store(mem_ctx, unix_path);
132 NT_STATUS_NOT_OK_RETURN(result);
134 unix_ini_path = talloc_asprintf(mem_ctx, "%s/%s", unix_path, GPT_INI);
135 nt_ini_path = talloc_asprintf(mem_ctx, "%s\\%s", nt_path, GPT_INI);
136 NT_STATUS_HAVE_NO_MEMORY(unix_ini_path);
137 NT_STATUS_HAVE_NO_MEMORY(nt_ini_path);
139 result = gpo_copy_file(mem_ctx, cli, nt_ini_path, unix_ini_path);
140 NT_STATUS_NOT_OK_RETURN(result);
142 result = gpo_sync_directories(mem_ctx, cli, nt_path, unix_path);
143 NT_STATUS_NOT_OK_RETURN(result);
145 return NT_STATUS_OK;
148 /****************************************************************
149 get the locally stored gpt.ini version number
150 ****************************************************************/
152 NTSTATUS gpo_get_sysvol_gpt_version(TALLOC_CTX *mem_ctx,
153 const char *unix_path,
154 uint32_t *sysvol_version,
155 char **display_name)
157 NTSTATUS status;
158 uint32_t version = 0;
159 char *local_path = NULL;
160 char *name = NULL;
162 if (!unix_path) {
163 return NT_STATUS_OK;
166 local_path = talloc_asprintf(mem_ctx, "%s/%s", unix_path, GPT_INI);
167 NT_STATUS_HAVE_NO_MEMORY(local_path);
169 status = parse_gpt_ini(mem_ctx, local_path, &version, &name);
170 if (!NT_STATUS_IS_OK(status)) {
171 DEBUG(10,("gpo_get_sysvol_gpt_version: "
172 "failed to parse ini [%s]: %s\n",
173 local_path, nt_errstr(status)));
174 return status;
177 if (sysvol_version) {
178 *sysvol_version = version;
181 if (name && *display_name) {
182 *display_name = talloc_strdup(mem_ctx, name);
183 NT_STATUS_HAVE_NO_MEMORY(*display_name);
186 return NT_STATUS_OK;