mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
47955b2f6c
Also tidied up some of Richard's code (I don't think he uses the compiler
flags -g -Wall -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-qual like
I do :-) :-).
Jeremy.
(This used to be commit 10024ed06e
)
145 lines
4.2 KiB
C
145 lines
4.2 KiB
C
/*
|
|
Unix SMB/CIFS implementation.
|
|
Samba utility functions
|
|
Copyright (C) Andrew Tridgell 1992-1999
|
|
Copyright (C) Luke Kenneth Casson Leighton 1996 - 1999
|
|
|
|
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 02139, USA.
|
|
*/
|
|
|
|
#include "includes.h"
|
|
#include "rpcclient.h"
|
|
|
|
/****************************************************************************
|
|
convert a security permissions into a string
|
|
****************************************************************************/
|
|
char *get_sec_mask_str(uint32 type)
|
|
{
|
|
static fstring typestr="";
|
|
|
|
typestr[0] = 0;
|
|
|
|
if (type & GENERIC_ALL_ACCESS)
|
|
fstrcat(typestr, "Generic all access ");
|
|
if (type & GENERIC_EXECUTE_ACCESS)
|
|
fstrcat(typestr, "Generic execute access ");
|
|
if (type & GENERIC_WRITE_ACCESS)
|
|
fstrcat(typestr, "Generic write access ");
|
|
if (type & GENERIC_READ_ACCESS)
|
|
fstrcat(typestr, "Generic read access ");
|
|
if (type & MAXIMUM_ALLOWED_ACCESS)
|
|
fstrcat(typestr, "MAXIMUM_ALLOWED_ACCESS ");
|
|
if (type & SYSTEM_SECURITY_ACCESS)
|
|
fstrcat(typestr, "SYSTEM_SECURITY_ACCESS ");
|
|
if (type & SYNCHRONIZE_ACCESS)
|
|
fstrcat(typestr, "SYNCHRONIZE_ACCESS ");
|
|
if (type & WRITE_OWNER_ACCESS)
|
|
fstrcat(typestr, "WRITE_OWNER_ACCESS ");
|
|
if (type & WRITE_DAC_ACCESS)
|
|
fstrcat(typestr, "WRITE_DAC_ACCESS ");
|
|
if (type & READ_CONTROL_ACCESS)
|
|
fstrcat(typestr, "READ_CONTROL_ACCESS ");
|
|
if (type & DELETE_ACCESS)
|
|
fstrcat(typestr, "DELETE_ACCESS ");
|
|
|
|
printf("\t\tSpecific bits: 0x%lx\n", (unsigned long)type&SPECIFIC_RIGHTS_MASK);
|
|
|
|
return typestr;
|
|
}
|
|
|
|
/****************************************************************************
|
|
display sec_access structure
|
|
****************************************************************************/
|
|
void display_sec_access(SEC_ACCESS *info)
|
|
{
|
|
printf("\t\tPermissions: 0x%x: %s\n", info->mask, get_sec_mask_str(info->mask));
|
|
}
|
|
|
|
/****************************************************************************
|
|
display sec_ace structure
|
|
****************************************************************************/
|
|
void display_sec_ace(SEC_ACE *ace)
|
|
{
|
|
fstring sid_str;
|
|
|
|
printf("\tACE\n\t\ttype: ");
|
|
switch (ace->type) {
|
|
case SEC_ACE_TYPE_ACCESS_ALLOWED:
|
|
printf("ACCESS ALLOWED");
|
|
break;
|
|
case SEC_ACE_TYPE_ACCESS_DENIED:
|
|
printf("ACCESS DENIED");
|
|
break;
|
|
case SEC_ACE_TYPE_SYSTEM_AUDIT:
|
|
printf("SYSTEM AUDIT");
|
|
break;
|
|
case SEC_ACE_TYPE_SYSTEM_ALARM:
|
|
printf("SYSTEM ALARM");
|
|
break;
|
|
default:
|
|
printf("????");
|
|
break;
|
|
}
|
|
printf(" (%d) flags: %d\n", ace->type, ace->flags);
|
|
display_sec_access(&ace->info);
|
|
sid_to_string(sid_str, &ace->trustee);
|
|
printf("\t\tSID: %s\n\n", sid_str);
|
|
}
|
|
|
|
/****************************************************************************
|
|
display sec_acl structure
|
|
****************************************************************************/
|
|
void display_sec_acl(SEC_ACL *sec_acl)
|
|
{
|
|
int i;
|
|
|
|
printf("\tACL\tNum ACEs:\t%d\trevision:\t%x\n",
|
|
sec_acl->num_aces, sec_acl->revision);
|
|
printf("\t---\n");
|
|
|
|
if (sec_acl->size != 0 && sec_acl->num_aces != 0)
|
|
for (i = 0; i < sec_acl->num_aces; i++)
|
|
display_sec_ace(&sec_acl->ace[i]);
|
|
|
|
}
|
|
|
|
/****************************************************************************
|
|
display sec_desc structure
|
|
****************************************************************************/
|
|
void display_sec_desc(SEC_DESC *sec)
|
|
{
|
|
fstring sid_str;
|
|
|
|
if (sec->sacl) {
|
|
printf("SACL\n");
|
|
display_sec_acl(sec->sacl);
|
|
}
|
|
|
|
if (sec->dacl) {
|
|
printf("DACL\n");
|
|
display_sec_acl(sec->dacl);
|
|
}
|
|
|
|
if (sec->owner_sid) {
|
|
sid_to_string(sid_str, sec->owner_sid);
|
|
printf("\tOwner SID:\t%s\n", sid_str);
|
|
}
|
|
|
|
if (sec->grp_sid) {
|
|
sid_to_string(sid_str, sec->grp_sid);
|
|
printf("\tParent SID:\t%s\n", sid_str);
|
|
}
|
|
}
|