2 Unix SMB/CIFS implementation.
3 Samba utility functions. ADS stuff
4 Copyright (C) Alexey Kotovich 2002
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 static struct perm_mask_str
{
27 {SEC_RIGHTS_FULL_CTRL
, "[Full Control]"},
29 {SEC_RIGHTS_LIST_CONTENTS
, "[List Contents]"},
30 {SEC_RIGHTS_LIST_OBJECT
, "[List Object]"},
32 {SEC_RIGHTS_READ_ALL_PROP
, "[Read All Properties]"},
33 {SEC_RIGHTS_READ_PERMS
, "[Read Permissions]"},
35 {SEC_RIGHTS_WRITE_ALL_VALID
, "[All validate writes]"},
36 {SEC_RIGHTS_WRITE_ALL_PROP
, "[Write All Properties]"},
38 {SEC_RIGHTS_MODIFY_PERMS
, "[Modify Permissions]"},
39 {SEC_RIGHTS_MODIFY_OWNER
, "[Modify Owner]"},
41 {SEC_RIGHTS_CREATE_CHILD
, "[Create All Child Objects]"},
43 {SEC_RIGHTS_DELETE
, "[Delete]"},
44 {SEC_RIGHTS_DELETE_SUBTREE
, "[Delete Subtree]"},
45 {SEC_RIGHTS_DELETE_CHILD
, "[Delete All Child Objects]"},
47 {SEC_RIGHTS_CHANGE_PASSWD
, "[Change Password]"},
48 {SEC_RIGHTS_RESET_PASSWD
, "[Reset Password]"},
52 /* convert a security permissions into a string */
53 static void ads_disp_perms(uint32 type
)
58 printf("Permissions: ");
60 if (type
== SEC_RIGHTS_FULL_CTRL
) {
61 printf("%s\n", perms
[j
].str
);
65 for (i
= 0; i
< 32; i
++) {
66 if (type
& (1 << i
)) {
67 for (j
= 1; perms
[j
].str
; j
++) {
68 if (perms
[j
].mask
== (((unsigned) 1) << i
)) {
69 printf("\n\t%s", perms
[j
].str
);
76 /* remaining bits get added on as-is */
78 printf("[%08x]", type
);
84 static void ads_disp_ace(SEC_ACE
*sec_ace
)
86 const char *access_type
= "UNKNOWN";
88 if (!sec_ace_object(sec_ace
->type
)) {
89 printf("------- ACE (type: 0x%02x, flags: 0x%02x, size: 0x%02x, mask: 0x%x)\n",
93 sec_ace
->access_mask
);
95 printf("------- ACE (type: 0x%02x, flags: 0x%02x, size: 0x%02x, mask: 0x%x, object flags: 0x%x)\n",
103 if (sec_ace
->type
== SEC_ACE_TYPE_ACCESS_ALLOWED
) {
104 access_type
= "ALLOWED";
105 } else if (sec_ace
->type
== SEC_ACE_TYPE_ACCESS_DENIED
) {
106 access_type
= "DENIED";
107 } else if (sec_ace
->type
== SEC_ACE_TYPE_SYSTEM_AUDIT
) {
108 access_type
= "SYSTEM AUDIT";
109 } else if (sec_ace
->type
== SEC_ACE_TYPE_ACCESS_ALLOWED_OBJECT
) {
110 access_type
= "ALLOWED OBJECT";
111 } else if (sec_ace
->type
== SEC_ACE_TYPE_ACCESS_DENIED_OBJECT
) {
112 access_type
= "DENIED OBJECT";
113 } else if (sec_ace
->type
== SEC_ACE_TYPE_SYSTEM_AUDIT_OBJECT
) {
114 access_type
= "AUDIT OBJECT";
117 printf("access SID: %s\naccess type: %s\n",
118 sid_string_static(&sec_ace
->trustee
), access_type
);
120 ads_disp_perms(sec_ace
->access_mask
);
124 static void ads_disp_acl(SEC_ACL
*sec_acl
, const char *type
)
127 printf("------- (%s) ACL not present\n", type
);
129 printf("------- (%s) ACL (revision: %d, size: %d, number of ACEs: %d)\n",
138 void ads_disp_sd(SEC_DESC
*sd
)
142 printf("-------------- Security Descriptor (revision: %d, type: 0x%02x)\n",
145 printf("owner SID: %s\n", sid_string_static(sd
->owner_sid
));
146 printf("group SID: %s\n", sid_string_static(sd
->group_sid
));
148 ads_disp_acl(sd
->sacl
, "system");
149 for (i
= 0; i
< sd
->sacl
->num_aces
; i
++)
150 ads_disp_ace(&sd
->sacl
->aces
[i
]);
152 ads_disp_acl(sd
->dacl
, "user");
153 for (i
= 0; i
< sd
->dacl
->num_aces
; i
++)
154 ads_disp_ace(&sd
->dacl
->aces
[i
]);
156 printf("-------------- End Of Security Descriptor\n");