NtVdmControl

Тема в разделе "WASM.NT.KERNEL", создана пользователем RaZzZaR, 3 авг 2008.

  1. RaZzZaR

    RaZzZaR New Member

    Публикаций:
    0
    Регистрация:
    26 янв 2008
    Сообщения:
    4
    Очень заинтересовала меня данная функция :)
    Поиски в интернете ничего не дали. Нашел только прототип, и то что она контролирует Virtual Dos Machine. Также знаю что с ее помощью можна получить список файлов в директории.
    Интересует что еще умеет эта функция, а также какие входные данные для этого нужны. Может кто знает?
     
  2. CrystalIC

    CrystalIC New Member

    Публикаций:
    0
    Регистрация:
    26 июл 2008
    Сообщения:
    500
    И чё на руткитах сказали ?
     
  3. RaZzZaR

    RaZzZaR New Member

    Публикаций:
    0
    Регистрация:
    26 янв 2008
    Сообщения:
    4
    Если ты имеешь в виду дубликат темы на rootkits.ru, то в той теме ответа не последовало. А так как тут публика побольше - то решил спросить здесь.
     
  4. CrystalIC

    CrystalIC New Member

    Публикаций:
    0
    Регистрация:
    26 июл 2008
    Сообщения:
    500
    Ща глянем в сорсах.
     
  5. CrystalIC

    CrystalIC New Member

    Публикаций:
    0
    Регистрация:
    26 июл 2008
    Сообщения:
    500
    Код (Text):
    1. /*++
    2.  
    3. Copyright (c) Microsoft Corporation. All rights reserved.
    4.  
    5. You may only use this code if you agree to the terms of the Windows Research Kernel Source Code License agreement (see License.txt).
    6. If you do not agree to the terms, do not use the code.
    7.  
    8.  
    9. Module Name:
    10.  
    11.     vdm.h
    12.  
    13. Abstract:
    14.  
    15.     This include file defines the usermode visible portions of the vdm support
    16.  
    17. --*/
    18.  
    19. /* XLATOFF */
    20.  
    21. #ifndef _VDM_H_
    22. #define _VDM_H_
    23.  
    24. typedef enum _VdmServiceClass {
    25.     VdmStartExecution,         // is also defined in ntos\ke\i386\biosa.asm
    26.     VdmQueueInterrupt,
    27.     VdmDelayInterrupt,
    28.     VdmInitialize,
    29.     VdmFeatures,
    30.     VdmSetInt21Handler,
    31.     VdmQueryDir,
    32.     VdmPrinterDirectIoOpen,
    33.     VdmPrinterDirectIoClose,
    34.     VdmPrinterInitialize,
    35.     VdmSetLdtEntries,
    36.     VdmSetProcessLdtInfo,
    37.     VdmAdlibEmulation,
    38.     VdmPMCliControl,
    39.     VdmQueryVdmProcess
    40. } VDMSERVICECLASS, *PVDMSERVICECLASS;
    41.  
    42. #if defined(_NTDEF_)
    43.  
    44. NTSYSCALLAPI
    45. NTSTATUS
    46. NtVdmControl (
    47.     __in VDMSERVICECLASS Service,
    48.     __inout PVOID ServiceData
    49.     );
    50.  
    51. typedef struct _VdmQueryDirInfo {
    52.     HANDLE FileHandle;
    53.     PVOID FileInformation;
    54.     ULONG Length;
    55.     PUNICODE_STRING FileName;
    56.     ULONG FileIndex;
    57. } VDMQUERYDIRINFO, *PVDMQUERYDIRINFO;
    58.  
    59. //
    60. // Definitions for VdmQueryVdmProcessData
    61. //
    62.  
    63. typedef struct _VDM_QUERY_VDM_PROCESS_DATA {
    64.         HANDLE          ProcessHandle;
    65.         BOOLEAN         IsVdmProcess;
    66. }VDM_QUERY_VDM_PROCESS_DATA, *PVDM_QUERY_VDM_PROCESS_DATA;
    67.  
    68. #endif
    69.  
    70.  
    71. /*
    72.  *  The Vdm Virtual Ica
    73.  *  note: this structure definition is duplicated in
    74.  *        mvdm\softpc\base\inc\ica.c. KEEP IN SYNC
    75.  *
    76.  */
    77. typedef struct _VdmVirtualIca{
    78.         LONG      ica_count[8]; /* Count of Irq pending not in irr      */
    79.         LONG      ica_int_line; /* Current pending interrupt            */
    80.         LONG      ica_cpu_int;  /* The state of the INT line to the CPU */
    81.         USHORT    ica_base;     /* Interrupt base address for cpu       */
    82.         USHORT    ica_hipri;    /* Line no. of highest priority line    */
    83.         USHORT    ica_mode;     /* Various single-bit modes             */
    84.         UCHAR     ica_master;   /* 1 = Master; 0 = Slave                */
    85.         UCHAR     ica_irr;      /* Interrupt Request Register           */
    86.         UCHAR     ica_isr;      /* In Service Register                  */
    87.         UCHAR     ica_imr;      /* Interrupt Mask Register              */
    88.         UCHAR     ica_ssr;      /* Slave Select Register                */
    89. } VDMVIRTUALICA, *PVDMVIRTUALICA;
    90.  
    91.  
    92. //
    93. // copied from softpc\base\system\ica.c
    94. //
    95. #define ICA_AEOI 0x0020
    96. #define ICA_SMM  0x0200
    97. #define ICA_SFNM 0x0100
    98.  
    99.  
    100. #if defined(i386)
    101. #define VDM_PM_IRETBOPSEG  0x147
    102. #define VDM_PM_IRETBOPOFF  0x6
    103. #define VDM_PM_IRETBOPSIZE 8
    104. #else
    105. #define VDM_PM_IRETBOPSEG  0xd3
    106. #define VDM_PM_IRETBOPOFF  0x0
    107. #define VDM_PM_IRETBOPSIZE 4
    108. #endif
    109.  
    110. #define VDM_RM_IRETBOPSIZE 4
    111.  
    112.  
    113.  
    114. // VDM state which was earlier in vdmtib->flags has been moved to
    115. // dos arena at following fixed address.
    116. #ifdef _VDMNTOS_
    117.  
    118. #define  FIXED_NTVDMSTATE_LINEAR    VdmFixedStateLinear
    119. #define  FIXED_NTVDMSTATE_SIZE      4
    120.  
    121. #else  // _VDMNTOS_
    122.  
    123. /* XLATON */
    124. #define  FIXED_NTVDMSTATE_SEGMENT   0x70
    125.  
    126. #define  FIXED_NTVDMSTATE_OFFSET    0x14
    127. #define  FIXED_NTVDMSTATE_LINEAR    ((FIXED_NTVDMSTATE_SEGMENT << 4) + FIXED_NTVDMSTATE_OFFSET)
    128. #define  FIXED_NTVDMSTATE_SIZE      4
    129. /* XLATOFF */
    130.  
    131. #endif // _VDMNTOS_
    132.  
    133. #if defined (i386)
    134.   // defined on x86 only since on mips we must reference thru sas
    135. #define  pNtVDMState                ((PULONG)FIXED_NTVDMSTATE_LINEAR)
    136. #endif
    137.  
    138. /* XLATON */
    139. //
    140. // Vdm State Flags
    141. //
    142. #define VDM_INT_HARDWARE        0x00000001
    143. #define VDM_INT_TIMER           0x00000002
    144. // defined as VDM_INTS_HOOKED_IN_PM in mvdm\inc\vint.h
    145. #define VDM_INT_HOOK_IN_PM      0x00000004
    146.  
    147.    // A bitMask which includes all interrupts
    148. #define VDM_INTERRUPT_PENDING   (VDM_INT_HARDWARE | VDM_INT_TIMER)
    149.  
    150. #define VDM_BREAK_EXCEPTIONS    0x00000008
    151. #define VDM_BREAK_DEBUGGER      0x00000010
    152. #define VDM_PROFILE             0x00000020
    153. #define VDM_ANALYZE_PROFILE     0x00000040
    154. #define VDM_TRACE_HISTORY       0x00000080
    155.  
    156. #define VDM_32BIT_APP           0x00000100
    157. #define VDM_VIRTUAL_INTERRUPTS  0x00000200
    158. #define VDM_ON_MIPS             0x00000400
    159. #define VDM_EXEC                0x00000800
    160. #define VDM_RM                  0x00001000
    161. #define VDM_USE_DBG_VDMEVENT    0x00004000
    162.  
    163. #define VDM_WOWBLOCKED          0x00100000
    164. #define VDM_IDLEACTIVITY        0x00200000
    165. #define VDM_TIMECHANGE          0x00400000
    166. #define VDM_WOWHUNGAPP          0x00800000
    167.  
    168. #define VDM_HANDSHAKE           0x01000000
    169.  
    170. #define VDM_PE_MASK             0x80000000
    171.  
    172. /* XLATOFF */
    173.  
    174. #if DBG
    175. #define INITIAL_VDM_TIB_FLAGS (VDM_USE_DBG_VDMEVENT | VDM_BREAK_DEBUGGER | VDM_TRACE_HISTORY)
    176. #else
    177. #define INITIAL_VDM_TIB_FLAGS (VDM_USE_DBG_VDMEVENT | VDM_BREAK_DEBUGGER)
    178. #endif
    179.  
    180.  
    181. //
    182. // bits defined in Eflags
    183. //
    184. #define EFLAGS_TF_MASK  0x00000100
    185. #define EFLAGS_IF_MASK  0x00000200
    186. #define EFLAGS_PL_MASK  0x00003000
    187. #define EFLAGS_NT_MASK  0x00004000
    188. #define EFLAGS_RF_MASK  0x00010000
    189. #define EFLAGS_VM_MASK  0x00020000
    190. #define EFLAGS_AC_MASK  0x00040000
    191.  
    192. //
    193. // If the size of the structure is changed, ke\i386\instemul.asm must
    194. // be modified too.  If not, it will fail to build
    195. //
    196. #pragma pack(1)
    197. typedef struct _Vdm_InterruptHandler {
    198.     USHORT  CsSelector;
    199.     USHORT  Flags;
    200.     ULONG   Eip;
    201. } VDM_INTERRUPTHANDLER, *PVDM_INTERRUPTHANDLER;
    202. #pragma pack()
    203.  
    204. typedef struct _Vdm_FaultHandler {
    205.     USHORT  CsSelector;
    206.     USHORT  SsSelector;
    207.     ULONG   Eip;
    208.     ULONG   Esp;
    209.     ULONG   Flags;
    210. } VDM_FAULTHANDLER, *PVDM_FAULTHANDLER;
    211.  
    212. #pragma pack(1)
    213. typedef struct _VdmDpmiInfo {        /* VDMTIB */
    214.     USHORT LockCount;
    215.     USHORT Flags;
    216.     USHORT SsSelector;
    217.     USHORT SaveSsSelector;
    218.     ULONG  SaveEsp;
    219.     ULONG  SaveEip;
    220.     ULONG  DosxIntIret;
    221.     ULONG  DosxIntIretD;
    222.     ULONG  DosxFaultIret;
    223.     ULONG  DosxFaultIretD;
    224.     ULONG  DosxRmReflector;
    225. } VDM_DPMIINFO, *PVDM_DPMIINFO;
    226. #pragma pack()
    227.  
    228. //
    229. // Interrupt handler flags
    230. //
    231.  
    232. #define VDM_INT_INT_GATE        0x00000001
    233. #define VDM_INT_TRAP_GATE       0x00000000
    234. #define VDM_INT_32              0x00000002
    235. #define VDM_INT_16              0x00000000
    236. #define VDM_INT_HOOKED          0x00000004
    237.  
    238. #pragma pack(1)
    239. //
    240. // CAVEAT: This structure was designed to be exactly 64 bytes in size.
    241. // There is code that assumes that an array of these structures
    242. // will fit neatly into a 4096 byte page.
    243. //
    244. typedef struct _VdmTraceEntry {
    245.     USHORT Type;
    246.     USHORT wData;
    247.     ULONG lData;
    248.     ULONG Time;
    249.     ULONG eax;
    250.     ULONG ebx;
    251.     ULONG ecx;
    252.     ULONG edx;
    253.     ULONG esi;
    254.     ULONG edi;
    255.     ULONG ebp;
    256.     ULONG esp;
    257.     ULONG eip;
    258.     ULONG eflags;
    259.     USHORT cs;
    260.     USHORT ds;
    261.     USHORT es;
    262.     USHORT fs;
    263.     USHORT gs;
    264.     USHORT ss;
    265. } VDM_TRACEENTRY, *PVDM_TRACEENTRY;
    266. #pragma pack()
    267.  
    268. #pragma pack(1)
    269. typedef struct _VdmTraceInfo {
    270.     PVDM_TRACEENTRY pTraceTable;
    271.     UCHAR Flags;
    272.     UCHAR NumPages;             // size of trace buffer in 4k pages
    273.     USHORT CurrentEntry;
    274.     LARGE_INTEGER TimeStamp;
    275. } VDM_TRACEINFO, *PVDM_TRACEINFO;
    276. #pragma pack()
    277.  
    278. //
    279. // Definitions for flags in VDM_TRACEINFO
    280. //
    281.  
    282. #define VDMTI_TIMER_MODE    3
    283. #define VDMTI_TIMER_TICK    1
    284. #define VDMTI_TIMER_PERFCTR 2
    285. #define VDMTI_TIMER_STAT    3
    286. #define VDMTI_TIMER_PENTIUM 3
    287.  
    288. //
    289. // Kernel trace entry types
    290. //
    291. #define VDMTR_KERNEL_OP_PM  1
    292. #define VDMTR_KERNEL_OP_V86 2
    293. #define VDMTR_KERNEL_HW_INT 3
    294.  
    295.  
    296. #if defined(i386)
    297.  
    298. typedef struct _VdmIcaUserData {
    299.     PVOID                  pIcaLock;       // rtl critical section
    300.     PVDMVIRTUALICA         pIcaMaster;
    301.     PVDMVIRTUALICA         pIcaSlave;
    302.     PULONG                 pDelayIrq;
    303.     PULONG                 pUndelayIrq;
    304.     PULONG                 pDelayIret;
    305.     PULONG                 pIretHooked;
    306.     PULONG                 pAddrIretBopTable;
    307.     PHANDLE                phWowIdleEvent;
    308.     PLARGE_INTEGER         pIcaTimeout;
    309.     PHANDLE                phMainThreadSuspended;
    310. }VDMICAUSERDATA, *PVDMICAUSERDATA;
    311.  
    312. typedef struct _VdmDelayIntsServiceData {
    313.         ULONG       Delay;          /* Delay Time in usecs              */
    314.         ULONG       DelayIrqLine;   /* IRQ Number of ints delayed       */
    315.         HANDLE      hThread;        /* Thread Handle of CurrentMonitorTeb */
    316. }VDMDELAYINTSDATA, *PVDMDELAYINTSDATA;
    317.  
    318. typedef struct _VDMSET_INT21_HANDLER_DATA {
    319.         ULONG       Selector;
    320.         ULONG       Offset;
    321.         BOOLEAN     Gate32;
    322. }VDMSET_INT21_HANDLER_DATA, *PVDMSET_INT21_HANDLER_DATA;
    323.  
    324. typedef struct _VDMSET_LDT_ENTRIES_DATA {
    325.         ULONG Selector0;
    326.         ULONG Entry0Low;
    327.         ULONG Entry0Hi;
    328.         ULONG Selector1;
    329.         ULONG Entry1Low;
    330.         ULONG Entry1Hi;
    331. }VDMSET_LDT_ENTRIES_DATA, *PVDMSET_LDT_ENTRIES_DATA;
    332.  
    333. typedef struct _VDMSET_PROCESS_LDT_INFO_DATA {
    334.         PVOID LdtInformation;
    335.         ULONG LdtInformationLength;
    336. }VDMSET_PROCESS_LDT_INFO_DATA, *PVDMSET_PROCESS_LDT_INFO_DATA;
    337.  
    338. //
    339. // Define the action code of VDM_ADLIB_DATA
    340. //
    341.  
    342. #define ADLIB_USER_EMULATION     0      // default action
    343. #define ADLIB_DIRECT_IO          1
    344. #define ADLIB_KERNEL_EMULATION   2
    345.  
    346. typedef struct _VDM_ADLIB_DATA {
    347.         USHORT VirtualPortStart;
    348.         USHORT VirtualPortEnd;
    349.         USHORT PhysicalPortStart;
    350.         USHORT PhysicalPortEnd;
    351.         USHORT Action;
    352. }VDM_ADLIB_DATA, *PVDM_ADLIB_DATA;
    353.  
    354. //
    355. // Definitions for Protected Mode DOS apps cli control
    356. //
    357.  
    358. #define PM_CLI_CONTROL_DISABLE  0
    359. #define PM_CLI_CONTROL_ENABLE   1
    360. #define PM_CLI_CONTROL_CHECK    2
    361. #define PM_CLI_CONTROL_SET      3
    362. #define PM_CLI_CONTROL_CLEAR    4
    363.  
    364. typedef struct _VDM_PM_CLI_DATA {
    365.         ULONG Control;
    366. }VDM_PM_CLI_DATA, *PVDM_PM_CLI_DATA;
    367.  
    368. //
    369. // Definitions for VdmInitialize
    370. //
    371.  
    372. typedef struct _VDM_INITIALIZE_DATA {
    373.         PVOID           TrapcHandler;
    374.         PVDMICAUSERDATA IcaUserData;
    375. }VDM_INITIALIZE_DATA, *PVDM_INITIALIZE_DATA;
    376.  
    377. #if defined (_NTDEF_)
    378. typedef enum _VdmEventClass {
    379.     VdmIO,
    380.     VdmStringIO,
    381.     VdmMemAccess,
    382.     VdmIntAck,
    383.     VdmBop,
    384.     VdmError,
    385.     VdmIrq13,
    386.     VdmHandShakeAck,
    387.     VdmMaxEvent
    388. } VDMEVENTCLASS, *PVDMEVENTCLASS;
    389.  
    390. // VdmPrinterInfo
    391.  
    392. #define VDM_NUMBER_OF_LPT       3
    393.  
    394. #define PRT_MODE_NO_SIMULATION  1
    395. #define PRT_MODE_SIMULATE_STATUS_PORT   2
    396. #define PRT_MODE_DIRECT_IO      3
    397. #define PRT_MODE_VDD_CONNECTED  4
    398.  
    399. #define PRT_DATA_BUFFER_SIZE    16
    400.  
    401. typedef struct _Vdm_Printer_Info {
    402.     PUCHAR prt_State;
    403.     PUCHAR prt_Control;
    404.     PUCHAR prt_Status;
    405.     PUCHAR prt_HostState;
    406.     USHORT prt_PortAddr[VDM_NUMBER_OF_LPT];
    407.     HANDLE prt_Handle[VDM_NUMBER_OF_LPT];
    408.     UCHAR  prt_Mode[VDM_NUMBER_OF_LPT];
    409.     USHORT prt_BytesInBuffer[VDM_NUMBER_OF_LPT];
    410.     UCHAR  prt_Buffer[VDM_NUMBER_OF_LPT][PRT_DATA_BUFFER_SIZE];
    411.     ULONG  prt_Scratch;
    412. } VDM_PRINTER_INFO, *PVDM_PRINTER_INFO;
    413.  
    414.  
    415. typedef struct _VdmIoInfo {
    416.     USHORT PortNumber;
    417.     USHORT Size;
    418.     BOOLEAN Read;
    419. } VDMIOINFO, *PVDMIOINFO;
    420.  
    421. typedef struct _VdmFaultInfo{
    422.     ULONG  FaultAddr;
    423.     ULONG  RWMode;
    424. } VDMFAULTINFO, *PVDMFAULTINFO;
    425.  
    426.  
    427. typedef struct _VdmStringIoInfo {
    428.     USHORT PortNumber;
    429.     USHORT Size;
    430.     BOOLEAN Rep;
    431.     BOOLEAN Read;
    432.     ULONG Count;
    433.     ULONG Address;
    434. } VDMSTRINGIOINFO, *PVDMSTRINGIOINFO;
    435.  
    436. typedef ULONG VDMBOPINFO;
    437. typedef NTSTATUS VDMERRORINFO;
    438.  
    439.  
    440. typedef ULONG VDMINTACKINFO;
    441. #define VDMINTACK_RAEOIMASK  0x0000ffff
    442. #define VDMINTACK_SLAVE      0x00010000
    443. #define VDMINTACK_AEOI       0x00020000
    444.  
    445. // Family table definition for Dynamic Patch Module support
    446. typedef struct _tagFAMILY_TABLE {
    447.     int      numHookedAPIs;           // number of hooked API's in this family
    448.     PVOID    hModShimEng;             // hMod of shim engine
    449.     PVOID    hMod;                    // hMod of associated loaded dll.
    450.     PVOID   *DpmMisc;                 // ptr to DPM Module specific data
    451.     PVOID   *pDpmShmTbls;             // array of ptrs to API family shim tables
    452.     PVOID   *pfn;                     // array of ptrs to hook functions
    453. } FAMILY_TABLE, *PFAMILY_TABLE;
    454.  
    455. typedef struct _VdmEventInfo {
    456.     ULONG Size;
    457.     VDMEVENTCLASS Event;
    458.     ULONG InstructionSize;
    459.     union {
    460.         VDMIOINFO IoInfo;
    461.         VDMSTRINGIOINFO StringIoInfo;
    462.         VDMBOPINFO BopNumber;
    463.         VDMFAULTINFO FaultInfo;
    464.         VDMERRORINFO ErrorStatus;
    465.         VDMINTACKINFO IntAckInfo;
    466.     };
    467. } VDMEVENTINFO, *PVDMEVENTINFO;
    468.  
    469.  
    470. // Scratch areas are used from VDMTib to get user space while
    471. // in kernel. This allows us to make Nt APIs (faster) from kernel
    472. // rather than Zw apis (slower). These are currently being used
    473. // for DOS read/write.
    474.  
    475. typedef struct _Vdm_Tib {
    476.     ULONG Size;
    477.     PVDM_INTERRUPTHANDLER VdmInterruptTable;
    478.     PVDM_FAULTHANDLER VdmFaultTable;
    479.     CONTEXT MonitorContext;
    480.     CONTEXT VdmContext;
    481.     VDMEVENTINFO EventInfo;
    482.     VDM_PRINTER_INFO PrinterInfo;
    483.     ULONG TempArea1[2];                 // Scratch area
    484.     ULONG TempArea2[2];                 // Scratch area
    485.     VDM_DPMIINFO DpmiInfo;
    486.     VDM_TRACEINFO TraceInfo;
    487.     ULONG IntelMSW;
    488.     LONG NumTasks;
    489.     PFAMILY_TABLE *pDpmFamTbls;  // array of ptrs to API family tables
    490.     BOOLEAN ContinueExecution;
    491. } VDM_TIB, *PVDM_TIB;
    492.  
    493. //
    494. // Feature flags returned by NtVdmControl(VdmFeatures...)
    495. //
    496.  
    497. // System/processor supports fast emulation for IF instructions
    498. #define V86_VIRTUAL_INT_EXTENSIONS 0x00000001   // in v86 mode
    499. #define PM_VIRTUAL_INT_EXTENSIONS  0x00000002   // in protected mode (non-flat)
    500.  
    501. #endif   // if defined _NTDEF_
    502. #endif
    503. #endif
    В сорсах 2000 влом искать.
     
  6. RaZzZaR

    RaZzZaR New Member

    Публикаций:
    0
    Регистрация:
    26 янв 2008
    Сообщения:
    4
    Это уже что-то. Спасибо :)
     
  7. x64

    x64 New Member

    Публикаций:
    0
    Регистрация:
    29 июл 2008
    Сообщения:
    1.370
    Адрес:
    Россия
    Из исходников Windows 2000. См. аттач.
     
  8. RaZzZaR

    RaZzZaR New Member

    Публикаций:
    0
    Регистрация:
    26 янв 2008
    Сообщения:
    4
    То что надо. Спасибо всем за внимание :)