forked from cheat-engine/cheat-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.c
908 lines (641 loc) · 20.7 KB
/
test.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
/*
* test.c
*
* Created on: May 22, 2011
* Author: erich
*/
#include "common.h"
#include "main.h"
#include "mm.h"
#include "msrnames.h"
#include "test.h"
#include "apic.h"
#include "vmcall.h"
int MSR_LASTBRANCH_TOS=0x1C9;
int MSR_LASTBRANCH_0=0x1DB;
int canstoreds=0;
void *DebugStore;
extern int cloakTestFunction(void);
extern void* cloakTestFunctionEnd;
extern void* cloakTestFunctionInstruction;
typedef int(*CLOAKTESTFUNCTION)(void);
int testBranchPrediction(void)
{
QWORD LVT_Perfmon_Counter_Register;
BYTE LVT_Perfmon_Vector;
displayline("testing branch prediction\n");
displayline("cpu_stepping=%d\n",cpu_stepping);
displayline("cpu_model=%d\n",cpu_model);
displayline("cpu_familyID=%d\n",cpu_familyID);
displayline("cpu_type=%d\n",cpu_type);
displayline("cpu_ext_modelID=%d\n",cpu_ext_modelID);
displayline("cpu_ext_familyID=%d\n\n", cpu_ext_familyID);
displayline("IA32_APIC_BASE=%6\n", IA32_APIC_BASE);
LVT_Perfmon_Counter_Register=*(volatile DWORD *)(IA32_APIC_BASE+0x340);
LVT_Perfmon_Vector=LVT_Perfmon_Counter_Register & 0xff;
displayline("[IA32_APIC_BASE+0x340]=%x (perfmon)\n", LVT_Perfmon_Counter_Register);
displayline("[IA32_APIC_BASE+0x350]=%x (Lint0)\n", *(DWORD *)(IA32_APIC_BASE+0x350));
displayline("[IA32_APIC_BASE+0x360]=%x (Lint1)\n", *(DWORD *)(IA32_APIC_BASE+0x360));
displayline("perfmon interrupt vector was %d ", LVT_Perfmon_Vector);
if (LVT_Perfmon_Counter_Register & (1<<16) )
displayline("and it was masked\n");
else
displayline("and it was unmasked\n");
LVT_Perfmon_Counter_Register=0xfe;
LVT_Perfmon_Vector=LVT_Perfmon_Counter_Register & 0xff;
*(DWORD *)(IA32_APIC_BASE+0x340)=LVT_Perfmon_Counter_Register;
displayline("[IA32_APIC_BASE+0x340]=%x (perfmon)\n", LVT_Perfmon_Counter_Register);
displayline("perfmon interrupt vector is now %d ", LVT_Perfmon_Vector);
if (LVT_Perfmon_Counter_Register & (1<<16) )
displayline("and it is masked\n");
else
displayline("and it is unmasked\n");
displayline("IA32_DEBUGCTL_MSR=%6\n", readMSR(IA32_DEBUGCTL_MSR));
{
QWORD rax,rbx,rcx,rdx;
rax=1;
_cpuid(&rax, &rbx, &rcx, &rdx);
displayline("cpuid 1: rax=%8 rcx=%8 rdx=%8\n", rax, rcx, rdx);
if (rdx & (1 << 21))
displayline("This cpu supports storing of branch messages\n");
else
displayline("This cpu DOES NOT support storing of branch messages\n");
canstoreds=rcx & (1<<4);
if (canstoreds)
{
displayline("This cpu supports a cpl qualified ds store\n");
}
else
{
displayline("This cpu DOES NOT support a cpl qualified ds store\n");
}
displayline("Making sure LBR is enabled");
writeMSR(IA32_DEBUGCTL_MSR, readMSR(IA32_DEBUGCTL_MSR) | (1 << 0));
//displayline("Setting bts_off_os");
//writeMSR(IA32_DEBUGCTL_MSR, readMSR(IA32_DEBUGCTL_MSR) | (1 << 9));
//displayline("setting bts");
// writeMSR(IA32_DEBUGCTL_MSR, readMSR(IA32_DEBUGCTL_MSR) | (1 << 7));
//displayline("setting BTF");
// writeMSR(IA32_DEBUGCTL_MSR, readMSR(IA32_DEBUGCTL_MSR) | (1 << 1));
if (cpu_familyID==0x06)
{
int maxindex=0;
int i, count;
MSR_LASTBRANCH_TOS=0x1c9;
MSR_LASTBRANCH_0=0x40;
switch (cpu_model)
{
case 0x2a:
case 0x1a:
case 0x1e:
case 0x1f:
case 0x2e:
case 0x25:
case 0x2c:
maxindex=16;
break;
case 0x17:
case 0x1d:
case 0x0f:
maxindex=4;
break;
case 0x1c:
maxindex=8;
break;
}
displayline("testing. turning lbr off\n");
writeMSR(IA32_DEBUGCTL_MSR, 0);
displayline("TOS=%d\n", readMSR(MSR_LASTBRANCH_TOS));
displayline("Max index=%d\n", maxindex);
displayline("\n");
i=readMSR(MSR_LASTBRANCH_TOS);
count=0;
while (count<maxindex)
{
QWORD x;
x=readMSR(MSR_LASTBRANCH_0+i);
displayline("MSR_LASTBRANCH_%d=%x", i, x);
displayline(" ( %x %x )", (DWORD)(x & 0xffffffff) , (DWORD)(x >> 32) );
displayline("\n");
count++;
i++;
i=i % maxindex;
}
}
displayline("Setting up branch recording to memory\n");
{
QWORD misc_enable=readMSR(IA32_MISC_ENABLE);
if (misc_enable & (1 << 11))
{
displayline("Branch trace storage unavailable\n");
return 0;
}
else
displayline("Branch trace storage is available\n");
displayline("The original IA32_DS_AREA=%x\n", readMSR(IA32_DS_AREA));
DebugStore=malloc(4096);
if (DebugStore)
{
PDS_AREA_MANAGEMENT64 DebugStore64;
zeromemory(DebugStore, 4096);
displayline("sizeof(BTS64)=%d\n", sizeof(BTS64));
//now configure it
DebugStore64=(PDS_AREA_MANAGEMENT64)DebugStore;
DebugStore64->BTS_BufferBaseAddress=(QWORD)DebugStore64+sizeof(DS_AREA_MANAGEMENT64);
DebugStore64->BTS_BufferBaseAddress+=sizeof(BTS64);
DebugStore64->BTS_BufferBaseAddress-=DebugStore64->BTS_BufferBaseAddress % sizeof(BTS64);
DebugStore64->BTS_IndexBaseAddress=DebugStore64->BTS_BufferBaseAddress;
DebugStore64->BTS_AbsoluteMaxAddress=(QWORD)DebugStore64+4096-sizeof(BTS64);
DebugStore64->BTS_AbsoluteMaxAddress-=DebugStore64->BTS_AbsoluteMaxAddress % sizeof(BTS64);
DebugStore64->BTS_AbsoluteMaxAddress++;
DebugStore64->BTS_InterruptThresholdAddress=(DebugStore64->BTS_AbsoluteMaxAddress-1) - 3*sizeof(BTS64);
displayline("DebugStore64=%p\n", DebugStore64);
displayline("DebugStore64->BTS_BufferBaseAddress=%x\n", DebugStore64->BTS_BufferBaseAddress);
displayline("DebugStore64->BTS_IndexBaseAddress=%x\n", DebugStore64->BTS_IndexBaseAddress);
displayline("DebugStore64->BTS_AbsoluteMaxAddress=%x\n", DebugStore64->BTS_AbsoluteMaxAddress);
displayline("DebugStore64->BTS_InterruptThresholdAddress=%x\n", DebugStore64->BTS_InterruptThresholdAddress);
writeMSR(IA32_DS_AREA, (QWORD)DebugStore);
displayline("The new IA32_DS_AREA=%x\n", readMSR(IA32_DS_AREA));
}
else
displayline("Someone has fucked up the memory allocator\n");
}
writeMSR(IA32_DEBUGCTL_MSR, readMSR(IA32_DEBUGCTL_MSR) | 1 );
writeMSR(IA32_DEBUGCTL_MSR, readMSR(IA32_DEBUGCTL_MSR) | (1<<7) );
writeMSR(IA32_DEBUGCTL_MSR, readMSR(IA32_DEBUGCTL_MSR) | (1<<6) ); //start trace
writeMSR(IA32_DEBUGCTL_MSR, readMSR(IA32_DEBUGCTL_MSR) | (1<<8) ); //interrupt when full
displayline("IA32_DEBUGCTL_MSR is now %x", readMSR(IA32_DEBUGCTL_MSR));
testBranch();
}
return 0;
}
int handlePerformanceCounterInterrupt(void)
{
PDS_AREA_MANAGEMENT64 DebugStore64=(PDS_AREA_MANAGEMENT64)DebugStore;
sendstring("This was int 0xfe\n");
sendstringf("IA32_DEBUGCTL_MSR is now %x\n", readMSR(IA32_DEBUGCTL_MSR));
sendstringf("[IA32_APIC_BASE+0x340]=%x (perfmon)\n", *(QWORD *)(IA32_APIC_BASE+0x340));
sendstringf("DebugStore64=%p\n", DebugStore64);
sendstringf("DebugStore64->BTS_BufferBaseAddress=%x\n", DebugStore64->BTS_BufferBaseAddress);
sendstringf("DebugStore64->BTS_IndexBaseAddress=%x\n", DebugStore64->BTS_IndexBaseAddress);
sendstringf("DebugStore64->BTS_AbsoluteMaxAddress=%x\n", DebugStore64->BTS_AbsoluteMaxAddress);
sendstringf("DebugStore64->BTS_InterruptThresholdAddress=%x\n", DebugStore64->BTS_InterruptThresholdAddress);
*(QWORD *)(IA32_APIC_BASE+0x340)=*(QWORD *)(IA32_APIC_BASE+0x340) & (~(1<<16)) ;
sendstringf("[IA32_APIC_BASE+0x340]=%x (perfmon)\n", *(QWORD *)(IA32_APIC_BASE+0x340));
apic_eoi();
DebugStore64->BTS_IndexBaseAddress=DebugStore64->BTS_BufferBaseAddress;
// writeMSR(IA32_DEBUGCTL_MSR, (1<<7) | (1<<0) | (1<<6) | (1<<8));
// sendstringf("IA32_DEBUGCTL_MSR is now %x\n", readMSR(IA32_DEBUGCTL_MSR));
return 1;
}
int getDBVMVersion(void)
{
int result;
VMCALL_BASIC param;
// sendstringf("getDBVMVersion\n");
param.command=VMCALL_GETVERSION;
param.password2=Password2;
param.size=sizeof(param);
result=0;
try
{
result=_vmcall(¶m);
}
except
{
result=0;
}
tryend
return result;
}
int dbvm_watch_writes(QWORD PhysicalAddress, int *ID)
{
int result;
VMCALL_WATCH_PARAM param;
param.vmcall.command=VMCALL_WATCH_WRITES;
param.vmcall.password2=Password2;
param.vmcall.size=sizeof(param);
param.PhysicalAddress=PhysicalAddress;
param.Size=4;
param.Options=0;
param.MaxEntryCount=16;
param.ID=*ID;
try
{
result=_vmcall(¶m);
*ID=param.ID;
}
except
{
result=-1;
}
tryend
return result;
}
int dbvm_watch_reads(QWORD PhysicalAddress, int *ID)
{
int result;
VMCALL_WATCH_PARAM param;
param.vmcall.command=VMCALL_WATCH_READS;
param.vmcall.password2=Password2;
param.vmcall.size=sizeof(param);
param.PhysicalAddress=PhysicalAddress;
param.Size=4;
param.Options=0;
param.MaxEntryCount=16;
param.ID=*ID;
try
{
result=_vmcall(¶m);
*ID=param.ID;
}
except
{
result=-1;
}
tryend
return result;
}
int dbvm_watch_executes(QWORD PhysicalAddress, int *ID)
{
int result;
VMCALL_WATCH_PARAM param;
param.vmcall.command=VMCALL_WATCH_EXECUTES;
param.vmcall.password2=Password2;
param.vmcall.size=sizeof(param);
param.PhysicalAddress=PhysicalAddress;
param.Size=4;
param.Options=0;
param.MaxEntryCount=16;
param.ID=*ID;
try
{
result=_vmcall(¶m);
*ID=param.ID;
}
except
{
result=-1;
}
tryend
return result;
}
int dbvm_watch_retrievelog(int watchid, void* result, int *size)
{
int r;
VMCALL_WATCH_RETRIEVELOG_PARAM param;
param.vmcall.command=VMCALL_WATCH_RETRIEVELOG;
param.vmcall.password2=Password2;
param.vmcall.size=sizeof(param);
param.ID=watchid;
param.results=(QWORD)result;
param.resultsize=*size;
param.copied=0;
try
{
r=_vmcall(¶m);
*size=param.resultsize;
}
except
{
r=-1;
}
tryend
return r;
}
int dbvm_watch_delete(int id)
{
int r;
VMCALL_WATCH_DISABLE_PARAM param;
param.vmcall.command=VMCALL_WATCH_DELETE;
param.vmcall.password2=Password2;
param.vmcall.size=sizeof(param);
param.ID=id;
try
{
r=_vmcall(¶m);
}
except
{
r=-1;
}
tryend
return r;
}
int dbvm_cloak_activate(QWORD physicalAddress, int mode)
{
VMCALL_CLOAK_ACTIVATE_PARAM param;
param.vmcall.command=VMCALL_CLOAK_ACTIVATE;
param.vmcall.password2=Password2;
param.vmcall.size=sizeof(param);
param.physicalAddress=physicalAddress;
param.mode=mode; //single step
int r;
try
{
r=_vmcall(¶m);
}
except
{
r=-1;
}
tryend
return r;
}
int dbvm_cloak_deactivate(QWORD PhysicalAddress)
{
VMCALL_CLOAK_DEACTIVATE_PARAM param;
param.vmcall.command=VMCALL_CLOAK_DEACTIVATE;
param.vmcall.password2=Password2;
param.vmcall.size=sizeof(param);
param.physicalAddress=PhysicalAddress;
int r;
try
{
r=_vmcall(¶m);
}
except
{
r=-1;
}
tryend
return r;
}
int dbvm_cloak_readExecutable(QWORD PhysicalAddress, void *destination)
{
VMCALL_CLOAK_READ_PARAM param;
param.vmcall.command=VMCALL_CLOAK_READORIGINAL;
param.vmcall.password2=Password2;
param.vmcall.size=sizeof(param);
param.physicalAddress=PhysicalAddress;
param.destination=(QWORD)destination;
int r;
try
{
r=_vmcall(¶m);
}
except
{
r=-1;
}
tryend
return r;
}
int dbvm_cloak_writeExecutable(QWORD PhysicalAddress, void *source)
{
VMCALL_CLOAK_WRITE_PARAM param;
param.vmcall.command=VMCALL_CLOAK_WRITEORIGINAL;
param.vmcall.password2=Password2;
param.vmcall.size=sizeof(param);
param.physicalAddress=PhysicalAddress;
param.source=(QWORD)source;
int r;
try
{
r=_vmcall(¶m);
}
except
{
r=-1;
}
tryend
return r;
}
void testfunction()
{
sendstringf("testfunction\n");
}
void dbvm_changeregonbp_test(void)
{
}
void dbvm_cloak_test(void)
{
int DBVMVersion=getDBVMVersion();
int watchid=-1;
if (DBVMVersion)
{
int r;
int i;
unsigned char *newmem=(unsigned char *)malloc(8192);
CLOAKTESTFUNCTION newtestfunction=(CLOAKTESTFUNCTION)&newmem[4094];
QWORD PA=VirtualToPhysical((void*)newtestfunction)+2;
sendstringf("newtestfunction at %6 (PA : %6)\n", newtestfunction, PA);
QWORD size=(QWORD)&cloakTestFunctionEnd-(QWORD)cloakTestFunction;
sendstringf("size=%d bytes\n", size);
sendstringf("Copying...");
copymem(newtestfunction,cloakTestFunction, size );
sendstringf("Done\n");
sendstringf("Calling original\n");
r=cloakTestFunction();
sendstringf("Returned %d\n", r);
sendstringf("Calling copy\n");
r=newtestfunction();
sendstringf("Returned %d\n", r);
displayline("Unpatched result is %d\n", r);
sendstring("Patching copy\n");
unsigned char *funcindex=(unsigned char *)newtestfunction;
sendstringf("Original:");
for (i=0; i<5; i++)
{
int index=(QWORD)(&cloakTestFunctionInstruction)-((QWORD)(cloakTestFunction))+i;
sendstringf("%2 ",funcindex[index]);
funcindex[index]=0x90;
}
sendstringf("\n");
sendstringf("Calling copy after patch\n");
r=newtestfunction();
sendstringf("Patched result of cloakTestFunction() is %d\n", r);
displayline("Patched result without cloak is %d\n", r);
sendstringf("Undo patch. Now trying with cloak\n");
copymem(newtestfunction,cloakTestFunction, size );
int beforecloak=generateCRC((unsigned char*)newtestfunction, size);
displayline("Before cloak crc was %x\n", beforecloak);
unsigned char *buf=(unsigned char *)newtestfunction;
sendstringf("%6:", newtestfunction);
for (i=0; i<size; i++)
sendstringf("%2 ",buf[i]);
sendstringf("\n");
sendstringf("Activating cloak (mode 1)\n");
r=dbvm_cloak_activate(PA, 1);
displayline("Cloak activated\n");
sendstringf("dbvm_cloak_activate(%6) returned %d\n", PA, r);
_invlpg((QWORD)newtestfunction);
buf=(unsigned char *)newtestfunction;
sendstringf("%6:", newtestfunction);
for (i=0; i<size; i++)
sendstringf("%2 ",buf[i]); //when testing, should be all 0xce's
sendstringf("\n");
int aftercloak=generateCRC((unsigned char*)newtestfunction, size);
displayline("After cloak crc is %x\n", aftercloak);
sendstringf("Calling newtestfunction: (cloaked, unpatched)\n");
r=newtestfunction();
sendstringf("After cloak but no patch ,result of cloakTestFunction() is %d\n", r);
displayline("Cloak active but unpatched, result is %d\n",r);
unsigned char* executable=malloc(4096);
sendstringf("Allocated memory for the executable copy at %6\n", executable);
displayline("1: crc=%x\n", generateCRC((unsigned char*)newtestfunction, size));
r=dbvm_cloak_readExecutable(PA, executable);
displayline("2: crc=%x\n", generateCRC((unsigned char*)newtestfunction, size));
sendstringf("dbvm_cloak_readExecutable returned %d\n",r);
if (r==0)
{
int beforepatch=generateCRC((unsigned char*)newtestfunction, size);
displayline("3: crc=%x\n", generateCRC((unsigned char*)newtestfunction, size));
sendstringf("Applying patch to executable memory\n");
for (i=0; i<5; i++)
executable[(QWORD)(&cloakTestFunctionInstruction)-((QWORD)(cloakTestFunction))+i-2]=0x90;
displayline("4: crc=%x\n", generateCRC((unsigned char*)newtestfunction, size));
r=dbvm_cloak_writeExecutable(PA, executable);
sendstringf("dbvm_cloak_writeExectuable returned %d\n",r);
displayline("5: crc=%x\n", generateCRC((unsigned char*)newtestfunction, size));
int afterpatch=generateCRC((unsigned char*)newtestfunction, size);
displayline("6: crc=%x\n", generateCRC((unsigned char*)newtestfunction, size));
if (r==0)
{
sendstringf("Calling newtestfunction: (cloaked, patched)\n");
r=newtestfunction();
sendstringf("After cloak and patch ,result of cloakTestFunction() is %d\n", r);
displayline("Cloak active and patched, result is %d\n",r);
displayline("7: crc=%x\n", generateCRC((unsigned char*)newtestfunction, size));
}
}
r=dbvm_cloak_deactivate(PA);
displayline("8: crc=%x\n", generateCRC((unsigned char*)newtestfunction, size));
sendstringf("dbvm_cloak_deactivate(%6) returned %d\n", PA, r);
sendstringf("\n");
}
else
sendstring("Error, no DBVM loaded\n");
}
void dbvm_watch_execute_test(void)
{
int DBVMVersion=getDBVMVersion();
int watchid=-1;
if (DBVMVersion)
{
QWORD PA;
void *results=malloc(8192);
zeromemory(results,8192);
writeMSR(EFER_MSR, readMSR(EFER_MSR) & ~(1<<11)); //this is the guest, disable no execute (test)
sendstringf("DBVM version is %x\n", DBVMVersion);
PA=VirtualToPhysical((void *)testfunction);
int r;
r=dbvm_watch_executes(PA,&watchid);
sendstringf("dbvm_watch_read returned %d. ID=%d\n", r,watchid);
sendstringf("Going to execute testfunction\n");
testfunction();
sendstringf("testfunction returned\n");
sendstringf("It should have recorded by now\n");
int size=8192;
int ec=dbvm_watch_retrievelog(watchid, results, &size);
sendstringf("dbvm_watch_retrievelog returned %d. size=%d\n", ec, size);
dbvm_watch_delete(watchid);
free(results);
}
else
sendstring("Error, no DBVM loaded\n");
}
void dbvm_watch_reads_test(void)
{
int DBVMVersion=getDBVMVersion();
volatile int *testvar;
volatile int *testvar2;
int watchid=-1;
if (DBVMVersion)
{
QWORD PA;
void *results=malloc(8192);
zeromemory(results,8192);
sendstringf("DBVM version is %x\n", DBVMVersion);
testvar=(int *)malloc(4096);
testvar2=&testvar[64];
*testvar=123;
*testvar2=456;
PA=VirtualToPhysical((void *)testvar);
int r;
sendstringf("testvar has been allocated at %6 which is PA %6\n", testvar, PA);
r=dbvm_watch_reads(PA,&watchid);
sendstringf("dbvm_watch_read returned %d. ID=%d\n", r,watchid);
sendstringf("Reading from same page as testvar but different location (%6)\n", testvar2);
asm volatile ("": : :"memory");
sendstringf("testvar2=%d\n", *testvar2);
asm volatile ("": : :"memory");
sendstringf("reading testvar\n");
asm volatile ("": : :"memory");
sendstringf("testvar=%d\n", *testvar);
asm volatile ("": : :"memory");
sendstringf("Writing to the same page as testvar but different location (%6)\n", testvar2);
asm volatile ("": : :"memory");
*testvar2=789;
asm volatile ("": : :"memory");
sendstringf("testvar2=%d\n", *testvar2);
asm volatile ("": : :"memory");
sendstringf("Writing to testvar\n");
asm volatile ("": : :"memory");
*testvar=321;
asm volatile ("": : :"memory");
sendstringf("testvar=%d\n", *testvar);
asm volatile ("": : :"memory");
sendstringf("It should have recorded by now\n");
int size=8192;
int ec=dbvm_watch_retrievelog(watchid, results, &size);
sendstringf("dbvm_watch_retrievelog returned %d. size=%d\n", ec, size);
dbvm_watch_delete(watchid);
free(results);
free((void*)testvar);
}
else
sendstring("Error, no DBVM loaded\n");
}
void dbvm_watch_writes_test(void)
{
int DBVMVersion=getDBVMVersion();
volatile int *testvar;
volatile int *testvar2;
int watchid=-1;
if (DBVMVersion)
{
QWORD PA;
void *results=malloc(8192);
zeromemory(results,8192);
sendstringf("DBVM version is %x\n", DBVMVersion);
testvar=(int *)malloc(4096);
testvar2=&testvar[64];
*testvar=123;
*testvar2=456;
PA=VirtualToPhysical((void *)testvar);
int r;
sendstringf("testvar has been allocated at %6 which is PA %6\n", testvar, PA);
r=dbvm_watch_writes(PA,&watchid);
sendstringf("dbvm_watch_writes returned %d. ID=%d\n", r,watchid);
sendstringf("Reading from same page as testvar but different location (%6)\n", testvar2);
asm volatile ("": : :"memory");
sendstringf("testvar2=%d\n", *testvar2);
asm volatile ("": : :"memory");
sendstringf("reading testvar\n");
asm volatile ("": : :"memory");
sendstringf("testvar=%d\n", *testvar);
asm volatile ("": : :"memory");
sendstringf("Writing to the same page as testvar but different location (%6)\n", testvar2);
asm volatile ("": : :"memory");
*testvar2=789;
asm volatile ("": : :"memory");
sendstringf("testvar2=%d\n", *testvar2);
asm volatile ("": : :"memory");
sendstringf("Writing to testvar\n");
asm volatile ("": : :"memory");
*testvar=321;
asm volatile ("": : :"memory");
sendstringf("testvar=%d\n", *testvar);
asm volatile ("": : :"memory");
sendstringf("It should have recorded by now\n");
int size=8192;
int ec=dbvm_watch_retrievelog(watchid, results, &size);
sendstringf("dbvm_watch_retrievelog returned %d. size=%d\n", ec, size);
dbvm_watch_delete(watchid);
free(results);
free((void*)testvar);
}
else
sendstring("Error, no DBVM loaded\n");
}