bond/kclib/KeMemory32.c

147 lines
3.6 KiB
C
Raw Normal View History

2014-05-30 08:55:32 +00:00
#include "KeMemory32.h"
#include "KeDef.h"
#include "KeGraph32.h"
2014-06-03 07:05:45 +00:00
ULONG32 HYPKERNELAPI SegmentToPhyscicalAddress(ULONG16 Segment)
2014-05-30 08:55:32 +00:00
{
PIAGDT32 PDescriptor = &KeGDT[(Segment>>3)];
return (PDescriptor->BaseHigh<<24 | PDescriptor->BaseMid<<16 | PDescriptor->BaseLow);
};
2014-06-03 07:05:45 +00:00
PVOID HYPKERNELAPI KeMemorySet(PVOID Source, BYTE Value, ULONG32 Length)
2014-05-30 08:55:32 +00:00
{
PBYTE src = (PBYTE)Source;
while(Length > 0)
{
_asm_KePrintHex32(Length);
_asm_KePrintStr32("\n");
*src = Value;
src++;
Length--;
};
return 0;
}
2014-06-03 07:05:45 +00:00
PVOID HYPKERNELAPI KeMemoryCopy(PVOID src, PVOID dst, ULONG32 size)
2014-05-30 08:55:32 +00:00
{
ULONG32 i = 0;
for(i=0;i<size;i++)
{
*((PCHAR)dst+i)=*((PCHAR)src+i);
}
return dst;
}
2014-06-03 07:05:45 +00:00
VOID HYPKERNELAPI KeInitializeWritePDE4KDescriptor32(PKePDE4KDescriptor32 Desc,ULONG32 P,ULONG32 RW, ULONG32 US,ULONG32 PWT,ULONG32 PCD,ULONG32 A,ULONG32 PS,ULONG32 Address)
2014-05-30 08:55:32 +00:00
{
Desc->P = P;
Desc->Address = Address;
Desc->A = A;
Desc->PS = PS;
Desc->US = US;
Desc->RW = RW;
Desc->PWT = PWT;
Desc->PCD = PCD;
return;
}
2014-06-03 07:05:45 +00:00
VOID HYPKERNELAPI KeWritePDE4K32(PKePDE4KDescriptor32 Desc, PVOID Dst)
2014-05-30 08:55:32 +00:00
{
ULONG32 temp = 0;
temp = Desc->Address;
temp = (temp & 0xfffff000);
temp = temp + Desc->P;
temp = temp + Desc->RW;
temp = temp + Desc->US;
temp = temp + Desc->PWT;
temp = temp + Desc->PCD;
temp = temp + Desc->A;
temp = temp + Desc->PS;
*(PULONG32)Dst = temp;
return;
}
2014-06-03 07:05:45 +00:00
VOID HYPKERNELAPI KeInitializeWritePTE4K32Descriptor(PKePTE4KDescriptor32 Desc,ULONG32 P,ULONG32 RW, ULONG32 US,ULONG32 PWT,ULONG32 PCD,ULONG32 A,ULONG32 D,ULONG32 PS,ULONG32 G,ULONG32 Address)
2014-05-30 08:55:32 +00:00
{
Desc->P = P;
Desc->Address = Address;
Desc->A = A;
Desc->US = US;
Desc->RW = RW;
Desc->PWT = PWT;
Desc->PCD = PCD;
Desc->PS = PS;
Desc->G = G;
Desc->D = D;
return;
}
2014-06-03 07:05:45 +00:00
VOID HYPKERNELAPI KeGetPDEInfo(PKePDE4KDescriptor32 pDesc,ULONG32 Virtual_Address)
2014-05-30 08:55:32 +00:00
{
ULONG32 temp = *(PULONG32)Virtual_Address;
pDesc->Address = (temp >> 12) << 12;
pDesc->A = temp & KeWritePDE4K32_A_1;
pDesc->P = temp & KeWritePDE4K32_P_1;
pDesc->PCD = temp & KeWritePDE4K32_PCD_1;
pDesc->PS = temp & KeWritePDE4K32_PS_1;
pDesc->US = temp & KeWritePDE4K32_US_1;
pDesc->RW = temp & KeWritePDE4K32_RW_1;
pDesc->PWT = temp & KeWritePDE4K32_PWT_1;
return;
}
2014-06-03 07:05:45 +00:00
VOID HYPKERNELAPI KeGetPTEInfo(PKePTE4KDescriptor32 pDesc,ULONG32 Virtual_Address)
2014-05-30 08:55:32 +00:00
{
ULONG32 temp = *(PULONG32)Virtual_Address;
pDesc->Address = (temp>>12)<<12;
pDesc->P = temp & KeWritePTE4K32_P_1;
pDesc->D = temp & KeWritePTE4K32_D_1;
pDesc->US = temp & KeWritePTE4K32_US_1;
pDesc->PCD = temp & KeWritePTE4K32_PCD_1;
pDesc->PWT = temp & KeWritePTE4K32_PWT_1;
pDesc->PS = temp & KeWritePTE4K32_PS_1;
pDesc->RW = temp & KeWritePTE4K32_RW_1;
pDesc->G = temp & KeWritePTE4K32_G_1;
return;
}
2014-06-03 07:05:45 +00:00
VOID HYPKERNELAPI KeWritePTE4K32(PKePTE4KDescriptor32 Desc,PVOID Dst )
2014-05-30 08:55:32 +00:00
{
ULONG32 temp = 0;
temp = Desc->Address;
temp = (temp & 0xfffff000);
temp += Desc->P;
temp += Desc->RW;
temp += Desc->US;
temp += Desc->PWT;
temp += Desc->PCD;
temp += Desc->A;
temp += Desc->D;
temp += Desc->PS;
temp += Desc->G;
*(PULONG32)Dst = temp;
}
2014-06-03 07:05:45 +00:00
ULONG32 HYPKERNELAPI KeGetPDEIndex4K32(ULONG32 Virtual_Address)
2014-05-30 08:55:32 +00:00
{
return Virtual_Address >> 22;
}
2014-06-03 07:05:45 +00:00
ULONG32 HYPKERNELAPI KeGetPTEIndex4K32(ULONG32 Virtual_Address)
2014-05-30 08:55:32 +00:00
{
return (Virtual_Address << 10) >> 22;
}
2014-06-03 07:05:45 +00:00
ULONG32 HYPKERNELAPI MmMapVirtualAddress(PIAPDE32 PDE_Ptr, ULONG32 PhysicalAddress, ULONG32 VirtualAddress, PKePTE4KDescriptor32 PTEDesc)
2014-05-30 08:55:32 +00:00
{
2014-06-03 07:05:45 +00:00
ULONG32 PDEIndex = KeGetPDEIndex4K32(VirtualAddress);
ULONG32 PTEIndex = KeGetPDEIndex4K32(VirtualAddress);
ULONG32 PTEBase = (*(PULONG32)((ULONG32)PDE_Ptr + PDEIndex * 4) >> 12) << 12; // PTE Address
2014-05-30 08:55:32 +00:00
PVOID Target = (PVOID)((*(PULONG32)(PTEBase + PTEIndex * 4) >> 12) << 12);
2014-06-13 05:56:33 +00:00
//this is test
2014-05-30 08:55:32 +00:00
return 0;
}