libads/disp_sec.c

ソースコードを見る。

データ構造

struct  perm_mask_str

関数

static void ads_disp_perms (uint32 type)
static void ads_disp_ace (SEC_ACE *sec_ace)
static void ads_disp_acl (SEC_ACL *sec_acl, const char *type)
void ads_disp_sd (SEC_DESC *sd)

変数

static struct perm_mask_str perms []


関数

static void ads_disp_perms ( uint32  type  )  [static]

disp_sec.c53 行で定義されています。

参照先 permsprintf()perm_mask_str::str.

参照元 ads_disp_ace().

00054 {
00055         int i = 0;
00056         int j = 0;
00057 
00058         printf("Permissions: ");
00059         
00060         if (type == SEC_RIGHTS_FULL_CTRL) {
00061                 printf("%s\n", perms[j].str);
00062                 return;
00063         }
00064 
00065         for (i = 0; i < 32; i++) {
00066                 if (type & (1 << i)) {
00067                         for (j = 1; perms[j].str; j ++) {
00068                                 if (perms[j].mask == (((unsigned) 1) << i)) {
00069                                         printf("\n\t%s", perms[j].str);
00070                                 }       
00071                         }
00072                         type &= ~(1 << i);
00073                 }
00074         }
00075 
00076         /* remaining bits get added on as-is */
00077         if (type != 0) {
00078                 printf("[%08x]", type);
00079         }
00080         puts("");
00081 }

static void ads_disp_ace ( SEC_ACE sec_ace  )  [static]

disp_sec.c84 行で定義されています。

参照先 security_ace_info::access_maskads_disp_perms()security_ace_info::flagssecurity_ace_info::obj_flagsprintf()sec_ace_object()SEC_ACE_TYPE_ACCESS_ALLOWEDSEC_ACE_TYPE_ACCESS_ALLOWED_OBJECTSEC_ACE_TYPE_ACCESS_DENIEDSEC_ACE_TYPE_ACCESS_DENIED_OBJECTSEC_ACE_TYPE_SYSTEM_AUDITSEC_ACE_TYPE_SYSTEM_AUDIT_OBJECTsid_string_static()security_ace_info::sizesecurity_ace_info::trusteesecurity_ace_info::type.

参照元 ads_disp_sd().

00085 {
00086         const char *access_type = "UNKNOWN";
00087 
00088         if (!sec_ace_object(sec_ace->type)) {
00089                 printf("------- ACE (type: 0x%02x, flags: 0x%02x, size: 0x%02x, mask: 0x%x)\n", 
00090                   sec_ace->type,
00091                   sec_ace->flags,
00092                   sec_ace->size,
00093                   sec_ace->access_mask);                        
00094         } else {
00095                 printf("------- ACE (type: 0x%02x, flags: 0x%02x, size: 0x%02x, mask: 0x%x, object flags: 0x%x)\n", 
00096                   sec_ace->type,
00097                   sec_ace->flags,
00098                   sec_ace->size,
00099                   sec_ace->access_mask,
00100                   sec_ace->obj_flags);
00101         }
00102         
00103         if (sec_ace->type == SEC_ACE_TYPE_ACCESS_ALLOWED) {
00104                 access_type = "ALLOWED";
00105         } else if (sec_ace->type == SEC_ACE_TYPE_ACCESS_DENIED) {
00106                 access_type = "DENIED";
00107         } else if (sec_ace->type == SEC_ACE_TYPE_SYSTEM_AUDIT) {
00108                 access_type = "SYSTEM AUDIT";
00109         } else if (sec_ace->type == SEC_ACE_TYPE_ACCESS_ALLOWED_OBJECT) {
00110                 access_type = "ALLOWED OBJECT";
00111         } else if (sec_ace->type == SEC_ACE_TYPE_ACCESS_DENIED_OBJECT) {
00112                 access_type = "DENIED OBJECT";
00113         } else if (sec_ace->type == SEC_ACE_TYPE_SYSTEM_AUDIT_OBJECT) {
00114                 access_type = "AUDIT OBJECT";
00115         }
00116 
00117         printf("access SID:  %s\naccess type: %s\n", 
00118                sid_string_static(&sec_ace->trustee), access_type);
00119 
00120         ads_disp_perms(sec_ace->access_mask);
00121 }

static void ads_disp_acl ( SEC_ACL sec_acl,
const char *  type 
) [static]

disp_sec.c124 行で定義されています。

参照先 security_acl_info::num_acesprintf()security_acl_info::revisionsecurity_acl_info::size.

参照元 ads_disp_sd().

00125 {
00126         if (!sec_acl)
00127                 printf("------- (%s) ACL not present\n", type);
00128         else {
00129                 printf("------- (%s) ACL (revision: %d, size: %d, number of ACEs: %d)\n", 
00130                        type,
00131                        sec_acl->revision,
00132                        sec_acl->size,
00133                        sec_acl->num_aces);                      
00134         }
00135 }

void ads_disp_sd ( SEC_DESC sd  ) 

disp_sec.c138 行で定義されています。

参照先 security_acl_info::acesads_disp_ace()ads_disp_acl()security_descriptor_info::daclsecurity_descriptor_info::group_sidsecurity_acl_info::num_acessecurity_descriptor_info::owner_sidprintf()security_descriptor_info::revisionsecurity_descriptor_info::saclsid_string_static()security_descriptor_info::type.

参照元 dump_sd().

00139 {
00140         int i;
00141         
00142         printf("-------------- Security Descriptor (revision: %d, type: 0x%02x)\n", 
00143                sd->revision,
00144                sd->type);
00145         printf("owner SID: %s\n", sid_string_static(sd->owner_sid));
00146         printf("group SID: %s\n", sid_string_static(sd->group_sid));
00147 
00148         ads_disp_acl(sd->sacl, "system");
00149         for (i = 0; i < sd->sacl->num_aces; i ++)
00150                 ads_disp_ace(&sd->sacl->aces[i]);
00151         
00152         ads_disp_acl(sd->dacl, "user");
00153         for (i = 0; i < sd->dacl->num_aces; i ++)
00154                 ads_disp_ace(&sd->dacl->aces[i]);
00155 
00156         printf("-------------- End Of Security Descriptor\n");
00157 }


変数

struct perm_mask_str perms[] [static]

参照元 ads_disp_perms()call_nt_transact_create()chmod_acl_internals()cli_NetFileEnum()cli_NetFileGetInfo()cmd_getfacl()marshall_posix_acl()reply_ntcreate_and_X()rpc_share_add_internals()sys_acl_to_text().


Sambaに対してSat Aug 29 21:23:41 2009に生成されました。  doxygen 1.4.7