mirror of
https://github.com/reactos/reactos.git
synced 2024-11-19 05:22:59 +00:00
108991a6fb
Also call it from NtCreatePagingFile() when we have successfully created a paging file on the system boot partition.
817 lines
25 KiB
C
817 lines
25 KiB
C
/*
|
|
* ReactOS kernel
|
|
* Copyright (C) 1998, 1999, 2000, 2001 ReactOS Team
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*/
|
|
/*
|
|
* PROJECT: ReactOS kernel
|
|
* FILE: ntoskrnl/mm/pagefile.c
|
|
* PURPOSE: Paging file functions
|
|
* PROGRAMMER: David Welch (welch@mcmail.com)
|
|
* Pierre Schweitzer
|
|
* UPDATE HISTORY:
|
|
* Created 22/05/98
|
|
*/
|
|
|
|
/* INCLUDES *****************************************************************/
|
|
|
|
#include <ntoskrnl.h>
|
|
#define NDEBUG
|
|
#include <debug.h>
|
|
|
|
#if defined (ALLOC_PRAGMA)
|
|
#pragma alloc_text(INIT, MmInitPagingFile)
|
|
#endif
|
|
|
|
/* GLOBALS *******************************************************************/
|
|
|
|
#define PAIRS_PER_RUN (1024)
|
|
|
|
/* List of paging files, both used and free */
|
|
PMMPAGING_FILE MmPagingFile[MAX_PAGING_FILES];
|
|
|
|
/* Lock for examining the list of paging files */
|
|
KGUARDED_MUTEX MmPageFileCreationLock;
|
|
|
|
/* Number of paging files */
|
|
ULONG MmNumberOfPagingFiles;
|
|
|
|
/* Number of pages that are available for swapping */
|
|
PFN_COUNT MiFreeSwapPages;
|
|
|
|
/* Number of pages that have been allocated for swapping */
|
|
PFN_COUNT MiUsedSwapPages;
|
|
|
|
BOOLEAN MmZeroPageFile;
|
|
|
|
/*
|
|
* Number of pages that have been reserved for swapping but not yet allocated
|
|
*/
|
|
static PFN_COUNT MiReservedSwapPages;
|
|
|
|
/*
|
|
* Ratio between reserved and available swap pages, e.g. setting this to five
|
|
* forces one swap page to be available for every five swap pages that are
|
|
* reserved. Setting this to zero turns off commit checking altogether.
|
|
*/
|
|
#define MM_PAGEFILE_COMMIT_RATIO (1)
|
|
|
|
/*
|
|
* Number of pages that can be used for potentially swapable memory without
|
|
* pagefile space being reserved. The intention is that this allows smss
|
|
* to start up and create page files while ordinarily having a commit
|
|
* ratio of one.
|
|
*/
|
|
#define MM_PAGEFILE_COMMIT_GRACE (256)
|
|
|
|
/*
|
|
* Translate between a swap entry and a file and offset pair.
|
|
*/
|
|
#define FILE_FROM_ENTRY(i) ((i) & 0x0f)
|
|
#define OFFSET_FROM_ENTRY(i) ((i) >> 11)
|
|
#define ENTRY_FROM_FILE_OFFSET(i, j) ((i) | ((j) << 11) | 0x400)
|
|
|
|
/* Make sure there can be only 16 paging files */
|
|
C_ASSERT(FILE_FROM_ENTRY(0xffffffff) < MAX_PAGING_FILES);
|
|
|
|
static BOOLEAN MmSwapSpaceMessage = FALSE;
|
|
|
|
static BOOLEAN MmSystemPageFileLocated = FALSE;
|
|
|
|
/* FUNCTIONS *****************************************************************/
|
|
|
|
VOID
|
|
NTAPI
|
|
MmBuildMdlFromPages(PMDL Mdl, PPFN_NUMBER Pages)
|
|
{
|
|
memcpy(Mdl + 1, Pages, sizeof(PFN_NUMBER) * (PAGE_ROUND_UP(Mdl->ByteOffset+Mdl->ByteCount)/PAGE_SIZE));
|
|
|
|
/* FIXME: this flag should be set by the caller perhaps? */
|
|
Mdl->MdlFlags |= MDL_IO_PAGE_READ;
|
|
}
|
|
|
|
|
|
BOOLEAN
|
|
NTAPI
|
|
MmIsFileObjectAPagingFile(PFILE_OBJECT FileObject)
|
|
{
|
|
ULONG i;
|
|
|
|
/* Loop through all the paging files */
|
|
for (i = 0; i < MmNumberOfPagingFiles; i++)
|
|
{
|
|
/* Check if this is one of them */
|
|
if (MmPagingFile[i]->FileObject == FileObject) return TRUE;
|
|
}
|
|
|
|
/* Nothing found */
|
|
return FALSE;
|
|
}
|
|
|
|
VOID
|
|
NTAPI
|
|
MmShowOutOfSpaceMessagePagingFile(VOID)
|
|
{
|
|
if (!MmSwapSpaceMessage)
|
|
{
|
|
DPRINT1("MM: Out of swap space.\n");
|
|
MmSwapSpaceMessage = TRUE;
|
|
}
|
|
}
|
|
|
|
NTSTATUS
|
|
NTAPI
|
|
MmWriteToSwapPage(SWAPENTRY SwapEntry, PFN_NUMBER Page)
|
|
{
|
|
ULONG i;
|
|
ULONG_PTR offset;
|
|
LARGE_INTEGER file_offset;
|
|
IO_STATUS_BLOCK Iosb;
|
|
NTSTATUS Status;
|
|
KEVENT Event;
|
|
UCHAR MdlBase[sizeof(MDL) + sizeof(ULONG)];
|
|
PMDL Mdl = (PMDL)MdlBase;
|
|
|
|
DPRINT("MmWriteToSwapPage\n");
|
|
|
|
if (SwapEntry == 0)
|
|
{
|
|
KeBugCheck(MEMORY_MANAGEMENT);
|
|
return(STATUS_UNSUCCESSFUL);
|
|
}
|
|
|
|
i = FILE_FROM_ENTRY(SwapEntry);
|
|
offset = OFFSET_FROM_ENTRY(SwapEntry) - 1;
|
|
|
|
if (MmPagingFile[i]->FileObject == NULL ||
|
|
MmPagingFile[i]->FileObject->DeviceObject == NULL)
|
|
{
|
|
DPRINT1("Bad paging file 0x%.8X\n", SwapEntry);
|
|
KeBugCheck(MEMORY_MANAGEMENT);
|
|
}
|
|
|
|
MmInitializeMdl(Mdl, NULL, PAGE_SIZE);
|
|
MmBuildMdlFromPages(Mdl, &Page);
|
|
Mdl->MdlFlags |= MDL_PAGES_LOCKED;
|
|
|
|
file_offset.QuadPart = offset * PAGE_SIZE;
|
|
|
|
KeInitializeEvent(&Event, NotificationEvent, FALSE);
|
|
Status = IoSynchronousPageWrite(MmPagingFile[i]->FileObject,
|
|
Mdl,
|
|
&file_offset,
|
|
&Event,
|
|
&Iosb);
|
|
if (Status == STATUS_PENDING)
|
|
{
|
|
KeWaitForSingleObject(&Event, Executive, KernelMode, FALSE, NULL);
|
|
Status = Iosb.Status;
|
|
}
|
|
|
|
if (Mdl->MdlFlags & MDL_MAPPED_TO_SYSTEM_VA)
|
|
{
|
|
MmUnmapLockedPages (Mdl->MappedSystemVa, Mdl);
|
|
}
|
|
return(Status);
|
|
}
|
|
|
|
|
|
NTSTATUS
|
|
NTAPI
|
|
MmReadFromSwapPage(SWAPENTRY SwapEntry, PFN_NUMBER Page)
|
|
{
|
|
return MiReadPageFile(Page, FILE_FROM_ENTRY(SwapEntry), OFFSET_FROM_ENTRY(SwapEntry) - 1);
|
|
}
|
|
|
|
NTSTATUS
|
|
NTAPI
|
|
MiReadPageFile(
|
|
_In_ PFN_NUMBER Page,
|
|
_In_ ULONG PageFileIndex,
|
|
_In_ ULONG_PTR PageFileOffset)
|
|
{
|
|
LARGE_INTEGER file_offset;
|
|
IO_STATUS_BLOCK Iosb;
|
|
NTSTATUS Status;
|
|
KEVENT Event;
|
|
UCHAR MdlBase[sizeof(MDL) + sizeof(ULONG)];
|
|
PMDL Mdl = (PMDL)MdlBase;
|
|
PMMPAGING_FILE PagingFile;
|
|
|
|
DPRINT("MiReadSwapFile\n");
|
|
|
|
if (PageFileOffset == 0)
|
|
{
|
|
KeBugCheck(MEMORY_MANAGEMENT);
|
|
return(STATUS_UNSUCCESSFUL);
|
|
}
|
|
|
|
ASSERT(PageFileIndex < MAX_PAGING_FILES);
|
|
|
|
PagingFile = MmPagingFile[PageFileIndex];
|
|
|
|
if (PagingFile->FileObject == NULL || PagingFile->FileObject->DeviceObject == NULL)
|
|
{
|
|
DPRINT1("Bad paging file %u\n", PageFileIndex);
|
|
KeBugCheck(MEMORY_MANAGEMENT);
|
|
}
|
|
|
|
MmInitializeMdl(Mdl, NULL, PAGE_SIZE);
|
|
MmBuildMdlFromPages(Mdl, &Page);
|
|
Mdl->MdlFlags |= MDL_PAGES_LOCKED;
|
|
|
|
file_offset.QuadPart = PageFileOffset * PAGE_SIZE;
|
|
|
|
KeInitializeEvent(&Event, NotificationEvent, FALSE);
|
|
Status = IoPageRead(PagingFile->FileObject,
|
|
Mdl,
|
|
&file_offset,
|
|
&Event,
|
|
&Iosb);
|
|
if (Status == STATUS_PENDING)
|
|
{
|
|
KeWaitForSingleObject(&Event, Executive, KernelMode, FALSE, NULL);
|
|
Status = Iosb.Status;
|
|
}
|
|
if (Mdl->MdlFlags & MDL_MAPPED_TO_SYSTEM_VA)
|
|
{
|
|
MmUnmapLockedPages (Mdl->MappedSystemVa, Mdl);
|
|
}
|
|
return(Status);
|
|
}
|
|
|
|
VOID
|
|
INIT_FUNCTION
|
|
NTAPI
|
|
MmInitPagingFile(VOID)
|
|
{
|
|
ULONG i;
|
|
|
|
KeInitializeGuardedMutex(&MmPageFileCreationLock);
|
|
|
|
MiFreeSwapPages = 0;
|
|
MiUsedSwapPages = 0;
|
|
MiReservedSwapPages = 0;
|
|
|
|
for (i = 0; i < MAX_PAGING_FILES; i++)
|
|
{
|
|
MmPagingFile[i] = NULL;
|
|
}
|
|
MmNumberOfPagingFiles = 0;
|
|
}
|
|
|
|
VOID
|
|
NTAPI
|
|
MmFreeSwapPage(SWAPENTRY Entry)
|
|
{
|
|
ULONG i;
|
|
ULONG_PTR off;
|
|
PMMPAGING_FILE PagingFile;
|
|
|
|
i = FILE_FROM_ENTRY(Entry);
|
|
off = OFFSET_FROM_ENTRY(Entry) - 1;
|
|
|
|
KeAcquireGuardedMutex(&MmPageFileCreationLock);
|
|
|
|
PagingFile = MmPagingFile[i];
|
|
if (PagingFile == NULL)
|
|
{
|
|
KeBugCheck(MEMORY_MANAGEMENT);
|
|
}
|
|
|
|
RtlClearBit(PagingFile->Bitmap, off >> 5);
|
|
|
|
PagingFile->FreeSpace++;
|
|
PagingFile->CurrentUsage--;
|
|
|
|
MiFreeSwapPages++;
|
|
MiUsedSwapPages--;
|
|
|
|
KeReleaseGuardedMutex(&MmPageFileCreationLock);
|
|
}
|
|
|
|
SWAPENTRY
|
|
NTAPI
|
|
MmAllocSwapPage(VOID)
|
|
{
|
|
ULONG i;
|
|
ULONG off;
|
|
SWAPENTRY entry;
|
|
|
|
KeAcquireGuardedMutex(&MmPageFileCreationLock);
|
|
|
|
if (MiFreeSwapPages == 0)
|
|
{
|
|
KeReleaseGuardedMutex(&MmPageFileCreationLock);
|
|
return(0);
|
|
}
|
|
|
|
for (i = 0; i < MAX_PAGING_FILES; i++)
|
|
{
|
|
if (MmPagingFile[i] != NULL &&
|
|
MmPagingFile[i]->FreeSpace >= 1)
|
|
{
|
|
off = RtlFindClearBitsAndSet(MmPagingFile[i]->Bitmap, 1, 0);
|
|
if (off == 0xFFFFFFFF)
|
|
{
|
|
KeBugCheck(MEMORY_MANAGEMENT);
|
|
KeReleaseGuardedMutex(&MmPageFileCreationLock);
|
|
return(STATUS_UNSUCCESSFUL);
|
|
}
|
|
MiUsedSwapPages++;
|
|
MiFreeSwapPages--;
|
|
KeReleaseGuardedMutex(&MmPageFileCreationLock);
|
|
|
|
entry = ENTRY_FROM_FILE_OFFSET(i, off + 1);
|
|
return(entry);
|
|
}
|
|
}
|
|
|
|
KeReleaseGuardedMutex(&MmPageFileCreationLock);
|
|
KeBugCheck(MEMORY_MANAGEMENT);
|
|
return(0);
|
|
}
|
|
|
|
NTSTATUS NTAPI
|
|
NtCreatePagingFile(IN PUNICODE_STRING FileName,
|
|
IN PLARGE_INTEGER MinimumSize,
|
|
IN PLARGE_INTEGER MaximumSize,
|
|
IN ULONG Reserved)
|
|
{
|
|
NTSTATUS Status;
|
|
OBJECT_ATTRIBUTES ObjectAttributes;
|
|
HANDLE FileHandle;
|
|
IO_STATUS_BLOCK IoStatus;
|
|
PFILE_OBJECT FileObject;
|
|
PMMPAGING_FILE PagingFile;
|
|
ULONG AllocMapSize;
|
|
ULONG Count;
|
|
KPROCESSOR_MODE PreviousMode;
|
|
UNICODE_STRING PageFileName;
|
|
LARGE_INTEGER SafeMinimumSize, SafeMaximumSize, AllocationSize;
|
|
FILE_FS_DEVICE_INFORMATION FsDeviceInfo;
|
|
SECURITY_DESCRIPTOR SecurityDescriptor;
|
|
PACL Dacl;
|
|
PWSTR Buffer;
|
|
DEVICE_TYPE DeviceType;
|
|
|
|
DPRINT("NtCreatePagingFile(FileName %wZ, MinimumSize %I64d)\n",
|
|
FileName, MinimumSize->QuadPart);
|
|
|
|
PAGED_CODE();
|
|
|
|
if (MmNumberOfPagingFiles >= MAX_PAGING_FILES)
|
|
{
|
|
return STATUS_TOO_MANY_PAGING_FILES;
|
|
}
|
|
|
|
PreviousMode = ExGetPreviousMode();
|
|
|
|
if (PreviousMode != KernelMode)
|
|
{
|
|
if (SeSinglePrivilegeCheck(SeCreatePagefilePrivilege, PreviousMode) != TRUE)
|
|
{
|
|
return STATUS_PRIVILEGE_NOT_HELD;
|
|
}
|
|
|
|
_SEH2_TRY
|
|
{
|
|
SafeMinimumSize = ProbeForReadLargeInteger(MinimumSize);
|
|
SafeMaximumSize = ProbeForReadLargeInteger(MaximumSize);
|
|
|
|
PageFileName.Length = FileName->Length;
|
|
PageFileName.MaximumLength = FileName->MaximumLength;
|
|
PageFileName.Buffer = FileName->Buffer;
|
|
}
|
|
_SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
|
|
{
|
|
/* Return the exception code */
|
|
_SEH2_YIELD(return _SEH2_GetExceptionCode());
|
|
}
|
|
_SEH2_END;
|
|
}
|
|
else
|
|
{
|
|
SafeMinimumSize = *MinimumSize;
|
|
SafeMaximumSize = *MaximumSize;
|
|
|
|
PageFileName.Length = FileName->Length;
|
|
PageFileName.MaximumLength = FileName->MaximumLength;
|
|
PageFileName.Buffer = FileName->Buffer;
|
|
}
|
|
|
|
/* Pagefiles can't be larger than 4GB and ofcourse the minimum should be
|
|
smaller than the maximum */
|
|
if (0 != SafeMinimumSize.u.HighPart)
|
|
{
|
|
return STATUS_INVALID_PARAMETER_2;
|
|
}
|
|
if (0 != SafeMaximumSize.u.HighPart)
|
|
{
|
|
return STATUS_INVALID_PARAMETER_3;
|
|
}
|
|
if (SafeMaximumSize.u.LowPart < SafeMinimumSize.u.LowPart)
|
|
{
|
|
return STATUS_INVALID_PARAMETER_MIX;
|
|
}
|
|
|
|
/* Validate name length */
|
|
if (PageFileName.Length > 128 * sizeof(WCHAR))
|
|
{
|
|
return STATUS_OBJECT_NAME_INVALID;
|
|
}
|
|
|
|
/* We won't care about any potential UNICODE_NULL */
|
|
PageFileName.MaximumLength = PageFileName.Length;
|
|
/* Allocate a buffer to keep name copy */
|
|
Buffer = ExAllocatePoolWithTag(PagedPool, PageFileName.Length, TAG_MM);
|
|
if (Buffer == NULL)
|
|
{
|
|
return STATUS_INSUFFICIENT_RESOURCES;
|
|
}
|
|
|
|
/* Copy name */
|
|
if (PreviousMode != KernelMode)
|
|
{
|
|
_SEH2_TRY
|
|
{
|
|
if (PageFileName.Length != 0)
|
|
{
|
|
ProbeForRead(PageFileName.Buffer, PageFileName.Length, sizeof(WCHAR));
|
|
}
|
|
|
|
RtlCopyMemory(Buffer, PageFileName.Buffer, PageFileName.Length);
|
|
}
|
|
_SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
|
|
{
|
|
ExFreePoolWithTag(Buffer, TAG_MM);
|
|
|
|
/* Return the exception code */
|
|
_SEH2_YIELD(return _SEH2_GetExceptionCode());
|
|
}
|
|
_SEH2_END;
|
|
}
|
|
else
|
|
{
|
|
RtlCopyMemory(Buffer, PageFileName.Buffer, PageFileName.Length);
|
|
}
|
|
|
|
/* Erase caller's buffer with ours */
|
|
PageFileName.Buffer = Buffer;
|
|
|
|
/* Create the security descriptor for the page file */
|
|
Status = RtlCreateSecurityDescriptor(&SecurityDescriptor, SECURITY_DESCRIPTOR_REVISION);
|
|
if (!NT_SUCCESS(Status))
|
|
{
|
|
ExFreePoolWithTag(Buffer, TAG_MM);
|
|
return Status;
|
|
}
|
|
|
|
/* Create the DACL: we will only allow two SIDs */
|
|
Count = sizeof(ACL) + (sizeof(ACE) + RtlLengthSid(SeLocalSystemSid)) +
|
|
(sizeof(ACE) + RtlLengthSid(SeAliasAdminsSid));
|
|
Dacl = ExAllocatePoolWithTag(PagedPool, Count, 'lcaD');
|
|
if (Dacl == NULL)
|
|
{
|
|
ExFreePoolWithTag(Buffer, TAG_MM);
|
|
return STATUS_INSUFFICIENT_RESOURCES;
|
|
}
|
|
|
|
/* Initialize the DACL */
|
|
Status = RtlCreateAcl(Dacl, Count, ACL_REVISION);
|
|
if (!NT_SUCCESS(Status))
|
|
{
|
|
ExFreePoolWithTag(Dacl, 'lcaD');
|
|
ExFreePoolWithTag(Buffer, TAG_MM);
|
|
return Status;
|
|
}
|
|
|
|
/* Grant full access to admins */
|
|
Status = RtlAddAccessAllowedAce(Dacl, ACL_REVISION, FILE_ALL_ACCESS, SeAliasAdminsSid);
|
|
if (!NT_SUCCESS(Status))
|
|
{
|
|
ExFreePoolWithTag(Dacl, 'lcaD');
|
|
ExFreePoolWithTag(Buffer, TAG_MM);
|
|
return Status;
|
|
}
|
|
|
|
/* Grant full access to SYSTEM */
|
|
Status = RtlAddAccessAllowedAce(Dacl, ACL_REVISION, FILE_ALL_ACCESS, SeLocalSystemSid);
|
|
if (!NT_SUCCESS(Status))
|
|
{
|
|
ExFreePoolWithTag(Dacl, 'lcaD');
|
|
ExFreePoolWithTag(Buffer, TAG_MM);
|
|
return Status;
|
|
}
|
|
|
|
/* Attach the DACL to the security descriptor */
|
|
Status = RtlSetDaclSecurityDescriptor(&SecurityDescriptor, TRUE, Dacl, FALSE);
|
|
if (!NT_SUCCESS(Status))
|
|
{
|
|
ExFreePoolWithTag(Dacl, 'lcaD');
|
|
ExFreePoolWithTag(Buffer, TAG_MM);
|
|
return Status;
|
|
}
|
|
|
|
InitializeObjectAttributes(&ObjectAttributes,
|
|
&PageFileName,
|
|
OBJ_KERNEL_HANDLE,
|
|
NULL,
|
|
&SecurityDescriptor);
|
|
|
|
/* Make sure we can at least store a complete page:
|
|
* If we have 2048 BytesPerAllocationUnit (FAT16 < 128MB) there is
|
|
* a problem if the paging file is fragmented. Suppose the first cluster
|
|
* of the paging file is cluster 3042 but cluster 3043 is NOT part of the
|
|
* paging file but of another file. We can't write a complete page (4096
|
|
* bytes) to the physical location of cluster 3042 then. */
|
|
AllocationSize.QuadPart = SafeMinimumSize.QuadPart + PAGE_SIZE;
|
|
|
|
/* First, attempt to replace the page file, if existing */
|
|
Status = IoCreateFile(&FileHandle,
|
|
SYNCHRONIZE | WRITE_DAC | FILE_READ_DATA | FILE_WRITE_DATA,
|
|
&ObjectAttributes,
|
|
&IoStatus,
|
|
&AllocationSize,
|
|
FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN,
|
|
FILE_SHARE_WRITE,
|
|
FILE_SUPERSEDE,
|
|
FILE_DELETE_ON_CLOSE | FILE_NO_COMPRESSION | FILE_NO_INTERMEDIATE_BUFFERING,
|
|
NULL,
|
|
0,
|
|
CreateFileTypeNone,
|
|
NULL,
|
|
SL_OPEN_PAGING_FILE | IO_NO_PARAMETER_CHECKING);
|
|
/* If we failed, relax a bit constraints, someone may be already holding the
|
|
* the file, so share write, don't attempt to replace and don't delete on close
|
|
* (basically, don't do anything conflicting)
|
|
* This can happen if the caller attempts to extend a page file.
|
|
*/
|
|
if (!NT_SUCCESS(Status))
|
|
{
|
|
ULONG i;
|
|
|
|
Status = IoCreateFile(&FileHandle,
|
|
SYNCHRONIZE | FILE_WRITE_DATA,
|
|
&ObjectAttributes,
|
|
&IoStatus,
|
|
&AllocationSize,
|
|
FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN,
|
|
FILE_SHARE_WRITE | FILE_SHARE_READ,
|
|
FILE_OPEN,
|
|
FILE_NO_COMPRESSION | FILE_NO_INTERMEDIATE_BUFFERING,
|
|
NULL,
|
|
0,
|
|
CreateFileTypeNone,
|
|
NULL,
|
|
SL_OPEN_PAGING_FILE | IO_NO_PARAMETER_CHECKING);
|
|
if (!NT_SUCCESS(Status))
|
|
{
|
|
ExFreePoolWithTag(Dacl, 'lcaD');
|
|
ExFreePoolWithTag(Buffer, TAG_MM);
|
|
return Status;
|
|
}
|
|
|
|
/* We opened it! Check we are that "someone" ;-)
|
|
* First, get the opened file object.
|
|
*/
|
|
Status = ObReferenceObjectByHandle(FileHandle,
|
|
FILE_READ_DATA | FILE_WRITE_DATA,
|
|
IoFileObjectType,
|
|
KernelMode,
|
|
(PVOID*)&FileObject,
|
|
NULL);
|
|
if (!NT_SUCCESS(Status))
|
|
{
|
|
ZwClose(FileHandle);
|
|
ExFreePoolWithTag(Dacl, 'lcaD');
|
|
ExFreePoolWithTag(Buffer, TAG_MM);
|
|
return Status;
|
|
}
|
|
|
|
/* Find if it matches a previous page file */
|
|
PagingFile = NULL;
|
|
|
|
/* FIXME: should be calling unsafe instead,
|
|
* we should already be in a guarded region
|
|
*/
|
|
KeAcquireGuardedMutex(&MmPageFileCreationLock);
|
|
if (MmNumberOfPagingFiles > 0)
|
|
{
|
|
i = 0;
|
|
|
|
while (MmPagingFile[i]->FileObject->SectionObjectPointer != FileObject->SectionObjectPointer)
|
|
{
|
|
++i;
|
|
if (i >= MmNumberOfPagingFiles)
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
|
|
/* This is the matching page file */
|
|
PagingFile = MmPagingFile[i];
|
|
}
|
|
|
|
/* If we didn't find the page file, fail */
|
|
if (PagingFile == NULL)
|
|
{
|
|
KeReleaseGuardedMutex(&MmPageFileCreationLock);
|
|
ObDereferenceObject(FileObject);
|
|
ZwClose(FileHandle);
|
|
ExFreePoolWithTag(Dacl, 'lcaD');
|
|
ExFreePoolWithTag(Buffer, TAG_MM);
|
|
return STATUS_NOT_FOUND;
|
|
}
|
|
|
|
/* Don't allow page file shrinking */
|
|
if (PagingFile->MinimumSize > (SafeMinimumSize.QuadPart >> PAGE_SHIFT))
|
|
{
|
|
KeReleaseGuardedMutex(&MmPageFileCreationLock);
|
|
ObDereferenceObject(FileObject);
|
|
ZwClose(FileHandle);
|
|
ExFreePoolWithTag(Dacl, 'lcaD');
|
|
ExFreePoolWithTag(Buffer, TAG_MM);
|
|
return STATUS_INVALID_PARAMETER_2;
|
|
}
|
|
|
|
if ((SafeMaximumSize.QuadPart >> PAGE_SHIFT) < PagingFile->MaximumSize)
|
|
{
|
|
KeReleaseGuardedMutex(&MmPageFileCreationLock);
|
|
ObDereferenceObject(FileObject);
|
|
ZwClose(FileHandle);
|
|
ExFreePoolWithTag(Dacl, 'lcaD');
|
|
ExFreePoolWithTag(Buffer, TAG_MM);
|
|
return STATUS_INVALID_PARAMETER_3;
|
|
}
|
|
|
|
/* FIXME: implement parameters checking and page file extension */
|
|
UNIMPLEMENTED;
|
|
|
|
KeReleaseGuardedMutex(&MmPageFileCreationLock);
|
|
ObDereferenceObject(FileObject);
|
|
ZwClose(FileHandle);
|
|
ExFreePoolWithTag(Dacl, 'lcaD');
|
|
ExFreePoolWithTag(Buffer, TAG_MM);
|
|
return STATUS_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
if (!NT_SUCCESS(Status))
|
|
{
|
|
DPRINT1("Failed creating page file: %lx\n", Status);
|
|
ExFreePoolWithTag(Dacl, 'lcaD');
|
|
ExFreePoolWithTag(Buffer, TAG_MM);
|
|
return Status;
|
|
}
|
|
|
|
/* Set the security descriptor */
|
|
if (NT_SUCCESS(IoStatus.Status))
|
|
{
|
|
Status = ZwSetSecurityObject(FileHandle, DACL_SECURITY_INFORMATION, &SecurityDescriptor);
|
|
if (!NT_SUCCESS(Status))
|
|
{
|
|
ExFreePoolWithTag(Dacl, 'lcaD');
|
|
ZwClose(FileHandle);
|
|
ExFreePoolWithTag(Buffer, TAG_MM);
|
|
return Status;
|
|
}
|
|
}
|
|
|
|
/* DACL is no longer needed, free it */
|
|
ExFreePoolWithTag(Dacl, 'lcaD');
|
|
|
|
/* FIXME: To enable once page file managment is moved to ARM3 */
|
|
#if 0
|
|
/* Check we won't overflow commit limit with the page file */
|
|
if (MmTotalCommitLimitMaximum + (SafeMaximumSize.QuadPart >> PAGE_SHIFT) <= MmTotalCommitLimitMaximum)
|
|
{
|
|
ZwClose(FileHandle);
|
|
ExFreePoolWithTag(Buffer, TAG_MM);
|
|
return STATUS_INVALID_PARAMETER_3;
|
|
}
|
|
#endif
|
|
|
|
/* Set its end of file to minimal size */
|
|
Status = ZwSetInformationFile(FileHandle,
|
|
&IoStatus,
|
|
&SafeMinimumSize,
|
|
sizeof(LARGE_INTEGER),
|
|
FileEndOfFileInformation);
|
|
if (!NT_SUCCESS(Status) || !NT_SUCCESS(IoStatus.Status))
|
|
{
|
|
ZwClose(FileHandle);
|
|
ExFreePoolWithTag(Buffer, TAG_MM);
|
|
return Status;
|
|
}
|
|
|
|
Status = ObReferenceObjectByHandle(FileHandle,
|
|
FILE_READ_DATA | FILE_WRITE_DATA,
|
|
IoFileObjectType,
|
|
KernelMode,
|
|
(PVOID*)&FileObject,
|
|
NULL);
|
|
if (!NT_SUCCESS(Status))
|
|
{
|
|
ZwClose(FileHandle);
|
|
ExFreePoolWithTag(Buffer, TAG_MM);
|
|
return Status;
|
|
}
|
|
|
|
/* Only allow page file on a few device types */
|
|
DeviceType = IoGetRelatedDeviceObject(FileObject)->DeviceType;
|
|
if (DeviceType != FILE_DEVICE_DISK_FILE_SYSTEM && DeviceType != FILE_DEVICE_NETWORK_FILE_SYSTEM &&
|
|
DeviceType != FILE_DEVICE_DFS_VOLUME && DeviceType != FILE_DEVICE_DFS_FILE_SYSTEM)
|
|
{
|
|
ObDereferenceObject(FileObject);
|
|
ZwClose(FileHandle);
|
|
ExFreePoolWithTag(Buffer, TAG_MM);
|
|
return Status;
|
|
}
|
|
|
|
/* Deny page file creation on a floppy disk */
|
|
FsDeviceInfo.Characteristics = 0;
|
|
IoQueryVolumeInformation(FileObject, FileFsDeviceInformation, sizeof(FsDeviceInfo), &FsDeviceInfo, &Count);
|
|
if (BooleanFlagOn(FsDeviceInfo.Characteristics, FILE_FLOPPY_DISKETTE))
|
|
{
|
|
ObDereferenceObject(FileObject);
|
|
ZwClose(FileHandle);
|
|
ExFreePoolWithTag(Buffer, TAG_MM);
|
|
return STATUS_FLOPPY_VOLUME;
|
|
}
|
|
|
|
PagingFile = ExAllocatePoolWithTag(NonPagedPool, sizeof(*PagingFile), TAG_MM);
|
|
if (PagingFile == NULL)
|
|
{
|
|
ObDereferenceObject(FileObject);
|
|
ZwClose(FileHandle);
|
|
ExFreePoolWithTag(Buffer, TAG_MM);
|
|
return STATUS_INSUFFICIENT_RESOURCES;
|
|
}
|
|
|
|
RtlZeroMemory(PagingFile, sizeof(*PagingFile));
|
|
|
|
PagingFile->FileHandle = FileHandle;
|
|
PagingFile->FileObject = FileObject;
|
|
PagingFile->MaximumSize = (SafeMaximumSize.QuadPart >> PAGE_SHIFT);
|
|
PagingFile->Size = (SafeMinimumSize.QuadPart >> PAGE_SHIFT);
|
|
PagingFile->MinimumSize = (SafeMinimumSize.QuadPart >> PAGE_SHIFT);
|
|
/* First page is never used: it's the header
|
|
* TODO: write it
|
|
*/
|
|
PagingFile->FreeSpace = (ULONG)(SafeMinimumSize.QuadPart / PAGE_SIZE) - 1;
|
|
PagingFile->CurrentUsage = 0;
|
|
PagingFile->PageFileName = PageFileName;
|
|
ASSERT(PagingFile->Size == PagingFile->FreeSpace + PagingFile->CurrentUsage + 1);
|
|
|
|
AllocMapSize = sizeof(RTL_BITMAP) + (((PagingFile->MaximumSize + 31) / 32) * sizeof(ULONG));
|
|
PagingFile->Bitmap = ExAllocatePoolWithTag(NonPagedPool,
|
|
AllocMapSize,
|
|
TAG_MM);
|
|
if (PagingFile->Bitmap == NULL)
|
|
{
|
|
ExFreePoolWithTag(PagingFile, TAG_MM);
|
|
ObDereferenceObject(FileObject);
|
|
ZwClose(FileHandle);
|
|
ExFreePoolWithTag(Buffer, TAG_MM);
|
|
return STATUS_INSUFFICIENT_RESOURCES;
|
|
}
|
|
|
|
RtlInitializeBitMap(PagingFile->Bitmap,
|
|
(PULONG)(PagingFile->Bitmap + 1),
|
|
(ULONG)(PagingFile->MaximumSize));
|
|
RtlClearAllBits(PagingFile->Bitmap);
|
|
|
|
/* FIXME: should be calling unsafe instead,
|
|
* we should already be in a guarded region
|
|
*/
|
|
KeAcquireGuardedMutex(&MmPageFileCreationLock);
|
|
ASSERT(MmPagingFile[MmNumberOfPagingFiles] == NULL);
|
|
MmPagingFile[MmNumberOfPagingFiles] = PagingFile;
|
|
MmNumberOfPagingFiles++;
|
|
MiFreeSwapPages = MiFreeSwapPages + PagingFile->FreeSpace;
|
|
KeReleaseGuardedMutex(&MmPageFileCreationLock);
|
|
|
|
MmSwapSpaceMessage = FALSE;
|
|
|
|
if (!MmSystemPageFileLocated && BooleanFlagOn(FileObject->DeviceObject->Flags, DO_SYSTEM_BOOT_PARTITION))
|
|
{
|
|
MmSystemPageFileLocated = IoInitializeCrashDump(FileHandle);
|
|
}
|
|
|
|
return STATUS_SUCCESS;
|
|
}
|
|
|
|
/* EOF */
|