[NTOSKRNL] Simplify buffer definition in MiQueryMemorySectionName().

Also take into account the UNICODE_STRING structure while computing whole size
This is based on Thomas' patch.

CORE-12043
This commit is contained in:
Pierre Schweitzer 2019-09-29 14:16:44 +02:00
parent ad547c960f
commit 3b78ca210e
No known key found for this signature in database
GPG key ID: 7545556C3D585B0B

View file

@ -1923,11 +1923,12 @@ MiQueryMemorySectionName(IN HANDLE ProcessHandle,
{
_SEH2_TRY
{
RtlInitUnicodeString(&SectionName->SectionFileName, SectionName->NameBuffer);
SectionName->SectionFileName.MaximumLength = (USHORT)MemoryInformationLength;
RtlInitEmptyUnicodeString(&SectionName->SectionFileName,
(PWSTR)(SectionName + 1),
MemoryInformationLength - sizeof(MEMORY_SECTION_NAME));
RtlCopyUnicodeString(&SectionName->SectionFileName, &ModuleFileName);
if (ReturnLength) *ReturnLength = ModuleFileName.Length;
if (ReturnLength) *ReturnLength = ModuleFileName.Length + sizeof(MEMORY_SECTION_NAME);
}
_SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
@ -1938,11 +1939,12 @@ MiQueryMemorySectionName(IN HANDLE ProcessHandle,
}
else
{
RtlInitUnicodeString(&SectionName->SectionFileName, SectionName->NameBuffer);
SectionName->SectionFileName.MaximumLength = (USHORT)MemoryInformationLength;
RtlInitEmptyUnicodeString(&SectionName->SectionFileName,
(PWSTR)(SectionName + 1),
MemoryInformationLength - sizeof(MEMORY_SECTION_NAME));
RtlCopyUnicodeString(&SectionName->SectionFileName, &ModuleFileName);
if (ReturnLength) *ReturnLength = ModuleFileName.Length;
if (ReturnLength) *ReturnLength = ModuleFileName.Length + sizeof(MEMORY_SECTION_NAME);
}