mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
c40e354fe1
Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org> Autobuild-User(master): Andreas Schneider <asn@cryptomilk.org> Autobuild-Date(master): Tue May 26 11:22:07 UTC 2020 on sn-devel-184
125 lines
3.2 KiB
C
125 lines
3.2 KiB
C
/*
|
|
* Unix SMB/CIFS implementation.
|
|
* Group Policy Object Support
|
|
* Copyright (C) Guenther Deschner 2005-2006
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "includes.h"
|
|
#include "system/filesys.h"
|
|
#include "../libgpo/gpo.h"
|
|
#include "../libgpo/gpo_ini.h"
|
|
|
|
#include "libgpo/gpo_proto.h"
|
|
#include "libsmb/libsmb.h"
|
|
|
|
/****************************************************************
|
|
explode the GPO CIFS URI into their components
|
|
****************************************************************/
|
|
|
|
NTSTATUS gpo_explode_filesyspath(TALLOC_CTX *mem_ctx,
|
|
const char *cache_dir,
|
|
const char *file_sys_path,
|
|
char **server,
|
|
char **service,
|
|
char **nt_path,
|
|
char **unix_path)
|
|
{
|
|
char *path = NULL;
|
|
|
|
*server = NULL;
|
|
*service = NULL;
|
|
*nt_path = NULL;
|
|
*unix_path = NULL;
|
|
|
|
if (!file_sys_path) {
|
|
return NT_STATUS_OK;
|
|
}
|
|
|
|
if (!next_token_talloc(mem_ctx, &file_sys_path, server, "\\")) {
|
|
return NT_STATUS_INVALID_PARAMETER;
|
|
}
|
|
NT_STATUS_HAVE_NO_MEMORY(*server);
|
|
|
|
if (!next_token_talloc(mem_ctx, &file_sys_path, service, "\\")) {
|
|
return NT_STATUS_INVALID_PARAMETER;
|
|
}
|
|
NT_STATUS_HAVE_NO_MEMORY(*service);
|
|
|
|
if ((*nt_path = talloc_asprintf(mem_ctx, "\\%s", file_sys_path))
|
|
== NULL) {
|
|
return NT_STATUS_NO_MEMORY;
|
|
}
|
|
NT_STATUS_HAVE_NO_MEMORY(*nt_path);
|
|
|
|
if ((path = talloc_asprintf(mem_ctx,
|
|
"%s/%s",
|
|
cache_dir,
|
|
file_sys_path)) == NULL) {
|
|
return NT_STATUS_NO_MEMORY;
|
|
}
|
|
path = talloc_string_sub(mem_ctx, path, "\\", "/");
|
|
if (!path) {
|
|
return NT_STATUS_NO_MEMORY;
|
|
}
|
|
|
|
*unix_path = talloc_strdup(mem_ctx, path);
|
|
NT_STATUS_HAVE_NO_MEMORY(*unix_path);
|
|
|
|
talloc_free(path);
|
|
return NT_STATUS_OK;
|
|
}
|
|
|
|
/****************************************************************
|
|
get the locally stored gpt.ini version number
|
|
****************************************************************/
|
|
|
|
NTSTATUS gpo_get_sysvol_gpt_version(TALLOC_CTX *mem_ctx,
|
|
const char *unix_path,
|
|
uint32_t *sysvol_version,
|
|
char **display_name)
|
|
{
|
|
NTSTATUS status;
|
|
uint32_t version = 0;
|
|
char *local_path = NULL;
|
|
char *name = NULL;
|
|
|
|
if (!unix_path) {
|
|
return NT_STATUS_OK;
|
|
}
|
|
|
|
local_path = talloc_asprintf(mem_ctx, "%s/%s", unix_path, GPT_INI);
|
|
NT_STATUS_HAVE_NO_MEMORY(local_path);
|
|
|
|
status = parse_gpt_ini(mem_ctx, local_path, &version, &name);
|
|
if (!NT_STATUS_IS_OK(status)) {
|
|
DEBUG(10,("gpo_get_sysvol_gpt_version: "
|
|
"failed to parse ini [%s]: %s\n",
|
|
local_path, nt_errstr(status)));
|
|
return status;
|
|
}
|
|
|
|
if (sysvol_version) {
|
|
*sysvol_version = version;
|
|
}
|
|
|
|
if (name && *display_name) {
|
|
*display_name = talloc_strdup(mem_ctx, name);
|
|
NT_STATUS_HAVE_NO_MEMORY(*display_name);
|
|
}
|
|
|
|
return NT_STATUS_OK;
|
|
}
|