0001-01-01 02:30:17 +02:30
/*
* Unix SMB / Netbios implementation .
* Version 1.9 .
* RPC Pipe client / server routines
0001-01-01 02:30:17 +02:30
* Copyright ( C ) Andrew Tridgell 1992 - 1998 ,
* Copyright ( C ) Jeremy R . Allison 1995 - 1998
* Copyright ( C ) Luke Kenneth Casson Leighton 1996 - 1998 ,
* Copyright ( C ) Paul Ashton 1997 - 1998.
0001-01-01 02:30:17 +02:30
*
* 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 2 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 , write to the Free Software
* Foundation , Inc . , 675 Mass Ave , Cambridge , MA 0213 9 , USA .
*/
# include "includes.h"
extern int DEBUGLEVEL ;
0001-01-01 02:30:17 +02:30
# define SD_HEADER_SIZE 0x14
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
/*******************************************************************
0001-01-01 02:30:17 +02:30
Sets up a SEC_ACCESS structure .
0001-01-01 02:30:17 +02:30
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
void init_sec_access ( SEC_ACCESS * t , uint32 mask )
0001-01-01 02:30:17 +02:30
{
t - > mask = mask ;
}
0001-01-01 02:30:17 +02:30
/*******************************************************************
0001-01-01 02:30:17 +02:30
Reads or writes a SEC_ACCESS structure .
0001-01-01 02:30:17 +02:30
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
BOOL sec_io_access ( char * desc , SEC_ACCESS * t , prs_struct * ps , int depth )
{
0001-01-01 02:30:17 +02:30
if ( t = = NULL )
return False ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
prs_debug ( ps , depth , desc , " sec_io_access " ) ;
0001-01-01 02:30:17 +02:30
depth + + ;
0001-01-01 02:30:17 +02:30
if ( ! prs_align ( ps ) )
return False ;
if ( ! prs_uint32 ( " mask " , ps , depth , & ( t - > mask ) ) )
return False ;
0001-01-01 02:30:17 +02:30
return True ;
0001-01-01 02:30:17 +02:30
}
/*******************************************************************
0001-01-01 02:30:17 +02:30
Sets up a SEC_ACE structure .
0001-01-01 02:30:17 +02:30
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
void init_sec_ace ( SEC_ACE * t , DOM_SID * sid , uint8 type , SEC_ACCESS mask , uint8 flag )
0001-01-01 02:30:17 +02:30
{
t - > type = type ;
t - > flags = flag ;
0001-01-01 02:30:17 +02:30
t - > size = sid_size ( sid ) + 8 ;
0001-01-01 02:30:17 +02:30
t - > info = mask ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
ZERO_STRUCTP ( & t - > sid ) ;
sid_copy ( & t - > sid , sid ) ;
0001-01-01 02:30:17 +02:30
}
/*******************************************************************
0001-01-01 02:30:17 +02:30
Reads or writes a SEC_ACE structure .
0001-01-01 02:30:17 +02:30
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
BOOL sec_io_ace ( char * desc , SEC_ACE * psa , prs_struct * ps , int depth )
0001-01-01 02:30:17 +02:30
{
uint32 old_offset ;
uint32 offset_ace_size ;
0001-01-01 02:30:17 +02:30
if ( psa = = NULL )
0001-01-01 02:30:17 +02:30
return False ;
0001-01-01 02:30:17 +02:30
prs_debug ( ps , depth , desc , " sec_io_ace " ) ;
depth + + ;
0001-01-01 02:30:17 +02:30
if ( ! prs_align ( ps ) )
return False ;
0001-01-01 02:30:17 +02:30
old_offset = prs_offset ( ps ) ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
if ( ! prs_uint8 ( " type " , ps , depth , & psa - > type ) )
return False ;
if ( ! prs_uint8 ( " flags " , ps , depth , & psa - > flags ) )
return False ;
if ( ! prs_uint16_pre ( " size " , ps , depth , & psa - > size , & offset_ace_size ) )
return False ;
if ( ! sec_io_access ( " info " , & psa - > info , ps , depth ) )
return False ;
if ( ! prs_align ( ps ) )
return False ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
if ( ! smb_io_dom_sid ( " sid " , & psa - > sid , ps , depth ) )
return False ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
if ( ! prs_uint16_post ( " size " , ps , depth , & psa - > size , offset_ace_size , old_offset ) )
return False ;
0001-01-01 02:30:17 +02:30
return True ;
0001-01-01 02:30:17 +02:30
}
/*******************************************************************
0001-01-01 02:30:17 +02:30
Create a SEC_ACL structure .
0001-01-01 02:30:17 +02:30
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
0001-01-01 02:30:17 +02:30
SEC_ACL * make_sec_acl ( uint16 revision , int num_aces , SEC_ACE * ace_list )
0001-01-01 02:30:17 +02:30
{
0001-01-01 02:30:17 +02:30
SEC_ACL * dst ;
0001-01-01 02:30:17 +02:30
int i ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
if ( ( dst = ( SEC_ACL * ) malloc ( sizeof ( SEC_ACL ) ) ) = = NULL )
return NULL ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
ZERO_STRUCTP ( dst ) ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
dst - > revision = revision ;
dst - > num_aces = num_aces ;
dst - > size = 8 ;
if ( ( dst - > ace = ( SEC_ACE * ) malloc ( sizeof ( SEC_ACE ) * num_aces ) ) = = NULL ) {
free_sec_acl ( & dst ) ;
return NULL ;
0001-01-01 02:30:17 +02:30
}
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
for ( i = 0 ; i < num_aces ; i + + ) {
dst - > ace [ i ] = ace_list [ i ] ; /* Structure copy. */
dst - > size + = ace_list [ i ] . size ;
}
return dst ;
0001-01-01 02:30:17 +02:30
}
/*******************************************************************
0001-01-01 02:30:17 +02:30
Duplicate a SEC_ACL structure .
0001-01-01 02:30:17 +02:30
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
SEC_ACL * dup_sec_acl ( SEC_ACL * src )
0001-01-01 02:30:17 +02:30
{
0001-01-01 02:30:17 +02:30
if ( src = = NULL )
return NULL ;
0001-01-01 02:30:17 +02:30
return make_sec_acl ( src - > revision , src - > num_aces , src - > ace ) ;
0001-01-01 02:30:17 +02:30
}
/*******************************************************************
0001-01-01 02:30:17 +02:30
Delete a SEC_ACL structure .
0001-01-01 02:30:17 +02:30
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
0001-01-01 02:30:17 +02:30
void free_sec_acl ( SEC_ACL * * ppsa )
0001-01-01 02:30:17 +02:30
{
0001-01-01 02:30:17 +02:30
SEC_ACL * psa ;
if ( ppsa = = NULL | | * ppsa = = NULL )
0001-01-01 02:30:17 +02:30
return ;
0001-01-01 02:30:17 +02:30
psa = * ppsa ;
if ( psa - > ace ! = NULL )
free ( psa - > ace ) ;
free ( psa ) ;
* ppsa = NULL ;
0001-01-01 02:30:17 +02:30
}
/*******************************************************************
0001-01-01 02:30:17 +02:30
Reads or writes a SEC_ACL structure .
0001-01-01 02:30:17 +02:30
First of the xx_io_xx functions that allocates its data structures
0001-01-01 02:30:17 +02:30
for you as it reads them .
0001-01-01 02:30:17 +02:30
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
BOOL sec_io_acl ( char * desc , SEC_ACL * * ppsa , prs_struct * ps , int depth )
0001-01-01 02:30:17 +02:30
{
0001-01-01 02:30:17 +02:30
int i ;
0001-01-01 02:30:17 +02:30
uint32 old_offset ;
uint32 offset_acl_size ;
0001-01-01 02:30:17 +02:30
SEC_ACL * psa ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
if ( ppsa = = NULL )
0001-01-01 02:30:17 +02:30
return False ;
0001-01-01 02:30:17 +02:30
psa = * ppsa ;
if ( UNMARSHALLING ( ps ) & & psa = = NULL ) {
/*
* This is a read and we must allocate the stuct to read into .
*/
if ( ( psa = ( SEC_ACL * ) malloc ( sizeof ( SEC_ACL ) ) ) = = NULL )
return False ;
ZERO_STRUCTP ( psa ) ;
* ppsa = psa ;
}
0001-01-01 02:30:17 +02:30
prs_debug ( ps , depth , desc , " sec_io_acl " ) ;
depth + + ;
0001-01-01 02:30:17 +02:30
if ( ! prs_align ( ps ) )
return False ;
0001-01-01 02:30:17 +02:30
old_offset = prs_offset ( ps ) ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
if ( ! prs_uint16 ( " revision " , ps , depth , & psa - > revision ) )
return False ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
if ( ! prs_uint16_pre ( " size " , ps , depth , & psa - > size , & offset_acl_size ) )
return False ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
if ( ! prs_uint32 ( " num_aces " , ps , depth , & psa - > num_aces ) )
0001-01-01 02:30:17 +02:30
return False ;
0001-01-01 02:30:17 +02:30
if ( UNMARSHALLING ( ps ) & & psa - > num_aces ! = 0 ) {
/* reading */
if ( ( psa - > ace = malloc ( sizeof ( psa - > ace [ 0 ] ) * psa - > num_aces ) ) = = NULL )
return False ;
ZERO_STRUCTP ( psa - > ace ) ;
0001-01-01 02:30:17 +02:30
}
0001-01-01 02:30:17 +02:30
for ( i = 0 ; i < psa - > num_aces ; i + + ) {
0001-01-01 02:30:17 +02:30
fstring tmp ;
0001-01-01 02:30:17 +02:30
slprintf ( tmp , sizeof ( tmp ) - 1 , " ace_list[%02d]: " , i ) ;
if ( ! sec_io_ace ( tmp , & psa - > ace [ i ] , ps , depth ) )
0001-01-01 02:30:17 +02:30
return False ;
0001-01-01 02:30:17 +02:30
}
0001-01-01 02:30:17 +02:30
if ( ! prs_align ( ps ) )
return False ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
if ( ! prs_uint16_post ( " size " , ps , depth , & psa - > size , offset_acl_size , old_offset ) )
return False ;
0001-01-01 02:30:17 +02:30
return True ;
0001-01-01 02:30:17 +02:30
}
0001-01-01 02:30:17 +02:30
/*******************************************************************
Works out the linearization size of a SEC_DESC .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
size_t sec_desc_size ( SEC_DESC * psd )
{
0001-01-01 02:30:17 +02:30
size_t offset ;
if ( ! psd ) return 0 ;
offset = SD_HEADER_SIZE ;
0001-01-01 02:30:17 +02:30
if ( psd - > owner_sid ! = NULL )
offset + = ( ( sid_size ( psd - > owner_sid ) + 3 ) & ~ 3 ) ;
if ( psd - > grp_sid ! = NULL )
offset + = ( ( sid_size ( psd - > grp_sid ) + 3 ) & ~ 3 ) ;
if ( psd - > sacl ! = NULL )
offset + = ( ( psd - > sacl - > size + 3 ) & ~ 3 ) ;
if ( psd - > dacl ! = NULL )
offset + = ( ( psd - > dacl - > size + 3 ) & ~ 3 ) ;
return offset ;
}
0001-01-01 02:30:17 +02:30
/*******************************************************************
0001-01-01 02:30:17 +02:30
Creates a SEC_DESC structure
0001-01-01 02:30:17 +02:30
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
0001-01-01 02:30:17 +02:30
SEC_DESC * make_sec_desc ( uint16 revision , uint16 type ,
DOM_SID * owner_sid , DOM_SID * grp_sid ,
0001-01-01 02:30:17 +02:30
SEC_ACL * sacl , SEC_ACL * dacl , size_t * sd_size )
0001-01-01 02:30:17 +02:30
{
0001-01-01 02:30:17 +02:30
SEC_DESC * dst ;
0001-01-01 02:30:17 +02:30
uint32 offset ;
0001-01-01 02:30:17 +02:30
* sd_size = 0 ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
if ( ( dst = ( SEC_DESC * ) malloc ( sizeof ( SEC_DESC ) ) ) = = NULL )
return NULL ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
ZERO_STRUCTP ( dst ) ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
dst - > revision = revision ;
dst - > type = type ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
dst - > off_owner_sid = 0 ;
dst - > off_grp_sid = 0 ;
dst - > off_sacl = 0 ;
dst - > off_dacl = 0 ;
if ( owner_sid & & ( ( dst - > owner_sid = sid_dup ( owner_sid ) ) = = NULL ) )
goto error_exit ;
if ( grp_sid & & ( ( dst - > grp_sid = sid_dup ( grp_sid ) ) = = NULL ) )
goto error_exit ;
if ( sacl & & ( ( dst - > sacl = dup_sec_acl ( sacl ) ) = = NULL ) )
goto error_exit ;
if ( dacl & & ( ( dst - > dacl = dup_sec_acl ( dacl ) ) = = NULL ) )
goto error_exit ;
0001-01-01 02:30:17 +02:30
offset = 0 ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
/*
* Work out the linearization sizes .
*/
if ( dst - > owner_sid ! = NULL ) {
0001-01-01 02:30:17 +02:30
if ( offset = = 0 )
0001-01-01 02:30:17 +02:30
offset = SD_HEADER_SIZE ;
dst - > off_owner_sid = offset ;
offset + = ( ( sid_size ( dst - > owner_sid ) + 3 ) & ~ 3 ) ;
0001-01-01 02:30:17 +02:30
}
0001-01-01 02:30:17 +02:30
if ( dst - > grp_sid ! = NULL ) {
0001-01-01 02:30:17 +02:30
if ( offset = = 0 )
0001-01-01 02:30:17 +02:30
offset = SD_HEADER_SIZE ;
dst - > off_grp_sid = offset ;
offset + = ( ( sid_size ( dst - > grp_sid ) + 3 ) & ~ 3 ) ;
0001-01-01 02:30:17 +02:30
}
0001-01-01 02:30:17 +02:30
if ( dst - > sacl ! = NULL ) {
0001-01-01 02:30:17 +02:30
if ( offset = = 0 )
0001-01-01 02:30:17 +02:30
offset = SD_HEADER_SIZE ;
dst - > off_sacl = offset ;
offset + = ( ( sacl - > size + 3 ) & ~ 3 ) ;
0001-01-01 02:30:17 +02:30
}
0001-01-01 02:30:17 +02:30
if ( dst - > dacl ! = NULL ) {
0001-01-01 02:30:17 +02:30
if ( offset = = 0 )
0001-01-01 02:30:17 +02:30
offset = SD_HEADER_SIZE ;
dst - > off_dacl = offset ;
offset + = ( ( dacl - > size + 3 ) & ~ 3 ) ;
0001-01-01 02:30:17 +02:30
}
0001-01-01 02:30:17 +02:30
* sd_size = ( size_t ) ( ( offset = = 0 ) ? SD_HEADER_SIZE : offset ) ;
0001-01-01 02:30:17 +02:30
return dst ;
error_exit :
0001-01-01 02:30:17 +02:30
* sd_size = 0 ;
0001-01-01 02:30:17 +02:30
free_sec_desc ( & dst ) ;
return NULL ;
0001-01-01 02:30:17 +02:30
}
0001-01-01 02:30:17 +02:30
/*******************************************************************
Duplicate a SEC_DESC structure .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
SEC_DESC * dup_sec_desc ( SEC_DESC * src )
{
size_t dummy ;
if ( src = = NULL )
return NULL ;
return make_sec_desc ( src - > revision , src - > type ,
src - > owner_sid , src - > grp_sid , src - > sacl ,
src - > dacl , & dummy ) ;
}
0001-01-01 02:30:17 +02:30
/*******************************************************************
0001-01-01 02:30:17 +02:30
Deletes a SEC_DESC structure
0001-01-01 02:30:17 +02:30
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
0001-01-01 02:30:17 +02:30
void free_sec_desc ( SEC_DESC * * ppsd )
0001-01-01 02:30:17 +02:30
{
0001-01-01 02:30:17 +02:30
SEC_DESC * psd ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
if ( ppsd = = NULL | | * ppsd = = NULL )
return ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
psd = * ppsd ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
free_sec_acl ( & psd - > dacl ) ;
free_sec_acl ( & psd - > dacl ) ;
free ( psd - > owner_sid ) ;
free ( psd - > grp_sid ) ;
free ( psd ) ;
* ppsd = NULL ;
}
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
/*******************************************************************
Creates a SEC_DESC structure with typical defaults .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
SEC_DESC * make_standard_sec_desc ( DOM_SID * owner_sid , DOM_SID * grp_sid ,
0001-01-01 02:30:17 +02:30
SEC_ACL * dacl , size_t * sd_size )
0001-01-01 02:30:17 +02:30
{
0001-01-01 02:30:17 +02:30
return make_sec_desc ( SEC_DESC_REVISION , SEC_DESC_SELF_RELATIVE | SEC_DESC_DACL_PRESENT ,
0001-01-01 02:30:17 +02:30
owner_sid , grp_sid , NULL , dacl , sd_size ) ;
0001-01-01 02:30:17 +02:30
}
0001-01-01 02:30:17 +02:30
/*******************************************************************
0001-01-01 02:30:17 +02:30
Reads or writes a SEC_DESC structure .
If reading and the * ppsd = NULL , allocates the structure .
0001-01-01 02:30:17 +02:30
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
0001-01-01 02:30:17 +02:30
BOOL sec_io_desc ( char * desc , SEC_DESC * * ppsd , prs_struct * ps , int depth )
0001-01-01 02:30:17 +02:30
{
0001-01-01 02:30:17 +02:30
uint32 old_offset ;
0001-01-01 02:30:17 +02:30
uint32 max_offset = 0 ; /* after we're done, move offset to end */
SEC_DESC * psd ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
if ( ppsd = = NULL )
0001-01-01 02:30:17 +02:30
return False ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
psd = * ppsd ;
0001-01-01 02:30:17 +02:30
if ( psd = = NULL ) {
if ( UNMARSHALLING ( ps ) ) {
if ( ( psd = ( SEC_DESC * ) malloc ( sizeof ( SEC_DESC ) ) ) = = NULL )
return False ;
ZERO_STRUCTP ( psd ) ;
* ppsd = psd ;
} else {
/* Marshalling - just ignore. */
return True ;
}
0001-01-01 02:30:17 +02:30
}
0001-01-01 02:30:17 +02:30
prs_debug ( ps , depth , desc , " sec_io_desc " ) ;
depth + + ;
0001-01-01 02:30:17 +02:30
if ( ! prs_align ( ps ) )
return False ;
0001-01-01 02:30:17 +02:30
/* start of security descriptor stored for back-calc offset purposes */
0001-01-01 02:30:17 +02:30
old_offset = prs_offset ( ps ) ;
0001-01-01 02:30:17 +02:30
if ( ! prs_uint16 ( " revision " , ps , depth , & psd - > revision ) )
return False ;
if ( ! prs_uint16 ( " type " , ps , depth , & psd - > type ) )
return False ;
if ( ! prs_uint32 ( " off_owner_sid " , ps , depth , & psd - > off_owner_sid ) )
return False ;
if ( ! prs_uint32 ( " off_grp_sid " , ps , depth , & psd - > off_grp_sid ) )
return False ;
if ( ! prs_uint32 ( " off_sacl " , ps , depth , & psd - > off_sacl ) )
return False ;
if ( ! prs_uint32 ( " off_dacl " , ps , depth , & psd - > off_dacl ) )
return False ;
0001-01-01 02:30:17 +02:30
max_offset = MAX ( max_offset , prs_offset ( ps ) ) ;
0001-01-01 02:30:17 +02:30
if ( psd - > off_owner_sid ! = 0 ) {
if ( UNMARSHALLING ( ps ) ) {
if ( ! prs_set_offset ( ps , old_offset + psd - > off_owner_sid ) )
return False ;
0001-01-01 02:30:17 +02:30
/* reading */
0001-01-01 02:30:17 +02:30
if ( ( psd - > owner_sid = malloc ( sizeof ( * psd - > owner_sid ) ) ) = = NULL )
return False ;
ZERO_STRUCTP ( psd - > owner_sid ) ;
0001-01-01 02:30:17 +02:30
}
0001-01-01 02:30:17 +02:30
if ( ! smb_io_dom_sid ( " owner_sid " , psd - > owner_sid , ps , depth ) )
0001-01-01 02:30:17 +02:30
return False ;
0001-01-01 02:30:17 +02:30
if ( ! prs_align ( ps ) )
0001-01-01 02:30:17 +02:30
return False ;
0001-01-01 02:30:17 +02:30
}
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
max_offset = MAX ( max_offset , prs_offset ( ps ) ) ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
if ( psd - > off_grp_sid ! = 0 ) {
if ( UNMARSHALLING ( ps ) ) {
0001-01-01 02:30:17 +02:30
/* reading */
0001-01-01 02:30:17 +02:30
if ( ! prs_set_offset ( ps , old_offset + psd - > off_grp_sid ) )
return False ;
if ( ( psd - > grp_sid = malloc ( sizeof ( * psd - > grp_sid ) ) ) = = NULL )
return False ;
ZERO_STRUCTP ( psd - > grp_sid ) ;
0001-01-01 02:30:17 +02:30
}
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
if ( ! smb_io_dom_sid ( " grp_sid " , psd - > grp_sid , ps , depth ) )
0001-01-01 02:30:17 +02:30
return False ;
0001-01-01 02:30:17 +02:30
if ( ! prs_align ( ps ) )
0001-01-01 02:30:17 +02:30
return False ;
0001-01-01 02:30:17 +02:30
}
0001-01-01 02:30:17 +02:30
max_offset = MAX ( max_offset , prs_offset ( ps ) ) ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
if ( ( psd - > type & SEC_DESC_SACL_PRESENT ) & & psd - > off_sacl ) {
0001-01-01 02:30:17 +02:30
if ( ! prs_set_offset ( ps , old_offset + psd - > off_sacl ) )
return False ;
if ( ! sec_io_acl ( " sacl " , & psd - > sacl , ps , depth ) )
return False ;
if ( ! prs_align ( ps ) )
0001-01-01 02:30:17 +02:30
return False ;
0001-01-01 02:30:17 +02:30
}
0001-01-01 02:30:17 +02:30
max_offset = MAX ( max_offset , prs_offset ( ps ) ) ;
0001-01-01 02:30:17 +02:30
if ( ( psd - > type & SEC_DESC_DACL_PRESENT ) & & psd - > off_dacl ! = 0 ) {
0001-01-01 02:30:17 +02:30
if ( ! prs_set_offset ( ps , old_offset + psd - > off_dacl ) )
return False ;
if ( ! sec_io_acl ( " dacl " , & psd - > dacl , ps , depth ) )
return False ;
if ( ! prs_align ( ps ) )
0001-01-01 02:30:17 +02:30
return False ;
}
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
max_offset = MAX ( max_offset , prs_offset ( ps ) ) ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
if ( ! prs_set_offset ( ps , max_offset ) )
return False ;
0001-01-01 02:30:17 +02:30
return True ;
0001-01-01 02:30:17 +02:30
}
0001-01-01 02:30:17 +02:30
/*******************************************************************
0001-01-01 02:30:17 +02:30
Creates a SEC_DESC_BUF structure .
0001-01-01 02:30:17 +02:30
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
0001-01-01 02:30:17 +02:30
SEC_DESC_BUF * make_sec_desc_buf ( size_t len , SEC_DESC * sec_desc )
0001-01-01 02:30:17 +02:30
{
0001-01-01 02:30:17 +02:30
SEC_DESC_BUF * dst ;
if ( ( dst = ( SEC_DESC_BUF * ) malloc ( sizeof ( SEC_DESC_BUF ) ) ) = = NULL )
return NULL ;
ZERO_STRUCTP ( dst ) ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
/* max buffer size (allocated size) */
0001-01-01 02:30:17 +02:30
dst - > max_len = ( uint32 ) len ;
dst - > len = ( uint32 ) len ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
if ( sec_desc & & ( ( dst - > sec = dup_sec_desc ( sec_desc ) ) = = NULL ) ) {
free_sec_desc_buf ( & dst ) ;
return NULL ;
}
return dst ;
0001-01-01 02:30:17 +02:30
}
/*******************************************************************
0001-01-01 02:30:17 +02:30
Duplicates a SEC_DESC_BUF structure .
0001-01-01 02:30:17 +02:30
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
0001-01-01 02:30:17 +02:30
SEC_DESC_BUF * dup_sec_desc_buf ( SEC_DESC_BUF * src )
0001-01-01 02:30:17 +02:30
{
0001-01-01 02:30:17 +02:30
if ( src = = NULL )
return NULL ;
return make_sec_desc_buf ( src - > len , src - > sec ) ;
}
/*******************************************************************
Deletes a SEC_DESC_BUF structure .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
void free_sec_desc_buf ( SEC_DESC_BUF * * ppsdb )
{
SEC_DESC_BUF * psdb ;
if ( ppsdb = = NULL | | * ppsdb = = NULL )
0001-01-01 02:30:17 +02:30
return ;
0001-01-01 02:30:17 +02:30
psdb = * ppsdb ;
free_sec_desc ( & psdb - > sec ) ;
free ( psdb ) ;
* ppsdb = NULL ;
0001-01-01 02:30:17 +02:30
}
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
/*******************************************************************
0001-01-01 02:30:17 +02:30
Reads or writes a SEC_DESC_BUF structure .
0001-01-01 02:30:17 +02:30
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
0001-01-01 02:30:17 +02:30
BOOL sec_io_desc_buf ( char * desc , SEC_DESC_BUF * * ppsdb , prs_struct * ps , int depth )
0001-01-01 02:30:17 +02:30
{
0001-01-01 02:30:17 +02:30
uint32 off_len ;
0001-01-01 02:30:17 +02:30
uint32 off_max_len ;
0001-01-01 02:30:17 +02:30
uint32 old_offset ;
0001-01-01 02:30:17 +02:30
uint32 size ;
0001-01-01 02:30:17 +02:30
SEC_DESC_BUF * psdb ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
if ( ppsdb = = NULL )
0001-01-01 02:30:17 +02:30
return False ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
psdb = * ppsdb ;
if ( UNMARSHALLING ( ps ) & & psdb = = NULL ) {
if ( ( psdb = ( SEC_DESC_BUF * ) malloc ( sizeof ( SEC_DESC_BUF ) ) ) = = NULL )
return False ;
ZERO_STRUCTP ( psdb ) ;
* ppsdb = psdb ;
}
0001-01-01 02:30:17 +02:30
prs_debug ( ps , depth , desc , " sec_io_desc_buf " ) ;
depth + + ;
0001-01-01 02:30:17 +02:30
if ( ! prs_align ( ps ) )
return False ;
if ( ! prs_uint32_pre ( " max_len " , ps , depth , & psdb - > max_len , & off_max_len ) )
return False ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
if ( ! prs_uint32 ( " undoc " , ps , depth , & psdb - > undoc ) )
return False ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
if ( ! prs_uint32_pre ( " len " , ps , depth , & psdb - > len , & off_len ) )
return False ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
old_offset = prs_offset ( ps ) ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
/* reading, length is non-zero; writing, descriptor is non-NULL */
0001-01-01 02:30:17 +02:30
if ( ( UNMARSHALLING ( ps ) & & psdb - > len ! = 0 ) | | ( MARSHALLING ( ps ) & & psdb - > sec ! = NULL ) ) {
0001-01-01 02:30:17 +02:30
if ( ! sec_io_desc ( " sec " , & psdb - > sec , ps , depth ) )
return False ;
0001-01-01 02:30:17 +02:30
}
0001-01-01 02:30:17 +02:30
if ( ! prs_align ( ps ) )
return False ;
size = prs_offset ( ps ) - old_offset ;
if ( ! prs_uint32_post ( " max_len " , ps , depth , & psdb - > max_len , off_max_len , size = = 0 ? psdb - > max_len : size ) )
return False ;
0001-01-01 02:30:17 +02:30
0001-01-01 02:30:17 +02:30
if ( ! prs_uint32_post ( " len " , ps , depth , & psdb - > len , off_len , size ) )
0001-01-01 02:30:17 +02:30
return False ;
0001-01-01 02:30:17 +02:30
return True ;
0001-01-01 02:30:17 +02:30
}