RtlValidRelativeSecurityDescriptor 函数 (wdm.h)
RtlValidRelativeSecurityDescriptor 例程检查自相对安全描述符的有效性。
语法
NTSYSAPI BOOLEAN RtlValidRelativeSecurityDescriptor(
[in] PSECURITY_DESCRIPTOR SecurityDescriptorInput,
[in] ULONG SecurityDescriptorLength,
[in] SECURITY_INFORMATION RequiredInformation
);
参数
[in] SecurityDescriptorInput
指向缓冲区的指针,该缓冲区包含自相对格式的安全描述符。 缓冲区必须以 SECURITY_DESCRIPTOR 结构开头,后跟安全描述符数据的其余部分。
[in] SecurityDescriptorLength
SecurityDescriptorInput 结构的大小。
[in] RequiredInformation
一个SECURITY_INFORMATION值,该值指定需要包含在安全描述符中的信息。
返回值
如果安全描述符有效且包含 RequiredInformation 参数指定的信息,则 RtlValidRelativeSecurityDescriptor 返回 TRUE。 否则,此例程返回 FALSE。
注解
若要以绝对格式检查安全描述符的有效性,请改用 RtlValidSecurityDescriptor。
要求
要求 | 值 |
---|---|
最低受支持的客户端 | 从 Windows 2000 开始可用。 |
目标平台 | 通用 |
标头 | wdm.h(包括 Wdm.h、Ntddk.h、Ntifs.h) |
Library | NtosKrnl.lib |
DLL | NtosKrnl.exe |
IRQL | <= APC_LEVEL |