2010-05-25 01:27:57 +04:00
/*
* Unix SMB / CIFS implementation .
* Registry helper routines
* Copyright ( C ) Michael Adam 2007
*
* 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"
2010-05-25 01:37:09 +04:00
# include "reg_util_token.h"
2010-10-12 08:27:50 +04:00
# include "../libcli/security/security.h"
2010-05-25 01:27:57 +04:00
/*
* create a fake token just with enough rights to
* locally access the registry :
*
* - builtin administrators sid
* - disk operators privilege
*/
NTSTATUS registry_create_admin_token ( TALLOC_CTX * mem_ctx ,
2010-08-26 16:08:22 +04:00
struct security_token * * ptoken )
2010-05-25 01:27:57 +04:00
{
NTSTATUS status ;
2010-08-26 16:08:22 +04:00
struct security_token * token = NULL ;
2010-05-25 01:27:57 +04:00
if ( ptoken = = NULL ) {
return NT_STATUS_INVALID_PARAMETER ;
}
2011-06-07 05:44:43 +04:00
token = talloc_zero ( mem_ctx , struct security_token ) ;
2010-05-25 01:27:57 +04:00
if ( token = = NULL ) {
DEBUG ( 1 , ( " talloc failed \n " ) ) ;
status = NT_STATUS_NO_MEMORY ;
goto done ;
}
2010-08-30 06:47:29 +04:00
security_token_set_privilege ( token , SEC_PRIV_DISK_OPERATOR ) ;
2010-05-25 01:27:57 +04:00
status = add_sid_to_array ( token , & global_sid_Builtin_Administrators ,
2010-08-31 03:32:52 +04:00
& token - > sids , & token - > num_sids ) ;
2010-05-25 01:27:57 +04:00
if ( ! NT_STATUS_IS_OK ( status ) ) {
DEBUG ( 1 , ( " Error adding builtin administrators sid "
" to fake token. \n " ) ) ;
goto done ;
}
* ptoken = token ;
done :
return status ;
}