diff options
author | Stefan Metzmacher <metze@samba.org> | 2005-09-20 08:30:30 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:38:30 -0500 |
commit | 444fcf12ef6ba93bd591da124620feaa1d60b444 (patch) | |
tree | b085c5dbebe70e10768060b81c3b050c5f6b8e46 /source4/libads/disp_sec.c | |
parent | efa30b073fb1121f61034d9ad60d0a76f14b3cd9 (diff) | |
download | samba-444fcf12ef6ba93bd591da124620feaa1d60b444.tar.gz samba-444fcf12ef6ba93bd591da124620feaa1d60b444.tar.xz samba-444fcf12ef6ba93bd591da124620feaa1d60b444.zip |
r10341: remove unused libads/ code, we'll never use this in samba4,
and have replacements for the most stuff already in the tree
discussed with abartlet
metze
(This used to be commit 18facf90e965053886abd642c71bf655d13ff5a5)
Diffstat (limited to 'source4/libads/disp_sec.c')
-rw-r--r-- | source4/libads/disp_sec.c | 159 |
1 files changed, 0 insertions, 159 deletions
diff --git a/source4/libads/disp_sec.c b/source4/libads/disp_sec.c deleted file mode 100644 index 8cdef5e168..0000000000 --- a/source4/libads/disp_sec.c +++ /dev/null @@ -1,159 +0,0 @@ -/* - Unix SMB/CIFS implementation. - Samba utility functions. ADS stuff - Copyright (C) Alexey Kotovich 2002 - - 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" - -static struct perm_mask_str { - uint32_t mask; - const char *str; -} perms[] = { - {SEC_RIGHTS_FULL_CTRL, "[Full Control]"}, - - {SEC_RIGHTS_LIST_CONTENTS, "[List Contents]"}, - {SEC_RIGHTS_LIST_OBJECT, "[List Object]"}, - - {SEC_RIGHTS_READ_ALL_PROP, "[Read All Properties]"}, - {SEC_RIGHTS_READ_PERMS, "[Read Permissions]"}, - - {SEC_RIGHTS_WRITE_ALL_VALID, "[All validate writes]"}, - {SEC_RIGHTS_WRITE_ALL_PROP, "[Write All Properties]"}, - - {SEC_RIGHTS_MODIFY_PERMS, "[Modify Permissions]"}, - {SEC_RIGHTS_MODIFY_OWNER, "[Modify Owner]"}, - - {SEC_RIGHTS_CREATE_CHILD, "[Create All Child Objects]"}, - - {SEC_RIGHTS_DELETE, "[Delete]"}, - {SEC_RIGHTS_DELETE_SUBTREE, "[Delete Subtree]"}, - {SEC_RIGHTS_DELETE_CHILD, "[Delete All Child Objects]"}, - - {SEC_RIGHTS_CHANGE_PASSWD, "[Change Password]"}, - {SEC_RIGHTS_RESET_PASSWD, "[Reset Password]"}, - {0, 0} -}; - -/* convert a security permissions into a string */ -static void ads_disp_perms(uint32_t type) -{ - int i = 0; - int j = 0; - - printf("Permissions: "); - - if (type == SEC_RIGHTS_FULL_CTRL) { - printf("%s\n", perms[j].str); - return; - } - - for (i = 0; i < 32; i++) { - if (type & (1 << i)) { - for (j = 1; perms[j].str; j ++) { - if (perms[j].mask == (((uint_t) 1) << i)) { - printf("\n\t%s", perms[j].str); - } - } - type &= ~(1 << i); - } - } - - /* remaining bits get added on as-is */ - if (type != 0) { - printf("[%08x]", type); - } - puts(""); -} - -/* display ACE */ -static void ads_disp_ace(SEC_ACE *sec_ace) -{ - const char *access_type = "UNKNOWN"; - - if (!sec_ace_object(sec_ace->type)) { - printf("------- ACE (type: 0x%02x, flags: 0x%02x, size: 0x%02x, mask: 0x%x)\n", - sec_ace->type, - sec_ace->flags, - sec_ace->size, - sec_ace->info.mask); - } else { - printf("------- ACE (type: 0x%02x, flags: 0x%02x, size: 0x%02x, mask: 0x%x, object flags: 0x%x)\n", - sec_ace->type, - sec_ace->flags, - sec_ace->size, - sec_ace->info.mask, - sec_ace->obj_flags); - } - - if (sec_ace->type == SEC_ACE_TYPE_ACCESS_ALLOWED) { - access_type = "ALLOWED"; - } else if (sec_ace->type == SEC_ACE_TYPE_ACCESS_DENIED) { - access_type = "DENIED"; - } else if (sec_ace->type == SEC_ACE_TYPE_SYSTEM_AUDIT) { - access_type = "SYSTEM AUDIT"; - } else if (sec_ace->type == SEC_ACE_TYPE_ACCESS_ALLOWED_OBJECT) { - access_type = "ALLOWED OBJECT"; - } else if (sec_ace->type == SEC_ACE_TYPE_ACCESS_DENIED_OBJECT) { - access_type = "DENIED OBJECT"; - } else if (sec_ace->type == SEC_ACE_TYPE_SYSTEM_AUDIT_OBJECT) { - access_type = "AUDIT OBJECT"; - } - - printf("access SID: %s\naccess type: %s\n", - sid_string_static(&sec_ace->trustee), access_type); - - ads_disp_perms(sec_ace->info.mask); -} - -/* display ACL */ -static void ads_disp_acl(SEC_ACL *sec_acl, const char *type) -{ - if (!sec_acl) - printf("------- (%s) ACL not present\n", type); - else { - printf("------- (%s) ACL (revision: %d, size: %d, number of ACEs: %d)\n", - type, - sec_acl->revision, - sec_acl->size, - sec_acl->num_aces); - } -} - -/* display SD */ -void ads_disp_sd(SEC_DESC *sd) -{ - int i; - - printf("-------------- Security Descriptor (revision: %d, type: 0x%02x)\n", - sd->revision, - sd->type); - printf("owner SID: %s\n", sid_string_static(sd->owner_sid)); - printf("group SID: %s\n", sid_string_static(sd->grp_sid)); - - ads_disp_acl(sd->sacl, "system"); - for (i = 0; i < sd->sacl->num_aces; i ++) - ads_disp_ace(&sd->sacl->ace[i]); - - ads_disp_acl(sd->dacl, "user"); - for (i = 0; i < sd->dacl->num_aces; i ++) - ads_disp_ace(&sd->dacl->ace[i]); - - printf("-------------- End Of Security Descriptor\n"); -} - - |