// ntifs.h
typedef struct _QUERY_ON_CREATE_SECURITY_INFORMATION {
ULONG Reserved;
ULONG SecurityDescriptorSize;
PSECURITY_DESCRIPTOR SecurityDescriptor;
} QUERY_ON_CREATE_SECURITY_INFORMATION, *PQUERY_ON_CREATE_SECURITY_INFORMATION;
View the official Windows Driver Kit DDI referenceNo description available.
The QUERY_ON_CREATE_SECURITY_INFORMATION structure is used to write file information when FltRequestSecurityInfoOnCreateCompletion is called in pre-create.
ReservedThis is undefined and reserved for future use.
SecurityDescriptorSizeSize, in bytes, of the SecurityDescriptor buffer.
SecurityDescriptorPointer to a buffer that receives a copy of the security descriptor for the specified object. The SECURITY_DESCRIPTOR structure is returned in self-relative format.
The system allocates this structure and the file system fills in the requested information, if supported, while it processes a file create. Filter Manager will eventually free the allocated structure.
FltRequestFileInfoOnCreateCompletion
FltRetrieveFileInfoOnCreateCompletionEx