mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
54eaf2de74
Jeremy.
617 lines
16 KiB
C
617 lines
16 KiB
C
/*
|
|
* Unix SMB/Netbios implementation.
|
|
* SEC_DESC handling functions
|
|
* Copyright (C) Andrew Tridgell 1992-1998,
|
|
* Copyright (C) Jeremy R. Allison 1995-2003.
|
|
* Copyright (C) Luke Kenneth Casson Leighton 1996-1998,
|
|
* Copyright (C) Paul Ashton 1997-1998.
|
|
*
|
|
* 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"
|
|
|
|
/* Map generic permissions to file object specific permissions */
|
|
|
|
const struct generic_mapping file_generic_mapping = {
|
|
FILE_GENERIC_READ,
|
|
FILE_GENERIC_WRITE,
|
|
FILE_GENERIC_EXECUTE,
|
|
FILE_GENERIC_ALL
|
|
};
|
|
|
|
/*******************************************************************
|
|
Compares two SEC_DESC structures
|
|
********************************************************************/
|
|
|
|
bool sec_desc_equal(SEC_DESC *s1, SEC_DESC *s2)
|
|
{
|
|
/* Trivial case */
|
|
|
|
if (!s1 && !s2) {
|
|
goto done;
|
|
}
|
|
|
|
if (!s1 || !s2) {
|
|
return False;
|
|
}
|
|
|
|
/* Check top level stuff */
|
|
|
|
if (s1->revision != s2->revision) {
|
|
DEBUG(10, ("sec_desc_equal(): revision differs (%d != %d)\n",
|
|
s1->revision, s2->revision));
|
|
return False;
|
|
}
|
|
|
|
if (s1->type!= s2->type) {
|
|
DEBUG(10, ("sec_desc_equal(): type differs (%d != %d)\n",
|
|
s1->type, s2->type));
|
|
return False;
|
|
}
|
|
|
|
/* Check owner and group */
|
|
|
|
if (!sid_equal(s1->owner_sid, s2->owner_sid)) {
|
|
DEBUG(10, ("sec_desc_equal(): owner differs (%s != %s)\n",
|
|
sid_string_dbg(s1->owner_sid),
|
|
sid_string_dbg(s2->owner_sid)));
|
|
return False;
|
|
}
|
|
|
|
if (!sid_equal(s1->group_sid, s2->group_sid)) {
|
|
DEBUG(10, ("sec_desc_equal(): group differs (%s != %s)\n",
|
|
sid_string_dbg(s1->group_sid),
|
|
sid_string_dbg(s2->group_sid)));
|
|
return False;
|
|
}
|
|
|
|
/* Check ACLs present in one but not the other */
|
|
|
|
if ((s1->dacl && !s2->dacl) || (!s1->dacl && s2->dacl) ||
|
|
(s1->sacl && !s2->sacl) || (!s1->sacl && s2->sacl)) {
|
|
DEBUG(10, ("sec_desc_equal(): dacl or sacl not present\n"));
|
|
return False;
|
|
}
|
|
|
|
/* Sigh - we have to do it the hard way by iterating over all
|
|
the ACEs in the ACLs */
|
|
|
|
if (!sec_acl_equal(s1->dacl, s2->dacl) ||
|
|
!sec_acl_equal(s1->sacl, s2->sacl)) {
|
|
DEBUG(10, ("sec_desc_equal(): dacl/sacl list not equal\n"));
|
|
return False;
|
|
}
|
|
|
|
done:
|
|
DEBUG(10, ("sec_desc_equal(): secdescs are identical\n"));
|
|
return True;
|
|
}
|
|
|
|
/*******************************************************************
|
|
Merge part of security descriptor old_sec in to the empty sections of
|
|
security descriptor new_sec.
|
|
********************************************************************/
|
|
|
|
SEC_DESC_BUF *sec_desc_merge(TALLOC_CTX *ctx, SEC_DESC_BUF *new_sdb, SEC_DESC_BUF *old_sdb)
|
|
{
|
|
DOM_SID *owner_sid, *group_sid;
|
|
SEC_DESC_BUF *return_sdb;
|
|
SEC_ACL *dacl, *sacl;
|
|
SEC_DESC *psd = NULL;
|
|
uint16 secdesc_type;
|
|
size_t secdesc_size;
|
|
|
|
/* Copy over owner and group sids. There seems to be no flag for
|
|
this so just check the pointer values. */
|
|
|
|
owner_sid = new_sdb->sd->owner_sid ? new_sdb->sd->owner_sid :
|
|
old_sdb->sd->owner_sid;
|
|
|
|
group_sid = new_sdb->sd->group_sid ? new_sdb->sd->group_sid :
|
|
old_sdb->sd->group_sid;
|
|
|
|
secdesc_type = new_sdb->sd->type;
|
|
|
|
/* Ignore changes to the system ACL. This has the effect of making
|
|
changes through the security tab audit button not sticking.
|
|
Perhaps in future Samba could implement these settings somehow. */
|
|
|
|
sacl = NULL;
|
|
secdesc_type &= ~SEC_DESC_SACL_PRESENT;
|
|
|
|
/* Copy across discretionary ACL */
|
|
|
|
if (secdesc_type & SEC_DESC_DACL_PRESENT) {
|
|
dacl = new_sdb->sd->dacl;
|
|
} else {
|
|
dacl = old_sdb->sd->dacl;
|
|
}
|
|
|
|
/* Create new security descriptor from bits */
|
|
|
|
psd = make_sec_desc(ctx, new_sdb->sd->revision, secdesc_type,
|
|
owner_sid, group_sid, sacl, dacl, &secdesc_size);
|
|
|
|
return_sdb = make_sec_desc_buf(ctx, secdesc_size, psd);
|
|
|
|
return(return_sdb);
|
|
}
|
|
|
|
/*******************************************************************
|
|
Creates a SEC_DESC structure
|
|
********************************************************************/
|
|
|
|
SEC_DESC *make_sec_desc(TALLOC_CTX *ctx,
|
|
enum security_descriptor_revision revision,
|
|
uint16 type,
|
|
const DOM_SID *owner_sid, const DOM_SID *grp_sid,
|
|
SEC_ACL *sacl, SEC_ACL *dacl, size_t *sd_size)
|
|
{
|
|
SEC_DESC *dst;
|
|
uint32 offset = 0;
|
|
|
|
*sd_size = 0;
|
|
|
|
if(( dst = TALLOC_ZERO_P(ctx, SEC_DESC)) == NULL)
|
|
return NULL;
|
|
|
|
dst->revision = revision;
|
|
dst->type = type;
|
|
|
|
if (sacl)
|
|
dst->type |= SEC_DESC_SACL_PRESENT;
|
|
if (dacl)
|
|
dst->type |= SEC_DESC_DACL_PRESENT;
|
|
|
|
dst->owner_sid = NULL;
|
|
dst->group_sid = NULL;
|
|
dst->sacl = NULL;
|
|
dst->dacl = NULL;
|
|
|
|
if(owner_sid && ((dst->owner_sid = sid_dup_talloc(dst,owner_sid)) == NULL))
|
|
goto error_exit;
|
|
|
|
if(grp_sid && ((dst->group_sid = sid_dup_talloc(dst,grp_sid)) == NULL))
|
|
goto error_exit;
|
|
|
|
if(sacl && ((dst->sacl = dup_sec_acl(dst, sacl)) == NULL))
|
|
goto error_exit;
|
|
|
|
if(dacl && ((dst->dacl = dup_sec_acl(dst, dacl)) == NULL))
|
|
goto error_exit;
|
|
|
|
offset = SEC_DESC_HEADER_SIZE;
|
|
|
|
/*
|
|
* Work out the linearization sizes.
|
|
*/
|
|
|
|
if (dst->sacl != NULL) {
|
|
offset += dst->sacl->size;
|
|
}
|
|
if (dst->dacl != NULL) {
|
|
offset += dst->dacl->size;
|
|
}
|
|
|
|
if (dst->owner_sid != NULL) {
|
|
offset += ndr_size_dom_sid(dst->owner_sid, 0);
|
|
}
|
|
|
|
if (dst->group_sid != NULL) {
|
|
offset += ndr_size_dom_sid(dst->group_sid, 0);
|
|
}
|
|
|
|
*sd_size = (size_t)offset;
|
|
return dst;
|
|
|
|
error_exit:
|
|
|
|
*sd_size = 0;
|
|
return NULL;
|
|
}
|
|
|
|
/*******************************************************************
|
|
Duplicate a SEC_DESC structure.
|
|
********************************************************************/
|
|
|
|
SEC_DESC *dup_sec_desc(TALLOC_CTX *ctx, const SEC_DESC *src)
|
|
{
|
|
size_t dummy;
|
|
|
|
if(src == NULL)
|
|
return NULL;
|
|
|
|
return make_sec_desc( ctx, src->revision, src->type,
|
|
src->owner_sid, src->group_sid, src->sacl,
|
|
src->dacl, &dummy);
|
|
}
|
|
|
|
/*******************************************************************
|
|
Convert a secdesc into a byte stream
|
|
********************************************************************/
|
|
NTSTATUS marshall_sec_desc(TALLOC_CTX *mem_ctx,
|
|
struct security_descriptor *secdesc,
|
|
uint8 **data, size_t *len)
|
|
{
|
|
DATA_BLOB blob;
|
|
enum ndr_err_code ndr_err;
|
|
|
|
ndr_err = ndr_push_struct_blob(
|
|
&blob, mem_ctx, NULL, secdesc,
|
|
(ndr_push_flags_fn_t)ndr_push_security_descriptor);
|
|
|
|
if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
|
|
DEBUG(0, ("ndr_push_security_descriptor failed: %s\n",
|
|
ndr_errstr(ndr_err)));
|
|
return ndr_map_error2ntstatus(ndr_err);;
|
|
}
|
|
|
|
*data = blob.data;
|
|
*len = blob.length;
|
|
return NT_STATUS_OK;
|
|
}
|
|
|
|
/*******************************************************************
|
|
Parse a byte stream into a secdesc
|
|
********************************************************************/
|
|
NTSTATUS unmarshall_sec_desc(TALLOC_CTX *mem_ctx, uint8 *data, size_t len,
|
|
struct security_descriptor **psecdesc)
|
|
{
|
|
DATA_BLOB blob;
|
|
enum ndr_err_code ndr_err;
|
|
struct security_descriptor *result;
|
|
|
|
if ((data == NULL) || (len == 0)) {
|
|
return NT_STATUS_INVALID_PARAMETER;
|
|
}
|
|
|
|
result = TALLOC_ZERO_P(mem_ctx, struct security_descriptor);
|
|
if (result == NULL) {
|
|
return NT_STATUS_NO_MEMORY;
|
|
}
|
|
|
|
blob = data_blob_const(data, len);
|
|
|
|
ndr_err = ndr_pull_struct_blob(
|
|
&blob, result, NULL, result,
|
|
(ndr_pull_flags_fn_t)ndr_pull_security_descriptor);
|
|
|
|
if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
|
|
DEBUG(0, ("ndr_pull_security_descriptor failed: %s\n",
|
|
ndr_errstr(ndr_err)));
|
|
TALLOC_FREE(result);
|
|
return ndr_map_error2ntstatus(ndr_err);;
|
|
}
|
|
|
|
*psecdesc = result;
|
|
return NT_STATUS_OK;
|
|
}
|
|
|
|
/*******************************************************************
|
|
Creates a SEC_DESC structure with typical defaults.
|
|
********************************************************************/
|
|
|
|
SEC_DESC *make_standard_sec_desc(TALLOC_CTX *ctx, const DOM_SID *owner_sid, const DOM_SID *grp_sid,
|
|
SEC_ACL *dacl, size_t *sd_size)
|
|
{
|
|
return make_sec_desc(ctx, SECURITY_DESCRIPTOR_REVISION_1,
|
|
SEC_DESC_SELF_RELATIVE, owner_sid, grp_sid, NULL,
|
|
dacl, sd_size);
|
|
}
|
|
|
|
/*******************************************************************
|
|
Creates a SEC_DESC_BUF structure.
|
|
********************************************************************/
|
|
|
|
SEC_DESC_BUF *make_sec_desc_buf(TALLOC_CTX *ctx, size_t len, SEC_DESC *sec_desc)
|
|
{
|
|
SEC_DESC_BUF *dst;
|
|
|
|
if((dst = TALLOC_ZERO_P(ctx, SEC_DESC_BUF)) == NULL)
|
|
return NULL;
|
|
|
|
/* max buffer size (allocated size) */
|
|
dst->sd_size = (uint32)len;
|
|
|
|
if(sec_desc && ((dst->sd = dup_sec_desc(ctx, sec_desc)) == NULL)) {
|
|
return NULL;
|
|
}
|
|
|
|
return dst;
|
|
}
|
|
|
|
/*******************************************************************
|
|
Duplicates a SEC_DESC_BUF structure.
|
|
********************************************************************/
|
|
|
|
SEC_DESC_BUF *dup_sec_desc_buf(TALLOC_CTX *ctx, SEC_DESC_BUF *src)
|
|
{
|
|
if(src == NULL)
|
|
return NULL;
|
|
|
|
return make_sec_desc_buf( ctx, src->sd_size, src->sd);
|
|
}
|
|
|
|
/*******************************************************************
|
|
Add a new SID with its permissions to SEC_DESC.
|
|
********************************************************************/
|
|
|
|
NTSTATUS sec_desc_add_sid(TALLOC_CTX *ctx, SEC_DESC **psd, DOM_SID *sid, uint32 mask, size_t *sd_size)
|
|
{
|
|
SEC_DESC *sd = 0;
|
|
SEC_ACL *dacl = 0;
|
|
SEC_ACE *ace = 0;
|
|
NTSTATUS status;
|
|
|
|
if (!ctx || !psd || !sid || !sd_size)
|
|
return NT_STATUS_INVALID_PARAMETER;
|
|
|
|
*sd_size = 0;
|
|
|
|
status = sec_ace_add_sid(ctx, &ace, psd[0]->dacl->aces, &psd[0]->dacl->num_aces, sid, mask);
|
|
|
|
if (!NT_STATUS_IS_OK(status))
|
|
return status;
|
|
|
|
if (!(dacl = make_sec_acl(ctx, psd[0]->dacl->revision, psd[0]->dacl->num_aces, ace)))
|
|
return NT_STATUS_UNSUCCESSFUL;
|
|
|
|
if (!(sd = make_sec_desc(ctx, psd[0]->revision, psd[0]->type, psd[0]->owner_sid,
|
|
psd[0]->group_sid, psd[0]->sacl, dacl, sd_size)))
|
|
return NT_STATUS_UNSUCCESSFUL;
|
|
|
|
*psd = sd;
|
|
sd = 0;
|
|
return NT_STATUS_OK;
|
|
}
|
|
|
|
/*******************************************************************
|
|
Modify a SID's permissions in a SEC_DESC.
|
|
********************************************************************/
|
|
|
|
NTSTATUS sec_desc_mod_sid(SEC_DESC *sd, DOM_SID *sid, uint32 mask)
|
|
{
|
|
NTSTATUS status;
|
|
|
|
if (!sd || !sid)
|
|
return NT_STATUS_INVALID_PARAMETER;
|
|
|
|
status = sec_ace_mod_sid(sd->dacl->aces, sd->dacl->num_aces, sid, mask);
|
|
|
|
if (!NT_STATUS_IS_OK(status))
|
|
return status;
|
|
|
|
return NT_STATUS_OK;
|
|
}
|
|
|
|
/*******************************************************************
|
|
Delete a SID from a SEC_DESC.
|
|
********************************************************************/
|
|
|
|
NTSTATUS sec_desc_del_sid(TALLOC_CTX *ctx, SEC_DESC **psd, DOM_SID *sid, size_t *sd_size)
|
|
{
|
|
SEC_DESC *sd = 0;
|
|
SEC_ACL *dacl = 0;
|
|
SEC_ACE *ace = 0;
|
|
NTSTATUS status;
|
|
|
|
if (!ctx || !psd[0] || !sid || !sd_size)
|
|
return NT_STATUS_INVALID_PARAMETER;
|
|
|
|
*sd_size = 0;
|
|
|
|
status = sec_ace_del_sid(ctx, &ace, psd[0]->dacl->aces, &psd[0]->dacl->num_aces, sid);
|
|
|
|
if (!NT_STATUS_IS_OK(status))
|
|
return status;
|
|
|
|
if (!(dacl = make_sec_acl(ctx, psd[0]->dacl->revision, psd[0]->dacl->num_aces, ace)))
|
|
return NT_STATUS_UNSUCCESSFUL;
|
|
|
|
if (!(sd = make_sec_desc(ctx, psd[0]->revision, psd[0]->type, psd[0]->owner_sid,
|
|
psd[0]->group_sid, psd[0]->sacl, dacl, sd_size)))
|
|
return NT_STATUS_UNSUCCESSFUL;
|
|
|
|
*psd = sd;
|
|
sd = 0;
|
|
return NT_STATUS_OK;
|
|
}
|
|
|
|
/*
|
|
* Determine if an ACE is inheritable
|
|
*/
|
|
|
|
static bool is_inheritable_ace(const SEC_ACE *ace,
|
|
bool container)
|
|
{
|
|
if (!container) {
|
|
return ((ace->flags & SEC_ACE_FLAG_OBJECT_INHERIT) != 0);
|
|
}
|
|
|
|
if (ace->flags & SEC_ACE_FLAG_CONTAINER_INHERIT) {
|
|
return true;
|
|
}
|
|
|
|
if ((ace->flags & SEC_ACE_FLAG_OBJECT_INHERIT) &&
|
|
!(ace->flags & SEC_ACE_FLAG_NO_PROPAGATE_INHERIT)) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/* Create a child security descriptor using another security descriptor as
|
|
the parent container. This child object can either be a container or
|
|
non-container object. */
|
|
|
|
NTSTATUS se_create_child_secdesc(TALLOC_CTX *ctx,
|
|
SEC_DESC **ppsd,
|
|
size_t *psize,
|
|
const SEC_DESC *parent_ctr,
|
|
const DOM_SID *owner_sid,
|
|
const DOM_SID *group_sid,
|
|
bool container)
|
|
{
|
|
SEC_ACL *new_dacl = NULL, *the_acl = NULL;
|
|
SEC_ACE *new_ace_list = NULL;
|
|
unsigned int new_ace_list_ndx = 0, i;
|
|
|
|
*ppsd = NULL;
|
|
*psize = 0;
|
|
|
|
/* Currently we only process the dacl when creating the child. The
|
|
sacl should also be processed but this is left out as sacls are
|
|
not implemented in Samba at the moment.*/
|
|
|
|
the_acl = parent_ctr->dacl;
|
|
|
|
if (the_acl->num_aces) {
|
|
if (2*the_acl->num_aces < the_acl->num_aces) {
|
|
return NT_STATUS_NO_MEMORY;
|
|
}
|
|
|
|
if (!(new_ace_list = TALLOC_ARRAY(ctx, SEC_ACE,
|
|
2*the_acl->num_aces))) {
|
|
return NT_STATUS_NO_MEMORY;
|
|
}
|
|
} else {
|
|
new_ace_list = NULL;
|
|
}
|
|
|
|
for (i = 0; i < the_acl->num_aces; i++) {
|
|
const SEC_ACE *ace = &the_acl->aces[i];
|
|
SEC_ACE *new_ace = &new_ace_list[new_ace_list_ndx];
|
|
const DOM_SID *ptrustee = &ace->trustee;
|
|
const DOM_SID *creator = NULL;
|
|
uint8 new_flags = ace->flags;
|
|
|
|
if (!is_inheritable_ace(ace, container)) {
|
|
continue;
|
|
}
|
|
|
|
/* see the RAW-ACLS inheritance test for details on these rules */
|
|
if (!container) {
|
|
new_flags = 0;
|
|
} else {
|
|
new_flags &= ~SEC_ACE_FLAG_INHERIT_ONLY;
|
|
|
|
if (!(new_flags & SEC_ACE_FLAG_CONTAINER_INHERIT)) {
|
|
new_flags |= SEC_ACE_FLAG_INHERIT_ONLY;
|
|
}
|
|
if (new_flags & SEC_ACE_FLAG_NO_PROPAGATE_INHERIT) {
|
|
new_flags = 0;
|
|
}
|
|
}
|
|
|
|
/* The CREATOR sids are special when inherited */
|
|
if (sid_equal(ptrustee, &global_sid_Creator_Owner)) {
|
|
creator = &global_sid_Creator_Owner;
|
|
ptrustee = owner_sid;
|
|
} else if (sid_equal(ptrustee, &global_sid_Creator_Group)) {
|
|
creator = &global_sid_Creator_Group;
|
|
ptrustee = group_sid;
|
|
}
|
|
|
|
if (creator && container &&
|
|
(new_flags & SEC_ACE_FLAG_CONTAINER_INHERIT)) {
|
|
|
|
/* First add the regular ACE entry. */
|
|
init_sec_ace(new_ace, ptrustee, ace->type,
|
|
ace->access_mask, 0);
|
|
|
|
DEBUG(5,("se_create_child_secdesc(): %s:%d/0x%02x/0x%08x"
|
|
" inherited as %s:%d/0x%02x/0x%08x\n",
|
|
sid_string_dbg(&ace->trustee),
|
|
ace->type, ace->flags, ace->access_mask,
|
|
sid_string_dbg(&new_ace->trustee),
|
|
new_ace->type, new_ace->flags,
|
|
new_ace->access_mask));
|
|
|
|
new_ace_list_ndx++;
|
|
|
|
/* Now add the extra creator ACE. */
|
|
new_ace = &new_ace_list[new_ace_list_ndx];
|
|
|
|
ptrustee = creator;
|
|
new_flags |= SEC_ACE_FLAG_INHERIT_ONLY;
|
|
}
|
|
|
|
init_sec_ace(new_ace, ptrustee, ace->type,
|
|
ace->access_mask, new_flags);
|
|
|
|
DEBUG(5, ("se_create_child_secdesc(): %s:%d/0x%02x/0x%08x "
|
|
" inherited as %s:%d/0x%02x/0x%08x\n",
|
|
sid_string_dbg(&ace->trustee),
|
|
ace->type, ace->flags, ace->access_mask,
|
|
sid_string_dbg(&ace->trustee),
|
|
new_ace->type, new_ace->flags,
|
|
new_ace->access_mask));
|
|
|
|
new_ace_list_ndx++;
|
|
}
|
|
|
|
/* Create child security descriptor to return */
|
|
|
|
new_dacl = make_sec_acl(ctx,
|
|
NT4_ACL_REVISION,
|
|
new_ace_list_ndx,
|
|
new_ace_list);
|
|
|
|
if (!new_dacl) {
|
|
return NT_STATUS_NO_MEMORY;
|
|
}
|
|
*ppsd = make_sec_desc(ctx,
|
|
SECURITY_DESCRIPTOR_REVISION_1,
|
|
SEC_DESC_SELF_RELATIVE|SEC_DESC_DACL_PRESENT|
|
|
SEC_DESC_DACL_DEFAULTED,
|
|
owner_sid,
|
|
group_sid,
|
|
NULL,
|
|
new_dacl,
|
|
psize);
|
|
if (!*ppsd) {
|
|
return NT_STATUS_NO_MEMORY;
|
|
}
|
|
return NT_STATUS_OK;
|
|
}
|
|
|
|
NTSTATUS se_create_child_secdesc_buf(TALLOC_CTX *ctx,
|
|
SEC_DESC_BUF **ppsdb,
|
|
const SEC_DESC *parent_ctr,
|
|
bool container)
|
|
{
|
|
NTSTATUS status;
|
|
size_t size = 0;
|
|
SEC_DESC *sd = NULL;
|
|
|
|
*ppsdb = NULL;
|
|
status = se_create_child_secdesc(ctx,
|
|
&sd,
|
|
&size,
|
|
parent_ctr,
|
|
parent_ctr->owner_sid,
|
|
parent_ctr->group_sid,
|
|
container);
|
|
if (!NT_STATUS_IS_OK(status)) {
|
|
return status;
|
|
}
|
|
|
|
*ppsdb = make_sec_desc_buf(ctx, size, sd);
|
|
if (!*ppsdb) {
|
|
return NT_STATUS_NO_MEMORY;
|
|
}
|
|
return NT_STATUS_OK;
|
|
}
|