AccessCheckAndAuditAlarm
The AccessCheckAndAuditAlarm function determines whether a security descriptor grants a specified set of access rights to the client being impersonated by the calling thread. If the security descriptor has a SACL with ACEs that apply to the client, the function generates any necessary audit messages in the security event log.
Alarms are not currently supported.
BOOL AccessCheckAndAuditAlarm(
LPCTSTR SubsystemName, // subsystem name
LPVOID HandleId, // handle to object
LPTSTR ObjectTypeName, // type of object
LPTSTR ObjectName, // name of object
PSECURITY_DESCRIPTOR SecurityDescriptor, // SD
DWORD DesiredAccess, // requested access rights
PGENERIC_MAPPING GenericMapping, // mapping
BOOL ObjectCreation, // creation status
LPDWORD GrantedAccess, // granted access rights
LPBOOL AccessStatus // result of access check
LPBOOL pfGenerateOnClose // audit generation option
);
Parameters
- SubsystemName
- [in] Pointer to a null-terminated string specifying the name of the subsystem calling the function. This string appears in any audit message that the function generates.
- HandleId
- [in] Pointer to a unique value representing the client's handle to the object. If the access is denied, the system ignores this value.
- ObjectTypeName
- [in] Pointer to a null-terminated string specifying the type of object being created or accessed. This string appears in any audit message that the function generates.
- ObjectName
- [in] Pointer to a null-terminated string specifying the name of the object being created or accessed. This string appears in any audit message that the function generates.
- SecurityDescriptor
- [in] Pointer to the SECURITY_DESCRIPTOR structure against which access is checked. This function requires an absolute security descriptor. To convert a self-relative security descriptor, use the MakeAbsoluteSD function.
- DesiredAccess
- [in] Access mask that specifies the access rights to check. This mask must have been mapped by the MapGenericMask function to contain no generic access rights.
If this parameter is MAXIMUM_ALLOWED, the function sets the GrantedAccess access mask to indicate the maximum access rights the security descriptor allows the client.
- GenericMapping
- [in] Pointer to the GENERIC_MAPPING structure associated with the object for which access is being checked.
- ObjectCreation
- [in] Specifies a flag that determines whether the calling application will create a new object when access is granted. A value of TRUE indicates the application will create a new object. A value of FALSE indicates the application will open an existing object.
- GrantedAccess
- [out] Pointer to an access mask that receives the granted access rights. If AccessStatus is set to FALSE, the function sets the access mask to zero. If the function fails, it does not set the access mask.
- AccessStatus
- [out] Pointer to a variable that receives the results of the access check. If the security descriptor allows the requested access rights to the client, AccessStatus is set to TRUE. Otherwise, AccessStatus is set to FALSE.
- pfGenerateOnClose
- [out] Pointer to a flag set by the audit-generation routine when the function returns. Pass this flag to the ObjectCloseAuditAlarm function when the object handle is closed.
Return Values
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero. To get extended error information, call GetLastError.
Remarks
The AccessCheckAndAuditAlarm function requires the calling process to have the SE_AUDIT_NAME privilege enabled. The test for this privilege is performed against the primary token of the calling process, not the impersonation token of the thread.
The AccessCheckAndAuditAlarm function fails if the calling thread is not impersonating a client.
Windows NT/2000: Requires Windows NT 3.1 or later.
Header: Declared in Winbase.h; include Windows.h.
Library: Use Advapi32.lib.
Unicode: Implemented as Unicode and ANSI versions on Windows NT/2000.
See Also
Client/Server Access Control Overview, Client/Server Access Control Functions, AccessCheck, GENERIC_MAPPING, MakeAbsoluteSD, MapGenericMask, ObjectCloseAuditAlarm, ObjectOpenAuditAlarm, ObjectPrivilegeAuditAlarm, PrivilegeCheck, PrivilegedServiceAuditAlarm, SECURITY_DESCRIPTOR