|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| No
| Win32s
| No
| Import Library
| -
| Header File
| winnt.h
| Unicode
| No
| Platform Notes
| None
|
|
|
ACL
The ACL structure is the header of an access-control list (ACL). A complete ACL
consists of an ACL structure followed by an ordered list of zero or more access-control entries
(ACEs).
typedef struct _ACL { // acl
BYTE AclRevision;
BYTE Sbz1;
WORD AclSize;
WORD AceCount;
WORD Sbz2;
} ACL;
Members
AclRevision
Specifies the ACL's revision level. This value should be ACL_REVISION. All
ACEs in an ACL must be at the same revision level.
Sbz1
Specifies a zero byte of padding that aligns the AclRevision member on a 16-bit boundary.
AclSize
Specifies the size, in bytes, of the ACL. This value includes both the ACL structure and all the ACEs.
AceCount
Specifies the number of ACEs stored in the ACL.
Sbz2
Specifies two zero bytes of padding that align the ACL structure on a 32-bit boundary.
Remarks
An ACL includes a sequential list of zero or more ACEs. The individual ACEs in
an ACL are numbered from 0 to n, where n+1 is the number of ACEs in the ACL. When editing an ACL, an application
refers to an ACE within the ACL by its index.
There are two types of ACL: discretionary and system.
A discretionary ACL is controlled by the owner of an object or anyone granted
WRITE_DAC access to the object. It specifies the access particular users and
groups can have to an object. For example, the owner of a file can use a
discretionary ACL to control which users and groups can and cannot have access to the
file.
An object may also have system-level security information associated with it,
in the form of a system ACL controlled by a system administrator. A system ACL
can allow the system administrator to audit any attempts to gain access to an
object.
Three ACE structures are currently defined:
ACE structure
| Description
| ACCESS_ALLOWED_ACE
| Grants specified rights to a user or group. This ACE is stored in a
discretionary ACL.
| ACCESS_DENIED_ACE
| Denies specified rights to a user or group. This ACE is stored in a
discretionary ACL.
| SYSTEM_AUDIT_ACE
| Specifies what types of access will cause system-level audits. This ACE is
stored in a system ACL.
|
A fourth ACE structure, SYSTEM_ALARM_ACE, is not currently supported by Windows NT.
The ACL structure is to be treated as though it were opaque and applications are not
to attempt to work with its members directly. To ensure that ACLs are
semantically correct, applications can use the functions listed in the SeeAlso section to create and manipulate ACLs.
Each ACL and ACE structure begins on a doubleword boundary.
See Also
AddAce, DeleteAce, GetAclInformation, GetSecurityDescriptorDacl, GetSecurityDescriptorSacl, InitializeAcl, IsValidAcl, SetAclInformation, SetSecurityDescriptorDacl, SetSecurityDescriptorSacl
| Last news from Greatis Software |
 |
|
Nostalgia .Net |
|
.Net is powerful, but not all-powerful, so sometimes we need to use Win32 API for our .Net applications. It's simple enough with Platform Invoke if you have Win32 skill, but we do not always have time to dig the ancient documentation, declare the special types that are compatible with Win32, find the values of the Win32's constants and so on. Nostalgia .Net offers several simple-to-use classes, and components that will allow you to forget about the headache of Win32 and just use the power of Win32 in your application the same way as you use the native. Net classes. More » |
| Recommended software for developers |
 |
|
Ultimate Pack |
|
Component pack for Delphi and C++ Builder that contains runtime form designer, runtime object inspector, print suite and much more for the very special price. More » |
 |
|
Form Designer .Net |
|
Unique runtime form design solution that allows to edit any form in .Net WinForms application at runtime with full source codes for only 300 euro! More » |
 |
|
Print Suite .Net |
|
Print Suite .Net is a set of components for easy printing texts, images and grids from your WinForms applications. Full C# source codes are available More » |
 |
|
Gradient Controls .Net |
|
Gradient Controls .Net offers controls with gradient background feature. Labels, panels and so on... Full C# source codes are available More » |
 |
|
Greatis iGrid |
|
iGrid plots drawing grid right over your desktop, so you can use it everywhere, with any drawing application without any special plugins for different graphic editors. More » |
All the contacts and projectsDmitry Vasiliev (just.dmitry)
Related LinksSoftware for Visual Studio .NET developers Software for Delphi and C++ Builder developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference Win32 Multimedia Programmer's Reference OLE Programmer's Reference Microsoft Windows Pen API Programmer's Reference Microsoft Windows Sockets 2 Reference Microsoft Windows Telephony API (TAPI) Programmer's Reference Unix Manual Pages
|