// ntifs.h
VOID SeOpenObjectAuditAlarm(
[in] PUNICODE_STRING ObjectTypeName,
[in, optional] PVOID Object,
[in, optional] PUNICODE_STRING AbsoluteObjectName,
[in] PSECURITY_DESCRIPTOR SecurityDescriptor,
[in] PACCESS_STATE AccessState,
[in] BOOLEAN ObjectCreated,
[in] BOOLEAN AccessGranted,
[in] KPROCESSOR_MODE AccessMode,
[out] PBOOLEAN GenerateOnClose
);
View the official Windows Driver Kit DDI reference
No description available.
The SeOpenObjectAuditAlarm routine generates audit and alarm messages when an attempt is made to open an object.
ObjectTypeName
[in]Pointer to a null-terminated string specifying the type of object to which the client is requesting access. This string appears in any audit message that is generated.
Object
[in, optional]Address of the object being opened. This value is needed only to enter into log messages. If the open attempt fails, the value of Object is ignored. Otherwise, it must be provided.
AbsoluteObjectName
[in, optional]Pointer to a null-terminated string specifying the name of the object being opened. This string appears in any audit message that is generated.
SecurityDescriptor
[in]A pointer to the security descriptor structure for the object being opened.
AccessState
[in]Pointer to an access state structure containing the object's subject context, remaining desired access types, granted access types, and, optionally, a privilege set to indicate which privileges were used to permit the access.
ObjectCreated
[in]Set to TRUE if the open operation causes a new object to be created, or FALSE if an existing object is opened.
AccessGranted
[in]Set to TRUE if open access was granted based on a previous access check or privilege check, or FALSE if it was denied.
AccessMode
[in]Access mode used for the access check. Either UserMode or KernelMode.
GenerateOnClose
[out]Pointer to a flag set by the audit generation routine when SeOpenObjectAuditAlarm returns.
SeOpenObjectAuditAlarm generates any necessary audit or alarm messages for user-mode accesses. No messages are generated for kernel-mode accesses.
Before calling SeOpenObjectAuditAlarm, the caller must call SeLockSubjectContext to lock the caller's primary and impersonation tokens. After calling SeOpenObjectAuditAlarm, the caller must call SeUnlockSubjectContext to release these tokens.
For more information about security and access control, see Windows security model for driver developers and the documentation on these topics in the Windows SDK.
SeOpenObjectForDeleteAuditAlarm
SeSetAccessStateGenericMapping